diff --git a/src/EventGrid/EventGrid.Test/EventGrid.Test.csproj b/src/EventGrid/EventGrid.Test/EventGrid.Test.csproj index 91f0aab30753..0d338044c7bc 100644 --- a/src/EventGrid/EventGrid.Test/EventGrid.Test.csproj +++ b/src/EventGrid/EventGrid.Test/EventGrid.Test.csproj @@ -11,7 +11,7 @@ - + diff --git a/src/EventGrid/EventGrid.Test/ScenarioTests/Common.ps1 b/src/EventGrid/EventGrid.Test/ScenarioTests/Common.ps1 index 1ebac709f34b..a5414a7d28cb 100644 --- a/src/EventGrid/EventGrid.Test/ScenarioTests/Common.ps1 +++ b/src/EventGrid/EventGrid.Test/ScenarioTests/Common.ps1 @@ -105,6 +105,15 @@ function Get-EventSubscriptionWebhookBaseEndpointWithCloudEvent return "https://eventgridclitestapp.azurewebsites.net/api/cloudeventfunc" } +<# +.SYNOPSIS +Get EventSubscription Storage QueueFunction Endpoint +#> +function Get-EventSubscriptionStorageQueueEndpoint +{ + return "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg/queueServices/default/queues/stogqueuedestination" +} + <# .SYNOPSIS Get location @@ -431,3 +440,48 @@ function Get-DomainTopicName { return "PSTestDomainTopic-" + (getAssetName) } + +<# +.SYNOPSIS +Get partner registration name +#> +function Get-PartnerRegistrationName +{ + return "PSTestPartnerRegistration-" + (getAssetName) +} + +<# +.SYNOPSIS +Get partner namespace name +#> +function Get-PartnerNamespaceName +{ + return "PSTestPartnerNamespace-" + (getAssetName) +} + +<# +.SYNOPSIS +Get channel name +#> +function Get-ChannelName +{ + return "PSTestChannel-" + (getAssetName) +} + +<# +.SYNOPSIS +Get partner topic name +#> +function Get-PartnerTopicName +{ + return "PSTestPartnerTopic-" + (getAssetName) +} + +<# +.SYNOPSIS +Get partner topic source +#> +function Get-PartnerTopicSource +{ + return "PSTestPartnerTopicSource" + (getAssetName) +} diff --git a/src/EventGrid/EventGrid.Test/ScenarioTests/PartnerTests.cs b/src/EventGrid/EventGrid.Test/ScenarioTests/PartnerTests.cs new file mode 100644 index 000000000000..7154961676aa --- /dev/null +++ b/src/EventGrid/EventGrid.Test/ScenarioTests/PartnerTests.cs @@ -0,0 +1,34 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Xunit; +using Xunit.Abstractions; + +namespace Microsoft.Azure.Commands.EventGrid.Test.ScenarioTests +{ + public class PartnerTests : EventGridTestRunner + { + public PartnerTests(ITestOutputHelper output) : base(output) + { + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void EventGrid_PartnersCRUD() + { + TestRunner.RunTestScript("PartnerTests"); + } + } +} diff --git a/src/EventGrid/EventGrid.Test/ScenarioTests/PartnerTests.ps1 b/src/EventGrid/EventGrid.Test/ScenarioTests/PartnerTests.ps1 new file mode 100644 index 000000000000..342ecb9fbd1e --- /dev/null +++ b/src/EventGrid/EventGrid.Test/ScenarioTests/PartnerTests.ps1 @@ -0,0 +1,224 @@ +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.SYNOPSIS +Tests EventGrid Topic Create, Get and List operations. +#> +function PartnerTests { + # Setup + $partnerRegistrationName = Get-PartnerRegistrationName + $partnerNamespaceName = Get-PartnerNamespaceName + $channelName = Get-ChannelName + $partnerTopicName = Get-PartnerTopicName + $defaultMaxExpirationTimeInDays = 5 + $updatedMaxExpirationTimeInDays = 15 + + $location = Get-LocationForEventGrid + $eventSubscriptionName = Get-EventSubscriptionName + $eventSubscriptionName2 = Get-EventSubscriptionName + $eventSubscriptionName3 = Get-EventSubscriptionName + $resourceGroupName = Get-ResourceGroupName + $secondResourceGroup = Get-ResourceGroupName + $subscriptionId = Get-SubscriptionId + $source = Get-PartnerTopicSource + + New-ResourceGroup $resourceGroupName $location + + New-ResourceGroup $secondResourceGroup $location + + $eventSubscriptionStorageDestinationResourceId = Get-EventSubscriptionStorageQueueEndpoint + + try + { + Write-Debug "Creating a new EventGrid PartnerRegistration: $partnerRegistrationName in resource group $resourceGroupName" + $result = New-AzEventGridPartnerRegistration -ResourceGroup $resourceGroupName -Name $partnerRegistrationName + Assert-True {$result.ProvisioningState -eq "Succeeded"} + + Write-Debug "Getting the new EventGrid PartnerRegistration: $partnerRegistrationName in $resourceGroupName" + $createdPartnerRegistration = Get-AzEventGridPartnerRegistration -ResourceGroup $resourceGroupName -Name $partnerRegistrationName + Assert-True {$createdPartnerRegistration.Count -eq 1} + Assert-True {$createdPartnerRegistration.PartnerRegistrationName -eq $partnerRegistrationName} "Partner registration created earlier is not found" + + Write-Debug "Getting EventGrid PartnerRegistrations within the subscription" + $allCreatedPartnerRegistrations = Get-AzEventGridPartnerRegistration + $countOfPR = $allCreatedPartnerRegistrations.PsPartnerRegistrationsList.Count + Write-Debug "PsPartnerRegistrationsList count: $countOfPR" + Assert-True {$createdPartnerRegistration.PsPartnerRegistrationsList.Count -ge 0} + + Write-Debug "Getting EventGrid PartnerRegistrations within the resource group" + $allCreatedPartnerRegistrations = Get-AzEventGridPartnerRegistration -ResourceGroup $resourceGroupName + $countOfPR = $allCreatedPartnerRegistrations.PsPartnerRegistrationsList.Count + Write-Debug "PsPartnerRegistrationsList count: $countOfPR" + Assert-True {$createdPartnerRegistration.Count -eq 1} + $partnerRegistrationImmutableId = $createdPartnerRegistration.PartnerRegistrationImmutableId + $partnerRegistrationFullyQualifiedId = $createdPartnerRegistration.Id + + Write-Debug "Creating a new EventGrid PartnerNamespace: $partnerNamespaceName in resource group $resourceGroupName" + $createdPartnerNamespace = New-AzEventGridPartnerNamespace -ResourceGroup $resourceGroupName -Name $partnerNamespaceName -Location $location -PartnerRegistrationFullyQualifiedId $partnerRegistrationFullyQualifiedId -PartnerTopicRoutingMode "ChannelNameHeader" + Assert-True {$createdPartnerNamespace.Count -eq 1} + Assert-True {$createdPartnerNamespace.ProvisioningState -eq "Succeeded"} + + Write-Debug "Getting the new EventGrid PartnerNamespace" + $createdPartnerNamespace = Get-AzEventGridPartnerNamespace -ResourceGroup $resourceGroupName -Name $partnerNamespaceName + Assert-True {$createdPartnerNamespace.Count -eq 1} + Assert-True {$createdPartnerNamespace.PartnerNamespaceName -eq $partnerNamespaceName} "Partner namespace created earlier is not found" + + Write-Debug "Getting EventGrid PartnerNamespaces within the subscription" + $allCreatedPartnerNamespaces = Get-AzEventGridPartnerNamespace + Assert-True {$allCreatedPartnerNamespaces.PsPartnerNamespacesList.Count -ge 0} + + Write-Debug "Getting EventGrid PartnerNamespaces within the resource group $resourceGroupName" + $allCreatedPartnerNamespaces = Get-AzEventGridPartnerNamespace -ResourceGroup $resourceGroupName + Assert-True {$allCreatedPartnerNamespaces.Count -ge 1} + + Write-Debug "Getting EventGrid PartnerNamespace Keys" + $keys = Get-AzEventGridPartnerNamespaceKey -ResourceGroup $resourceGroupName -PartnerNamespaceName $partnerNamespaceName + Assert-True {$keys.Key1 -ne ""} + Assert-True {$keys.Key2 -ne ""} + + Write-Debug "Regenerating EventGrid PartnerNamespace Keys" + $keys = New-AzEventGridPartnerNamespaceKey -ResourceGroup $resourceGroupName -PartnerNamespaceName $partnerNamespaceName -Name "key1" + Assert-True {$keys.Key1 -ne ""} + Assert-True {$keys.Key2 -ne ""} + $keys = New-AzEventGridPartnerNamespaceKey -ResourceGroup $resourceGroupName -PartnerNamespaceName $partnerNamespaceName -Name "key2" + Assert-True {$keys.Key1 -ne ""} + Assert-True {$keys.Key2 -ne ""} + + Write-Debug "Creating EventGrid PartnerConfiguration in resource group $resourceGroupName" + $authorizedPartner = @{"partnerRegistrationImmutableId"=$partnerRegistrationImmutableId; "authorizationExpirationTimeInUtc"=(Get-Date).AddDays(8)} + $authorizedPartners = @($authorizedPartner) + $createdPartnerConfiguration = New-AzEventGridPartnerConfiguration -ResourceGroup $resourceGroupName -AuthorizedPartner $authorizedPartners -MaxExpirationTimeInDays 15 + Assert-True {$createdPartnerConfiguration.Count -eq 1} + Assert-True {$createdPartnerConfiguration.ProvisioningState -eq "Succeeded"} + + Write-Debug "Authorizing the EventGrid PartnerConfiguration" + $result = Grant-AzEventGridPartnerConfiguration -ResourceGroup $resourceGroupName -PartnerRegistrationImmutableId $partnerRegistrationImmutableId + Assert-True {$result.ProvisioningState -eq "Succeeded"} + + Write-Debug "Getting the new EventGrid PartnerConfiguration" + $createdPartnerConfiguration = Get-AzEventGridPartnerConfiguration -ResourceGroup $resourceGroupName + Assert-True {$createdPartnerConfiguration.PartnerAuthorization.DefaultMaximumExpirationTimeInDays -eq 15} + Assert-True {$createdPartnerConfiguration.PartnerAuthorization.AuthorizedPartnersList[0].PartnerRegistrationImmutableId -eq $partnerRegistrationImmutableId} + + Write-Debug "Getting EventGrid PartnerConfigurations within the subscription" + $allPartnerConfigurations = Get-AzEventGridPartnerConfiguration + $countOfPc = $allPartnerConfigurations.PsPartnerConfigurationsList.Count + $partnerConfigurationsType = $allPartnerConfigurations.GetType() + Write-Debug "PsPartnerCnfigurationsList count: $countOfPc, type: $partnerConfigurationsType" + Assert-True {$allPartnerConfigurations.PsPartnerConfigurationsList.Count -ge 0} + + Write-Debug "Unauthorizing the EventGrid PartnerConfiguration" + $result = Revoke-AzEventGridPartnerConfiguration -ResourceGroup $resourceGroupName -PartnerRegistrationImmutableId $partnerRegistrationImmutableId + Assert-True {$result.ProvisioningState -eq "Succeeded"} + + Write-Debug "Authorizing the EventGrid PartnerConfiguration" + $result = Grant-AzEventGridPartnerConfiguration -ResourceGroup $resourceGroupName -PartnerRegistrationImmutableId $partnerRegistrationImmutableId + Assert-True {$result.ProvisioningState -eq "Succeeded"} + + Write-Debug "Creating EventGrid Channel: $channelName in resource group $resourceGroupName" + $createdChannel = New-AzEventGridChannel -ResourceGroup $resourceGroupName -PartnerNamespaceName $partnerNamespaceName -Name $channelName -ChannelType "partnerTopic" -PartnerTopicName $partnerTopicName -PartnerTopicSource $source + Assert-True {$createdChannel.ProvisioningState -eq "Succeeded"} + + Write-Debug "Getting EventGrid Channel $channelName" + $createdChannel = Get-AzEventGridChannel -ResourceGroup $resourceGroupName -PartnerNamespaceName $partnerNamespaceName -Name $channelName + Assert-True {$createdChannel.Name -eq $channelName} + + Write-Debug "Getting EventGrid Channels within the partner namespace" + $allCreatedChannels = Get-AzEventGridChannel -ResourceGroup $resourceGroupName -PartnerNamespaceName $partnerNamespaceName + Assert-True {$allCreatedChannels.PsChannelsList.Count -eq 1} + + Write-Debug "Getting PartnerTopic: $partnerTopicName in resource group $resourceGroupName" + $createdPartnerTopic = Get-AzEventGridPartnerTopic -ResourceGroup $resourceGroupName -Name $partnerTopicName + Assert-True {$createdPartnerTopic.ProvisioningState -eq "Succeeded"} + Assert-True {$createdPartnerTopic.Name -eq $partnerTopicName} + + Write-Debug "Getting all PartnerTopics in ResourceGroup" + $allPartnerTopics = Get-AzEventGridPartnerTopic -ResourceGroup $resourceGroupName + $partnerTopicsType = $allPartnerTopics.GetType() + Write-Debug "PartnerTopicsList type: $partnerTopicsType" + Assert-True {$allPartnerTopics.PsPartnerTopicsList.Count -eq 1} + + Write-Debug "Getting all PartnerTopics in the subscription" + $allPartnerTopics = Get-AzEventGridPartnerTopic -ResourceGroup $resourceGroupName + Assert-True {$allPartnerTopics.PsPartnerTopicsList.Count -ge 1} + + Write-Debug "Activating the PartnerTopic" + $result = Enable-AzEventGridPartnerTopic -ResourceGroup $resourceGroupName -Name $partnerTopicName + Assert-True {$result.ActivationState -eq "Activated"} + Assert-True {$result.PartnerRegistrationImmutableId -eq $partnerRegistrationImmutableId} + + #Write-Debug "Updating PartnerTopic $partnerTopicName" + #$createdPartnerTopic = Update-AzEventGridPartnerTopic -ResourceGroup $resourceGroupName -Name $partnerTopicName -Tag @{ "Dept"="IT"; "Environment"="Test" } + + Write-Debug "Creating PartnerTopic EventSubscription $eventSubscriptionName under partner topic $partnerTopicName" + $createdEventSub = New-AzEventGridPartnerTopicEventSubscription -ResourceGroup $resourceGroupName -PartnerTopicName $partnerTopicName -Name $eventSubscriptionName -EndpointType "storagequeue" -Endpoint $eventSubscriptionStorageDestinationResourceId + Assert-True {$createdEventSub.ProvisioningState -eq "Succeeded"} + + Write-Debug "Get EventSubscription created for partner topic $partnerTopicName" + $createdEventSub = Get-AzEventGridPartnerTopicEventSubscription -ResourceGroup $resourceGroupName -PartnerTopicName $partnerTopicName -Name $eventSubscriptionName + Assert-True {$createdEventSub.EventSubscriptionName -eq $eventSubscriptionName} + + Write-Debug "Creating 2nd EventSubscription $eventSubscriptionName2 to topic $partnerTopicName in resource group $resourceGroupName" + $result = New-AzEventGridPartnerTopicEventSubscription -ResourceGroup $resourceGroupName -PartnerTopicName $partnerTopicName -EndpointType "storagequeue" -Endpoint $eventSubscriptionStorageDestinationResourceId -EventSubscriptionName $eventSubscriptionName2 + Assert-True {$result.ProvisioningState -eq "Succeeded"} + + Write-Debug "Get event subscription created for partner topic: $partnerTopicName" + $createdEventSubscription2 = Get-AzEventGridPartnerTopicEventSubscription -ResourceGroup $resourceGroupName -PartnerTopicName $partnerTopicName + Assert-True {$createdEventSubscription2.Count -ge 0} "Event subscription created earlier is not found in the list" + + Write-Debug "Get event subscription created for partner topic: $partnerTopicName" + $createdEventSubscription = Get-AzEventGridPartnerTopicEventSubscription -ResourceGroup $resourceGroupName -PartnerTopicName $partnerTopicName -Top 1 + Assert-True {$createdEventSubscription.NextLink -ne $null } "NextLink should not be null as more event subscription should be available under partner topic" + + Write-Debug "Get event subscription created for partner topic: $partnerTopicName with nextlink" + $createdEventSubscription = Get-AzEventGridPartnerTopicEventSubscription -ResourceGroup $resourceGroupName -PartnerTopicName $partnerTopicName -NextLink $createdEventSubscription.NextLink + Assert-True {$createdEventSubscription -ne $null } "Event subscription should not be null as more event subscription should be available under partner topic" + + $labels = "Finance", "HR" + Write-Debug "Updating a EventGrid PartnerTopic Eventsubscription with TopicName: $partnerTopicName in resource group $resourceGroupName and EventSubscriptionName: $eventSubscriptionName" + $result = Update-AzEventGridPartnerTopicEventSubscription -EventSubscriptionName $eventSubscriptionName -ResourceGroup $resourceGroupName -PartnerTopicName $partnerTopicName -Label $labels + Assert-True {$result.ProvisioningState -eq "Succeeded"} + $updatedLabels = $result.Labels + Assert-AreEqual 2 $updatedLabels.Count; + Assert-AreEqual "Finance" $updatedLabels[0]; + Assert-AreEqual "HR" $updatedLabels[1]; + + #Write-Debug "Get Delivery attributes for partner topic: $partnerTopicName and Eventsubscription $eventSubscriptionName" + #$createdEventSubscriptionDa = Get-AzEventGridPartnerTopicEventSubscriptionDeliveryAttribute -ResourceGroup $resourceGroupName -PartnerTopicName $partnerTopicName -EventSubscriptionName $eventSubscriptionName + + #Write-Debug "Get full url for partner topic: $partnerTopicName and Eventsubscription $eventSubscriptionName" + #$createdEventSubscriptionDa = Get-AzEventGridFullUrlForPartnerTopicEventSubscription -ResourceGroup $resourceGroupName -PartnerTopicName $partnerTopicName -EventSubscriptionName $eventSubscriptionName + + Write-Debug "Deleting event subscription : $eventSubscriptionName for partner topic : $partnerTopicName" + Remove-AzEventGridPartnerTopicEventSubscription -ResourceGroup $resourceGroupName -PartnerTopicName $partnerTopicName -EventSubscriptionName $eventSubscriptionName -Force + + Write-Debug "Deleting event subscription : $eventSubscriptionName for partner topic : $partnerTopicName" + Remove-AzEventGridPartnerTopicEventSubscription -ResourceGroup $resourceGroupName -PartnerTopicName $partnerTopicName -EventSubscriptionName $eventSubscriptionName2 -Force + + $verifiedPartners = Get-AzEventGridVerifiedPartner + + Remove-AzEventGridPartnerTopic -ResourceGroup $resourceGroupName -Name $partnerTopicName -Force + Remove-AzEventGridChannel -ResourceGroup $resourceGroupName -PartnerNamespaceName $partnerNamespaceName -Name $channelName -Force + Remove-AzEventGridPartnerConfiguration -ResourceGroup $resourceGroupName -Force + Remove-AzEventGridPartnerRegistration -ResourceGroup $resourceGroupName -Name $partnerRegistrationName -Force + Remove-AzEventGridPartnerNamespace -ResourceGroup $resourceGroupName -Name $partnerNamespaceName -Force + } + finally + { + Remove-ResourceGroup $resourceGroupName + Remove-ResourceGroup $secondResourceGroup + } +} + diff --git a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Test.ScenarioTests.PartnerTests/EventGrid_PartnersCRUD.json b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Test.ScenarioTests.PartnerTests/EventGrid_PartnersCRUD.json new file mode 100644 index 000000000000..288c7654b219 --- /dev/null +++ b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Test.ScenarioTests.PartnerTests/EventGrid_PartnersCRUD.json @@ -0,0 +1,4316 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps8229?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczgyMjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ea7e1538-70c0-4039-bece-ad5deb0cfdfe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.63" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" + ] + }, + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "7a46af1a-e912-4bc2-b4e3-ba0bbb5c826f" + ], + "x-ms-correlation-request-id": [ + "7a46af1a-e912-4bc2-b4e3-ba0bbb5c826f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182054Z:7a46af1a-e912-4bc2-b4e3-ba0bbb5c826f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:20:53 GMT" + ], + "Content-Length": [ + "186" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229\",\r\n \"name\": \"RGName-ps8229\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps8029?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczgwMjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6528503b-e855-436d-a7ec-6a0fe7865626" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.63" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" + ] + }, + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "34e3d517-b068-4548-a28d-7f56ef4061b7" + ], + "x-ms-correlation-request-id": [ + "34e3d517-b068-4548-a28d-7f56ef4061b7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182055Z:34e3d517-b068-4548-a28d-7f56ef4061b7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:20:55 GMT" + ], + "Content-Length": [ + "186" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8029\",\r\n \"name\": \"RGName-ps8029\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerRegistrations/PSTestPartnerRegistration-ps6611?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lclJlZ2lzdHJhdGlvbnMvUFNUZXN0UGFydG5lclJlZ2lzdHJhdGlvbi1wczY2MTE/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1d137ab0-4d6f-4f0c-bb60-5c0e596e942b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "28" + ] + }, + "RequestBody": "{\r\n \"location\": \"global\"\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "156945cf-9ff3-4206-b6fc-d49189d2a662" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "a8453ea8-24bc-4b3d-b25a-1e134648412a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182057Z:a8453ea8-24bc-4b3d-b25a-1e134648412a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:20:57 GMT" + ], + "Content-Length": [ + "461" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"c918c2aa-05d3-487e-bf5e-abbeae9d4a38\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerRegistrations/PSTestPartnerRegistration-ps6611\",\r\n \"name\": \"PSTestPartnerRegistration-ps6611\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerRegistrations/PSTestPartnerRegistration-ps6611?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lclJlZ2lzdHJhdGlvbnMvUFNUZXN0UGFydG5lclJlZ2lzdHJhdGlvbi1wczY2MTE/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "069d88bb-04db-45ee-a2a9-ffb75c409341" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b2a4a22c-63fe-4d84-8006-6f7185505948" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "1adf8d96-4732-402e-aa39-4d8f8176122b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182057Z:1adf8d96-4732-402e-aa39-4d8f8176122b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:20:57 GMT" + ], + "Content-Length": [ + "461" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"c918c2aa-05d3-487e-bf5e-abbeae9d4a38\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerRegistrations/PSTestPartnerRegistration-ps6611\",\r\n \"name\": \"PSTestPartnerRegistration-ps6611\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/partnerRegistrations?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3BhcnRuZXJSZWdpc3RyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4b50f908-28d9-426c-a0bb-1ee5b23d3966" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "32458fda-91cb-4844-b5f0-dcb26a1f077e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "90e573c2-4f35-4b2f-9766-0c2f3a7c3f44" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182058Z:90e573c2-4f35-4b2f-9766-0c2f3a7c3f44" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:20:57 GMT" + ], + "Content-Length": [ + "9713" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"2569eab4-5951-4bdd-9e6b-d1bc49ce8320\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"Value2\",\r\n \"key3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/ContosoCorpAccount1\",\r\n \"name\": \"ContosoCorpAccount1\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"0cbc5e80-58fa-4a71-aaa7-3c3d3444757d\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9628/providers/Microsoft.EventGrid/partnerRegistrations/sdk-PartReg-2344\",\r\n \"name\": \"sdk-PartReg-2344\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"223e607d-dc92-46c4-8d15-89faae0de76d\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9598/providers/Microsoft.EventGrid/partnerRegistrations/sdk-PartReg-2930\",\r\n \"name\": \"sdk-PartReg-2930\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"b6cd9f9a-944c-45af-9e0d-faeaacffbec4\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2883/providers/Microsoft.EventGrid/partnerRegistrations/sdk-PartReg-7623\",\r\n \"name\": \"sdk-PartReg-7623\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"138ce3ab-6a64-4727-aa65-8ea75f35f6ad\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1441/providers/Microsoft.EventGrid/partnerRegistrations/sdk-PartReg-3342\",\r\n \"name\": \"sdk-PartReg-3342\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"2ec2d3b0-f9a2-4cad-a79a-85fa65886580\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1112/providers/Microsoft.EventGrid/partnerRegistrations/sdk-PartReg-9869\",\r\n \"name\": \"sdk-PartReg-9869\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"fcb884ff-e58a-41e4-92c1-cb84ee5d2ad2\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7900/providers/Microsoft.EventGrid/partnerRegistrations/sdk-PartReg-95\",\r\n \"name\": \"sdk-PartReg-95\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"34585c5f-397d-47f5-8827-ebf49a6a0273\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"Dept\": \"ITxyz\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/reg1Test12345\",\r\n \"name\": \"reg1Test12345\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"61ec0b93-3522-4e7c-9809-365f006211b1\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"Dept\": \"ITxyz333\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/reg1Test123456789\",\r\n \"name\": \"reg1Test123456789\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"4f6d57b0-2f2d-42bc-b8f6-3090b519c249\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/testPartReg123\",\r\n \"name\": \"testPartReg123\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"7c04fd2b-01d6-4abb-b559-a612e36574b0\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/testReg\",\r\n \"name\": \"testReg\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"b6adf103-d3e8-4374-a04e-b40bffa61475\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/partnerRegistrationDemoName\",\r\n \"name\": \"partnerRegistrationDemoName\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"33537692-deb5-41af-858e-d2331d132ff2\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9638/providers/Microsoft.EventGrid/partnerRegistrations/sdk-PartReg-4819\",\r\n \"name\": \"sdk-PartReg-4819\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"c15ce603-0b01-4efc-840d-aed9882828e0\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/testReg123\",\r\n \"name\": \"testReg123\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"0332e584-d258-4fea-8711-2d3cf930d38d\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/ContosoCorpAccount22\",\r\n \"name\": \"ContosoCorpAccount22\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"6b95d421-328a-46cd-939f-246aa7f4791e\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/mpark-pr\",\r\n \"name\": \"mpark-pr\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"4b70304b-825a-47ac-857b-6d681e130e85\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1/providers/Microsoft.EventGrid/partnerRegistrations/partnerRegistration-7e1bf9be\",\r\n \"name\": \"partnerRegistration-7e1bf9be\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"e6eb3fdb-1a92-4821-a04c-3d341257a7c0\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1/providers/Microsoft.EventGrid/partnerRegistrations/partnerRegistration-f8808288\",\r\n \"name\": \"partnerRegistration-f8808288\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"0b625518-6114-4553-80e4-da60694d6d94\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"Value2\",\r\n \"key3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/testPART1\",\r\n \"name\": \"testPART1\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"1a08418e-01c0-4a96-894b-e300c177e552\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/testPartReg1\",\r\n \"name\": \"testPartReg1\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/partnerRegistrations?api-version=2022-06-15&$skiptoken=%5b%7b%22token%22%3a%22%2bRID%3a%7e9fgUANJIZBOGAwAAAAAAAA%3d%3d%23RT%3a1%23TRC%3a20%23ISV%3a2%23IEO%3a65551%23QCF%3a8%23FPC%3aAgEAEAAKAIaDQQf%2bADyAAIEBLAA0j6yIAIDBAikAwoABwAADHoIMj7KAK4afgALAFAACBCmAvYCCgEGEMQAAIgIGAIWDKZMggAQCAOyqBwIA2LwIAgAPug8CAECiEAQAv6oMgA%3d%3d%22%2c%22range%22%3a%7b%22min%22%3a%22%22%2c%22max%22%3a%22FF%22%7d%7d%5d&$top=20\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/partnerRegistrations?api-version=2022-06-15&$skiptoken=%5b%7B%22token%22%3a%22%2bRID%3a~9fgUANJIZBOGAwAAAAAAAA%3d%3d%23RT%3a1%23TRC%3a20%23ISV%3a2%23IEO%3a65551%23QCF%3a8%23FPC%3aAgEAEAAKAIaDQQf%2bADyAAIEBLAA0j6yIAIDBAikAwoABwAADHoIMj7KAK4afgALAFAACBCmAvYCCgEGEMQAAIgIGAIWDKZMggAQCAOyqBwIA2LwIAgAPug8CAECiEAQAv6oMgA%3d%3d%22%2c%22range%22%3a%7B%22min%22%3a%22%22%2c%22max%22%3a%22FF%22%7D%7D%5d&$top=20", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3BhcnRuZXJSZWdpc3RyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjItMDYtMTUmJHNraXB0b2tlbj0lNWIlN0IlMjJ0b2tlbiUyMiUzYSUyMiUyYlJJRCUzYX45ZmdVQU5KSVpCT0dBd0FBQUFBQUFBJTNkJTNkJTIzUlQlM2ExJTIzVFJDJTNhMjAlMjNJU1YlM2EyJTIzSUVPJTNhNjU1NTElMjNRQ0YlM2E4JTIzRlBDJTNhQWdFQUVBQUtBSWFEUVFmJTJiQUR5QUFJRUJMQUEwajZ5SUFJREJBaWtBd29BQndBQURIb0lNajdLQUs0YWZnQUxBRkFBQ0JDbUF2WUNDZ0VHRU1RQUFJZ0lHQUlXREtaTWdnQVFDQU95cUJ3SUEyTHdJQWdBUHVnOENBRUNpRUFRQXY2b01nQSUzZCUzZCUyMiUyYyUyMnJhbmdlJTIyJTNhJTdCJTIybWluJTIyJTNhJTIyJTIyJTJjJTIybWF4JTIyJTNhJTIyRkYlMjIlN0QlN0QlNWQmJHRvcD0yMA==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4b50f908-28d9-426c-a0bb-1ee5b23d3966" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b8c775b3-2c73-4980-996c-21c06f1403f2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "a9b2e451-3142-4bad-97bf-e793981c1c0d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182058Z:a9b2e451-3142-4bad-97bf-e793981c1c0d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:20:57 GMT" + ], + "Content-Length": [ + "10751" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"a5728d2e-d1b1-43fe-86f8-9a14d6cfbb26\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1/providers/Microsoft.EventGrid/partnerRegistrations/partnerRegistration-834d2ff5\",\r\n \"name\": \"partnerRegistration-834d2ff5\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"4f8abfdd-2adb-4da8-9d74-553ca1a4ad85\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1/providers/Microsoft.EventGrid/partnerRegistrations/partnerRegistration-5ce0d9ba\",\r\n \"name\": \"partnerRegistration-5ce0d9ba\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"0419a459-acff-44f8-988d-19a1156eaf7f\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1/providers/Microsoft.EventGrid/partnerRegistrations/partnerRegistration-b092d0dd\",\r\n \"name\": \"partnerRegistration-b092d0dd\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"7b96ff68-256d-499e-9e6c-b57c4239cf6e\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1/providers/Microsoft.EventGrid/partnerRegistrations/partnerRegistration-8da7aa3e\",\r\n \"name\": \"partnerRegistration-8da7aa3e\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"28c7b934-6304-4dd0-9204-c63cdef46789\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1/providers/Microsoft.EventGrid/partnerRegistrations/partnerRegistration-07404738\",\r\n \"name\": \"partnerRegistration-07404738\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"a52f60e9-896c-487c-b93f-bc325f0bc000\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1/providers/Microsoft.EventGrid/partnerRegistrations/partnerRegistration-48093e3c\",\r\n \"name\": \"partnerRegistration-48093e3c\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"3a0012ed-c2ee-4ab8-904a-26fe32162d04\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1/providers/Microsoft.EventGrid/partnerRegistrations/partnerRegistration-de394e4d\",\r\n \"name\": \"partnerRegistration-de394e4d\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"d7b67fdc-1995-4506-b48c-ee0506bb3396\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerRegistrations/egcrudgsregehdest1b023767EastUS2EUAP\",\r\n \"name\": \"egcrudgsregehdest1b023767EastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"f3fdc973-1d1a-4ad6-9a28-bc2781f6a0da\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerRegistrations/egltncygsregehdestpartitionv1EastUS2EUAP\",\r\n \"name\": \"egltncygsregehdestpartitionv1EastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"697bf054-6e88-4c53-88ac-bbfdd88f140e\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRgcentraluseuap/providers/Microsoft.EventGrid/partnerRegistrations/egcrudgsregpartnerdest1429819dCentralUSEUAP\",\r\n \"name\": \"egcrudgsregpartnerdest1429819dCentralUSEUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"010ed630-2a7e-4d69-90c2-7484d331e849\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"Value2\",\r\n \"key3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/IntegrationPartnerRegistrationFullSpec\",\r\n \"name\": \"IntegrationPartnerRegistrationFullSpec\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"7328c045-ca3b-410f-bd56-bb707f33ebf1\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"Value2\",\r\n \"key3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/IntegrationPartnerRegistrationFullSpec11\",\r\n \"name\": \"IntegrationPartnerRegistrationFullSpec11\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"d45e2cd1-afcc-470e-a03d-0c621a7f99e2\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerRegistrations/egcrudgsregallresopsc59fac9dEastUS2EUAP\",\r\n \"name\": \"egcrudgsregallresopsc59fac9dEastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"b133074a-55dd-44dc-b79b-57858f2ccd4b\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerRegistrations/egcrudgsregpartnerauth0b369039EastUS2EUAP\",\r\n \"name\": \"egcrudgsregpartnerauth0b369039EastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"0ba5afee-a5f5-4e05-9076-8361b861ee5a\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerRegistrations/egcrudgsregpartnerauthca242437EastUS2EUAP\",\r\n \"name\": \"egcrudgsregpartnerauthca242437EastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"47253e05-05e9-46da-93f0-4f20c936d41b\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerRegistrations/egltncygsregehdest-EastUS2EUAP\",\r\n \"name\": \"egltncygsregehdest-EastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"d7dcfda3-d7bf-415b-a4d9-1c49ef8db62c\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerRegistrations/egcrudgsregpartnerauth07456129EastUS2EUAP\",\r\n \"name\": \"egcrudgsregpartnerauth07456129EastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"014e2584-ebf2-4e65-aa66-e183ad7be5f3\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerRegistrations/egcrudgsregpartnerauthc87cc2b9EastUS2EUAP\",\r\n \"name\": \"egcrudgsregpartnerauthc87cc2b9EastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"1d78c0fd-c4bc-494e-9ce0-30b084539a18\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"Value2\",\r\n \"key3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/IntegReg1FullSpec1\",\r\n \"name\": \"IntegReg1FullSpec1\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"b55ccf41-2b74-4f0b-adb2-4fb4dccbf2a6\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRgLtcyuse2euap/providers/Microsoft.EventGrid/partnerRegistrations/egltncygsregehdest-EastUS2EUAP\",\r\n \"name\": \"egltncygsregehdest-EastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/partnerRegistrations?api-version=2022-06-15&$skiptoken=%5b%7b%22token%22%3a%22%2bRID%3a%7e9fgUANJIZBPcbAAAAAAAAA%3d%3d%23RT%3a2%23TRC%3a40%23ISV%3a2%23IEO%3a65551%23QCF%3a8%23FPC%3aAgEBEAEaANyssoArhp%2bAAsAUAAIEKYC9gIKAQYQxAAAiAgYAhYMpkyCABAIA7KoHAgDYvAgCAA%2b6DwIAQKIQBAC%2fqgyA%22%2c%22range%22%3a%7b%22min%22%3a%22%22%2c%22max%22%3a%22FF%22%7d%7d%5d&$top=20\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/partnerRegistrations?api-version=2022-06-15&$skiptoken=%5b%7B%22token%22%3a%22%2bRID%3a~9fgUANJIZBPcbAAAAAAAAA%3d%3d%23RT%3a2%23TRC%3a40%23ISV%3a2%23IEO%3a65551%23QCF%3a8%23FPC%3aAgEBEAEaANyssoArhp%2bAAsAUAAIEKYC9gIKAQYQxAAAiAgYAhYMpkyCABAIA7KoHAgDYvAgCAA%2b6DwIAQKIQBAC%2fqgyA%22%2c%22range%22%3a%7B%22min%22%3a%22%22%2c%22max%22%3a%22FF%22%7D%7D%5d&$top=20", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3BhcnRuZXJSZWdpc3RyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjItMDYtMTUmJHNraXB0b2tlbj0lNWIlN0IlMjJ0b2tlbiUyMiUzYSUyMiUyYlJJRCUzYX45ZmdVQU5KSVpCUGNiQUFBQUFBQUFBJTNkJTNkJTIzUlQlM2EyJTIzVFJDJTNhNDAlMjNJU1YlM2EyJTIzSUVPJTNhNjU1NTElMjNRQ0YlM2E4JTIzRlBDJTNhQWdFQkVBRWFBTnlzc29BcmhwJTJiQUFzQVVBQUlFS1lDOWdJS0FRWVF4QUFBaUFnWUFoWU1wa3lDQUJBSUE3S29IQWdEWXZBZ0NBQSUyYjZEd0lBUUtJUUJBQyUyZnFneUElMjIlMmMlMjJyYW5nZSUyMiUzYSU3QiUyMm1pbiUyMiUzYSUyMiUyMiUyYyUyMm1heCUyMiUzYSUyMkZGJTIyJTdEJTdEJTVkJiR0b3A9MjA=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4b50f908-28d9-426c-a0bb-1ee5b23d3966" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "40b40587-ae59-4a73-a593-84c6e0a1ce51" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "a1fa172a-b646-4987-88bc-48e36869e7be" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182058Z:a1fa172a-b646-4987-88bc-48e36869e7be" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:20:57 GMT" + ], + "Content-Length": [ + "10521" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"1b2f1129-a03a-48b3-8a1e-54e9a79e5ee7\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRgLtcyuse2euap/providers/Microsoft.EventGrid/partnerRegistrations/egltncygsregstgqueuedest-EastUS2EUAP\",\r\n \"name\": \"egltncygsregstgqueuedest-EastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"e7880e4f-43f1-4033-826f-c59d8137b4ff\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"Value2\",\r\n \"key3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/testFinalPartReg1\",\r\n \"name\": \"testFinalPartReg1\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"1e5917f7-886f-4e9e-af30-791f4f861bbe\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerRegistrations/egcrudgsregehdest2222-2222EastUS2EUAP\",\r\n \"name\": \"egcrudgsregehdest2222-2222EastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"2f9f5ba7-930d-4337-abaf-fe2d8201c5d1\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerRegistrations/egcrudgsregehdest1111-2222EastUS2EUAP\",\r\n \"name\": \"egcrudgsregehdest1111-2222EastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"c6696851-f9fc-4bf4-93d0-bfa5a654a111\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerRegistrations/egcrudgsregehdest3333-2222EastUS2EUAP\",\r\n \"name\": \"egcrudgsregehdest3333-2222EastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"57ceb4a3-ccc8-4841-893b-f28e15d962d8\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerRegistrations/egcrudgsregehdest3333-21EastUS2EUAP\",\r\n \"name\": \"egcrudgsregehdest3333-21EastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"4cf57e95-60dd-46c5-b02a-8d687a469c4c\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerRegistrations/egcrudgsregehdest333113-21EastUS2EUAP\",\r\n \"name\": \"egcrudgsregehdest333113-21EastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"4e019589-eb72-4d90-97c3-667948ac7912\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerRegistrations/egcrudgsregehdest12-3113-21EastUS2EUAP\",\r\n \"name\": \"egcrudgsregehdest12-3113-21EastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"2a2a79e7-0c04-4a42-a1be-7df68fc04873\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerRegistrations/egcrudgsregehdest865-4-3113-21EastUS2EUAP\",\r\n \"name\": \"egcrudgsregehdest865-4-3113-21EastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"dc1d2be9-439c-45bf-bcf5-37614abde85a\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerRegistrations/egcrudgsregehdest06115-4-3113-21EastUS2EUAP\",\r\n \"name\": \"egcrudgsregehdest06115-4-3113-21EastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"01ca43ba-fe55-4ee5-9193-180aa94f4397\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRgLtcyEvtChlEhDestuse2euap/providers/Microsoft.EventGrid/partnerRegistrations/egltncygsregehdest-EastUS2EUAP\",\r\n \"name\": \"egltncygsregehdest-EastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"e8db0939-42b7-46f7-8b4f-0c1a3dffb1fc\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRgLtcyEvtChlStgDestuse2euap/providers/Microsoft.EventGrid/partnerRegistrations/egltncygsregstgqueuedest-EastUS2EUAP\",\r\n \"name\": \"egltncygsregstgqueuedest-EastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"af6bb323-b349-4f98-be98-0acd0a54b72e\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRgLtcyEvtChlEhdestPartV1use2euap/providers/Microsoft.EventGrid/partnerRegistrations/egltncygsregehdestpartitionv1-EastUS2EUAP\",\r\n \"name\": \"egltncygsregehdestpartitionv1-EastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"994c24e8-bdb5-4b54-ac36-0d5698f7fdbb\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-171/providers/Microsoft.EventGrid/partnerRegistrations/sdk-PartReg-9927\",\r\n \"name\": \"sdk-PartReg-9927\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"a4a9fc31-26b5-4f9f-b117-b4bebb302c7c\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1/providers/Microsoft.EventGrid/partnerRegistrations/partnerRegistration-4112fb00\",\r\n \"name\": \"partnerRegistration-4112fb00\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"2272427a-acde-4f52-8a7d-ca87853657b0\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1/providers/Microsoft.EventGrid/partnerRegistrations/partnerRegistration-8164cf3c\",\r\n \"name\": \"partnerRegistration-8164cf3c\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"3d393561-771e-4d9e-9470-a62e1779b347\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/test\",\r\n \"name\": \"test\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"3131eef0-5e1d-4003-91d3-a649269d74fb\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testNonEnglishRg诶比比西西西/providers/Microsoft.EventGrid/partnerRegistrations/testNonEnglishPartnerregistration1\",\r\n \"name\": \"testNonEnglishPartnerregistration1\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"8003f0e1-68f1-4269-84db-78416e67473b\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/testMIPartnerReg1\",\r\n \"name\": \"testMIPartnerReg1\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"d7681f03-da47-486a-be18-0f7bdff3a9a9\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps295/providers/Microsoft.EventGrid/partnerRegistrations/PSTestPartnerRegistration-ps3641\",\r\n \"name\": \"PSTestPartnerRegistration-ps3641\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/partnerRegistrations?api-version=2022-06-15&$skiptoken=%5b%7b%22token%22%3a%22%2bRID%3a%7e9fgUANJIZBNA4gMAAAAAAA%3d%3d%23RT%3a3%23TRC%3a60%23ISV%3a2%23IEO%3a65551%23QCF%3a8%23FPC%3aAgEPEA8CAECiEAQAv6oMgA%3d%3d%22%2c%22range%22%3a%7b%22min%22%3a%22%22%2c%22max%22%3a%22FF%22%7d%7d%5d&$top=20\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/partnerRegistrations?api-version=2022-06-15&$skiptoken=%5b%7B%22token%22%3a%22%2bRID%3a~9fgUANJIZBNA4gMAAAAAAA%3d%3d%23RT%3a3%23TRC%3a60%23ISV%3a2%23IEO%3a65551%23QCF%3a8%23FPC%3aAgEPEA8CAECiEAQAv6oMgA%3d%3d%22%2c%22range%22%3a%7B%22min%22%3a%22%22%2c%22max%22%3a%22FF%22%7D%7D%5d&$top=20", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3BhcnRuZXJSZWdpc3RyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjItMDYtMTUmJHNraXB0b2tlbj0lNWIlN0IlMjJ0b2tlbiUyMiUzYSUyMiUyYlJJRCUzYX45ZmdVQU5KSVpCTkE0Z01BQUFBQUFBJTNkJTNkJTIzUlQlM2EzJTIzVFJDJTNhNjAlMjNJU1YlM2EyJTIzSUVPJTNhNjU1NTElMjNRQ0YlM2E4JTIzRlBDJTNhQWdFUEVBOENBRUNpRUFRQXY2b01nQSUzZCUzZCUyMiUyYyUyMnJhbmdlJTIyJTNhJTdCJTIybWluJTIyJTNhJTIyJTIyJTJjJTIybWF4JTIyJTNhJTIyRkYlMjIlN0QlN0QlNWQmJHRvcD0yMA==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4b50f908-28d9-426c-a0bb-1ee5b23d3966" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "afae3797-2817-430c-b16d-8102906f258f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "9a77b69b-ced0-4bca-be7a-979b7199d901" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182058Z:9a77b69b-ced0-4bca-be7a-979b7199d901" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:20:57 GMT" + ], + "Content-Length": [ + "935" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"5e2f61d0-31e8-4620-ac07-ac4e0271a298\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8695/providers/Microsoft.EventGrid/partnerRegistrations/PSTestPartnerRegistration-ps4715\",\r\n \"name\": \"PSTestPartnerRegistration-ps4715\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"c918c2aa-05d3-487e-bf5e-abbeae9d4a38\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerRegistrations/PSTestPartnerRegistration-ps6611\",\r\n \"name\": \"PSTestPartnerRegistration-ps6611\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerRegistrations?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lclJlZ2lzdHJhdGlvbnM/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "980c2bf6-39c4-42c2-94b8-dbe0d3394fac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8000e604-c787-4608-9915-ed8faffbe8a1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "754bb836-00fb-4409-8de3-059e739c5237" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182058Z:754bb836-00fb-4409-8de3-059e739c5237" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:20:58 GMT" + ], + "Content-Length": [ + "473" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationImmutableId\": \"c918c2aa-05d3-487e-bf5e-abbeae9d4a38\",\r\n \"visibilityState\": \"Hidden\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerRegistrations/PSTestPartnerRegistration-ps6611\",\r\n \"name\": \"PSTestPartnerRegistration-ps6611\",\r\n \"type\": \"Microsoft.EventGrid/partnerRegistrations\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerNamespaces/PSTestPartnerNamespace-ps9187?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lck5hbWVzcGFjZXMvUFNUZXN0UGFydG5lck5hbWVzcGFjZS1wczkxODc/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8a890ba4-e7d8-479d-99a0-2285fe6e8a10" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "324" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerRegistrations/PSTestPartnerRegistration-ps6611\",\r\n \"partnerTopicRoutingMode\": \"ChannelNameHeader\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4EA1BA6C-9801-4F96-A35D-AB8D7E940274?api-version=2022-06-15" + ], + "x-ms-request-id": [ + "96e1b562-563b-4125-b724-89e88caa6933" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "f9a1868a-a027-46ae-ad2c-27c11531e0e9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182101Z:f9a1868a-a027-46ae-ad2c-27c11531e0e9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:21:01 GMT" + ], + "Content-Length": [ + "623" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerRegistrations/PSTestPartnerRegistration-ps6611\",\r\n \"endpoint\": null,\r\n \"partnerTopicRoutingMode\": \"ChannelNameHeader\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerNamespaces/PSTestPartnerNamespace-ps9187\",\r\n \"name\": \"PSTestPartnerNamespace-ps9187\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4EA1BA6C-9801-4F96-A35D-AB8D7E940274?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNEVBMUJBNkMtOTgwMS00Rjk2LUEzNUQtQUI4RDdFOTQwMjc0P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8a890ba4-e7d8-479d-99a0-2285fe6e8a10" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "be6ce4df-a448-49fc-9638-cb68353a8001" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "e0a2ecf7-1004-4265-9b3d-2d116735c5d5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182111Z:e0a2ecf7-1004-4265-9b3d-2d116735c5d5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:21:11 GMT" + ], + "Content-Length": [ + "286" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4EA1BA6C-9801-4F96-A35D-AB8D7E940274?api-version=2022-06-15\",\r\n \"name\": \"4ea1ba6c-9801-4f96-a35d-ab8d7e940274\",\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerNamespaces/PSTestPartnerNamespace-ps9187?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lck5hbWVzcGFjZXMvUFNUZXN0UGFydG5lck5hbWVzcGFjZS1wczkxODc/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8a890ba4-e7d8-479d-99a0-2285fe6e8a10" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "db5b3986-1a8e-4a60-8716-228282053f7b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "479c5cfa-663f-4579-b898-b0eb3af24243" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182111Z:479c5cfa-663f-4579-b898-b0eb3af24243" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:21:11 GMT" + ], + "Content-Length": [ + "738" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerRegistrations/PSTestPartnerRegistration-ps6611\",\r\n \"endpoint\": \"https://pstestpartnernamespace-ps9187.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"ChannelNameHeader\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerNamespaces/PSTestPartnerNamespace-ps9187\",\r\n \"name\": \"PSTestPartnerNamespace-ps9187\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerNamespaces/PSTestPartnerNamespace-ps9187?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lck5hbWVzcGFjZXMvUFNUZXN0UGFydG5lck5hbWVzcGFjZS1wczkxODc/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2c1c57e0-1816-49f2-8e22-89fd66c2662d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "04e3a9bd-6324-4f8f-95f3-9122996e3b1c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "8f497382-0187-43ac-b575-532cc0aa583c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182111Z:8f497382-0187-43ac-b575-532cc0aa583c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:21:11 GMT" + ], + "Content-Length": [ + "738" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerRegistrations/PSTestPartnerRegistration-ps6611\",\r\n \"endpoint\": \"https://pstestpartnernamespace-ps9187.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"ChannelNameHeader\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerNamespaces/PSTestPartnerNamespace-ps9187\",\r\n \"name\": \"PSTestPartnerNamespace-ps9187\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/partnerNamespaces?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3BhcnRuZXJOYW1lc3BhY2VzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d114f725-1993-4afe-a2e3-63fc0767ff7b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "af1a100a-2c65-4d71-9853-4e82f94bda80", + "94a123c1-2c6b-445a-8b63-d57740aeeb5f", + "525f6acd-2535-45cd-a103-54003ed638ac", + "74fed0e3-38b0-43d8-9025-1093862596db", + "e538f969-6508-4008-850c-fe47ca185682", + "8b427368-67d5-455b-9078-ef5be1001de6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "d24e7b7f-4554-439e-818e-ceb65d031e6b" + ], + "x-ms-correlation-request-id": [ + "d24e7b7f-4554-439e-818e-ceb65d031e6b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182112Z:d24e7b7f-4554-439e-818e-ceb65d031e6b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:21:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "37920" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1/providers/Microsoft.EventGrid/partnerRegistrations/partnerRegistration-7e1bf9be\",\r\n \"endpoint\": \"https://bmttest1.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.EventGrid/partnerNamespaces/bmttest1\",\r\n \"name\": \"bmttest1\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1/providers/Microsoft.EventGrid/partnerRegistrations/partnerRegistration-7e1bf9be\",\r\n \"endpoint\": \"https://testpartnernamespacesync2.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerNamespaces/testPartnerNamespaceSync2\",\r\n \"name\": \"testPartnerNamespaceSync2\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps295/providers/Microsoft.EventGrid/partnerRegistrations/PSTestPartnerRegistration-ps3641\",\r\n \"endpoint\": \"https://pstestpartnernamespace-ps7579.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"ChannelNameHeader\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps295/providers/Microsoft.EventGrid/partnerNamespaces/PSTestPartnerNamespace-ps7579\",\r\n \"name\": \"PSTestPartnerNamespace-ps7579\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8695/providers/Microsoft.EventGrid/partnerRegistrations/PSTestPartnerRegistration-ps4715\",\r\n \"endpoint\": \"https://pstestpartnernamespace-ps9393.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"ChannelNameHeader\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8695/providers/Microsoft.EventGrid/partnerNamespaces/PSTestPartnerNamespace-ps9393\",\r\n \"name\": \"PSTestPartnerNamespace-ps9393\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerRegistrations/PSTestPartnerRegistration-ps6611\",\r\n \"endpoint\": \"https://pstestpartnernamespace-ps9187.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"ChannelNameHeader\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerNamespaces/PSTestPartnerNamespace-ps9187\",\r\n \"name\": \"PSTestPartnerNamespace-ps9187\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/testReg\",\r\n \"endpoint\": \"https://mparkpartnernamespace2.centralus-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerNamespaces/mparkpartnernamespace2\",\r\n \"name\": \"mparkpartnernamespace2\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"\",\r\n \"endpoint\": \"https://mparktestnamespace.centralus-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerNamespaces/mparktestnamespace\",\r\n \"name\": \"mparktestnamespace\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/mpark-pr\",\r\n \"endpoint\": \"https://mparktestnamespace2.centralus-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerNamespaces/mparktestnamespace2\",\r\n \"name\": \"mparktestnamespace2\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/testPartReg1\",\r\n \"endpoint\": \"https://testns3tobedeleted.westus2-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerNamespaces/testNS3ToBeDeleted\",\r\n \"name\": \"testNS3ToBeDeleted\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/IntegReg1FullSpec1\",\r\n \"endpoint\": \"https://coi-cspw-ppe-gea-namespeee.westus2-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerNamespaces/COI-CSPW-PPE-GEA-NAMESPEEE\",\r\n \"name\": \"COI-CSPW-PPE-GEA-NAMESPEEE\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/ContosoCorpAccount1\",\r\n \"endpoint\": \"https://mparkpartnernamespaceeastus.eastus-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerNamespaces/mparkpartnernamespaceeastus\",\r\n \"name\": \"mparkpartnernamespaceeastus\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/ContosoCorpAccount1\",\r\n \"endpoint\": \"https://testregressionns.eastus-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [],\r\n \"disableLocalAuth\": false,\r\n \"partnerTopicRoutingMode\": \"ChannelNameHeader\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerNamespaces/testRegressionNS\",\r\n \"name\": \"testRegressionNS\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testNonEnglishRg诶比比西西西/providers/Microsoft.EventGrid/partnerRegistrations/testNonEnglishPartnerregistration1\",\r\n \"endpoint\": \"https://testnonenglishpartnerrnamespace1.eastus-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [],\r\n \"disableLocalAuth\": false,\r\n \"partnerTopicRoutingMode\": \"ChannelNameHeader\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testNonEnglishRg诶比比西西西/providers/Microsoft.EventGrid/partnerNamespaces/testNonEnglishPartnerrNamespace1\",\r\n \"name\": \"testNonEnglishPartnerrNamespace1\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/ContosoCorpAccount1\",\r\n \"endpoint\": \"https://partnernamespace123.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\",\r\n \"key3\": \"value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerNamespaces/partnerNamespace123\",\r\n \"name\": \"partnerNamespace123\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2883/providers/Microsoft.EventGrid/partnerRegistrations/sdk-PartReg-7623\",\r\n \"endpoint\": \"https://sdk-partns-7765.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag111\": \"originalValue111\",\r\n \"originalTag222\": \"originalValue222\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2883/providers/Microsoft.EventGrid/partnerNamespaces/sdk-PartNs-7765\",\r\n \"name\": \"sdk-PartNs-7765\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1441/providers/Microsoft.EventGrid/partnerRegistrations/sdk-PartReg-3342\",\r\n \"endpoint\": \"https://sdk-partns-8256.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag111\": \"replacedValue111\",\r\n \"replacedTag222\": \"replacedValue222\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1441/providers/Microsoft.EventGrid/partnerNamespaces/sdk-PartNs-8256\",\r\n \"name\": \"sdk-PartNs-8256\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1112/providers/Microsoft.EventGrid/partnerRegistrations/sdk-PartReg-9869\",\r\n \"endpoint\": \"https://sdk-partns-9127.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag111\": \"replacedValue111\",\r\n \"replacedTag222\": \"replacedValue222\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1112/providers/Microsoft.EventGrid/partnerNamespaces/sdk-PartNs-9127\",\r\n \"name\": \"sdk-PartNs-9127\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7900/providers/Microsoft.EventGrid/partnerRegistrations/sdk-PartReg-95\",\r\n \"endpoint\": \"https://sdk-partns-9363.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag111\": \"replacedValue111\",\r\n \"replacedTag222\": \"replacedValue222\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7900/providers/Microsoft.EventGrid/partnerNamespaces/sdk-PartNs-9363\",\r\n \"name\": \"sdk-PartNs-9363\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/testPartReg123\",\r\n \"endpoint\": \"https://test12443ns12.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerNamespaces/test12443NS12\",\r\n \"name\": \"test12443NS12\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/testReg\",\r\n \"endpoint\": \"https://testns1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerNamespaces/testNS1\",\r\n \"name\": \"testNS1\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/partnerRegistrationDemoName\",\r\n \"endpoint\": \"https://partnernamespacendemoname.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerNamespaces/partnerNamespacenDemoName\",\r\n \"name\": \"partnerNamespacenDemoName\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9638/providers/Microsoft.EventGrid/partnerRegistrations/sdk-PartReg-4819\",\r\n \"endpoint\": \"https://sdk-partns-9173.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag111\": \"originalValue111\",\r\n \"originalTag222\": \"originalValue222\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9638/providers/Microsoft.EventGrid/partnerNamespaces/sdk-PartNs-9173\",\r\n \"name\": \"sdk-PartNs-9173\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/ContosoCorpAccount1\",\r\n \"endpoint\": \"https://mparkpartnernamespacecentral.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerNamespaces/mparkpartnernamespacecentral\",\r\n \"name\": \"mparkpartnernamespacecentral\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/testReg123\",\r\n \"endpoint\": \"https://testns123.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerNamespaces/testNS123\",\r\n \"name\": \"testNS123\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1/providers/Microsoft.EventGrid/partnerRegistrations/partnerRegistration-7e1bf9be\",\r\n \"endpoint\": \"https://partnernamespace-7e1bf9be.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg2/providers/Microsoft.EventGrid/partnerNamespaces/partnerNamespace-7e1bf9be\",\r\n \"name\": \"partnerNamespace-7e1bf9be\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1/providers/Microsoft.EventGrid/partnerRegistrations/partnerRegistration-f8808288\",\r\n \"endpoint\": \"https://partnernamespace-f8808288.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg2/providers/Microsoft.EventGrid/partnerNamespaces/partnerNamespace-f8808288\",\r\n \"name\": \"partnerNamespace-f8808288\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": null,\r\n \"endpoint\": \"https://testpns1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerNamespaces/testPNS1\",\r\n \"name\": \"testPNS1\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": null,\r\n \"endpoint\": \"https://testpns1v2.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerNamespaces/testPNS1V2\",\r\n \"name\": \"testPNS1V2\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": null,\r\n \"endpoint\": \"https://testpns1v3.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"ChannelNameHeader\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"aeg-partnernamespace-version\": \"V2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerNamespaces/testPNS1V3\",\r\n \"name\": \"testPNS1V3\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": null,\r\n \"endpoint\": \"https://testnamespacev21.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"ChannelNameHeader\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"aeg-partnernamespace-version\": \"V2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerNamespaces/testNamespaceV21\",\r\n \"name\": \"testNamespaceV21\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": null,\r\n \"endpoint\": \"https://testnamespacev23.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"ChannelNameHeader\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"aeg-partnernamespace-version\": \"V2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerNamespaces/testNamespaceV23\",\r\n \"name\": \"testNamespaceV23\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": null,\r\n \"endpoint\": \"https://testpns1v555.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"ChannelNameHeader\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"aeg-partnernamespace-version\": \"V2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerNamespaces/testPNS1V555\",\r\n \"name\": \"testPNS1V555\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": null,\r\n \"endpoint\": \"https://finv1111.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"ChannelNameHeader\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"aeg-partnernamespace-version\": \"V2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerNamespaces/finV1111\",\r\n \"name\": \"finV1111\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/ContosoCorpAccount1\",\r\n \"endpoint\": \"https://mparkpartnernamespace.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerNamespaces/mparkpartnernamespace\",\r\n \"name\": \"mparkpartnernamespace\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerRegistrations/egcrudgsregehdest1b023767EastUS2EUAP\",\r\n \"endpoint\": \"https://egcrudgsnsehdest1b023767eastus2euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerNamespaces/egcrudgsnsehdest1b023767EastUS2EUAP\",\r\n \"name\": \"egcrudgsnsehdest1b023767EastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerRegistrations/egltncygsregehdestpartitionv1EastUS2EUAP\",\r\n \"endpoint\": \"https://egltncygsnsehdestpartitionv1eastus2euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerNamespaces/egltncygsnsehdestpartitionv1EastUS2EUAP\",\r\n \"name\": \"egltncygsnsehdestpartitionv1EastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerRegistrations/egcrudgsregallresopsc59fac9dEastUS2EUAP\",\r\n \"endpoint\": \"https://egcrudgsnsallresopsc59fac9deastus2euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerNamespaces/egcrudgsnsallresopsc59fac9dEastUS2EUAP\",\r\n \"name\": \"egcrudgsnsallresopsc59fac9dEastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerRegistrations/egcrudgsregpartnerauth0b369039EastUS2EUAP\",\r\n \"endpoint\": \"https://egcrudgsnspartnerauth0b369039eastus2euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerNamespaces/egcrudgsnspartnerauth0b369039EastUS2EUAP\",\r\n \"name\": \"egcrudgsnspartnerauth0b369039EastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerRegistrations/egcrudgsregpartnerauthca242437EastUS2EUAP\",\r\n \"endpoint\": \"https://egcrudgsnspartnerauthca242437eastus2euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerNamespaces/egcrudgsnspartnerauthca242437EastUS2EUAP\",\r\n \"name\": \"egcrudgsnspartnerauthca242437EastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRgLtcyEvtChlEhDestuse2euap/providers/Microsoft.EventGrid/partnerRegistrations/egltncygsregehdest-EastUS2EUAP\",\r\n \"endpoint\": \"https://egltncygsnsehdest-eastus2euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRgLtcyEvtChlEhDestuse2euap/providers/Microsoft.EventGrid/partnerNamespaces/egltncygsnsehdest-EastUS2EUAP\",\r\n \"name\": \"egltncygsnsehdest-EastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerRegistrations/egcrudgsregpartnerauth07456129EastUS2EUAP\",\r\n \"endpoint\": \"https://egcrudgsnspartnerauth07456129eastus2euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerNamespaces/egcrudgsnspartnerauth07456129EastUS2EUAP\",\r\n \"name\": \"egcrudgsnspartnerauth07456129EastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRgLtcyEvtChlStgDestuse2euap/providers/Microsoft.EventGrid/partnerRegistrations/egltncygsregstgqueuedest-EastUS2EUAP\",\r\n \"endpoint\": \"https://egltncygsnsstgqueuedest-eastus2euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRgLtcyEvtChlStgDestuse2euap/providers/Microsoft.EventGrid/partnerNamespaces/egltncygsnsstgqueuedest-EastUS2EUAP\",\r\n \"name\": \"egltncygsnsstgqueuedest-EastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerRegistrations/egcrudgsregehdest2222-2222EastUS2EUAP\",\r\n \"endpoint\": \"https://egcrudgsnsehdest2222-2222eastus2euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerNamespaces/egcrudgsnsehdest2222-2222EastUS2EUAP\",\r\n \"name\": \"egcrudgsnsehdest2222-2222EastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerRegistrations/egcrudgsregehdest1111-2222EastUS2EUAP\",\r\n \"endpoint\": \"https://egcrudgsnsehdest1111-2222eastus2euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerNamespaces/egcrudgsnsehdest1111-2222EastUS2EUAP\",\r\n \"name\": \"egcrudgsnsehdest1111-2222EastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerRegistrations/egcrudgsregehdest3333-2222EastUS2EUAP\",\r\n \"endpoint\": \"https://egcrudgsnsehdest3333-2222eastus2euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerNamespaces/egcrudgsnsehdest3333-2222EastUS2EUAP\",\r\n \"name\": \"egcrudgsnsehdest3333-2222EastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerRegistrations/egcrudgsregehdest3333-21EastUS2EUAP\",\r\n \"endpoint\": \"https://egcrudgsnsehdest3333-21eastus2euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerNamespaces/egcrudgsnsehdest3333-21EastUS2EUAP\",\r\n \"name\": \"egcrudgsnsehdest3333-21EastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerRegistrations/egcrudgsregehdest333113-21EastUS2EUAP\",\r\n \"endpoint\": \"https://egcrudgsnsehdest333113-21eastus2euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerNamespaces/egcrudgsnsehdest333113-21EastUS2EUAP\",\r\n \"name\": \"egcrudgsnsehdest333113-21EastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerRegistrations/egcrudgsregehdest12-3113-21EastUS2EUAP\",\r\n \"endpoint\": \"https://egcrudgsnsehdest12-3113-21eastus2euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerNamespaces/egcrudgsnsehdest12-3113-21EastUS2EUAP\",\r\n \"name\": \"egcrudgsnsehdest12-3113-21EastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerRegistrations/egcrudgsregehdest865-4-3113-21EastUS2EUAP\",\r\n \"endpoint\": \"https://egcrudgsnsehdest865-4-3113-21eastus2euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerNamespaces/egcrudgsnsehdest865-4-3113-21EastUS2EUAP\",\r\n \"name\": \"egcrudgsnsehdest865-4-3113-21EastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerRegistrations/egcrudgsregehdest06115-4-3113-21EastUS2EUAP\",\r\n \"endpoint\": \"https://egcrudgsnsehdest06115-4-3113-21eastus2euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/partnerNamespaces/egcrudgsnsehdest06115-4-3113-21EastUS2EUAP\",\r\n \"name\": \"egcrudgsnsehdest06115-4-3113-21EastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/ContosoCorpAccount1\",\r\n \"endpoint\": \"https://testchinesenamespce.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [],\r\n \"disableLocalAuth\": false,\r\n \"partnerTopicRoutingMode\": \"ChannelNameHeader\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerNamespaces/testChinesenamespce\",\r\n \"name\": \"testChinesenamespce\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/partnerNamespaces?api-version=2022-06-15&%24skiptoken=TZJtb5swEMe%2fC2r6agTqhEAjVdPBAJGlaXjatL0z2HG9yMBsmnSt%2bt13RNE062T%2fzve3z3fyu9Xx13Eru6Ox1u9WFO%2bqArZ1Gdewt9bW8zgOZu04inZUcMW7cU7fXjSft71yzEtjWi2HUfadcbxm2aw8l9skaO7tpX%2fv2s2CNjZjDQsC5hO%2fXTqD7k%2bScW2cR9nq3vSHcR6f8NpUS%2bYMVI8d1zuquBloy81nOkj7hHLM8EBcQmx3Zd95tzfmiGn7I%2b8eZl4z85sZIRcX19mCTjNpiuzLxD4vx4TDV%2fnGD4fvqYDrmC3YZGRRVCi7Q6iKCIm4iFn5bcKJ4iekled5kySPEvQCpGQ%2fiUHEkJ7hCXYxzSE%2fCNjCJj5GEJUQQgaSmiSEaCefKYQihzb3MX0bQ6TC4Ee%2bQXDTGnIADIKAOoNMpBJiPMuGvgxFVG5yqEOACsO%2fVNFGsFe%2f03MGf36eLwXgK1usWNNO8Gv9l4Yo2f3XjqtK0dd%2fm0kyoc8m89jtzdgP2GTr45NFtQIhNBd05Kya%2box%2fAYpH6%2bMv\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/partnerNamespaces?api-version=2022-06-15&%24skiptoken=TZJtb5swEMe%2fC2r6agTqhEAjVdPBAJGlaXjatL0z2HG9yMBsmnSt%2bt13RNE062T%2fzve3z3fyu9Xx13Eru6Ox1u9WFO%2bqArZ1Gdewt9bW8zgOZu04inZUcMW7cU7fXjSft71yzEtjWi2HUfadcbxm2aw8l9skaO7tpX%2fv2s2CNjZjDQsC5hO%2fXTqD7k%2bScW2cR9nq3vSHcR6f8NpUS%2bYMVI8d1zuquBloy81nOkj7hHLM8EBcQmx3Zd95tzfmiGn7I%2b8eZl4z85sZIRcX19mCTjNpiuzLxD4vx4TDV%2fnGD4fvqYDrmC3YZGRRVCi7Q6iKCIm4iFn5bcKJ4iekled5kySPEvQCpGQ%2fiUHEkJ7hCXYxzSE%2fCNjCJj5GEJUQQgaSmiSEaCefKYQihzb3MX0bQ6TC4Ee%2bQXDTGnIADIKAOoNMpBJiPMuGvgxFVG5yqEOACsO%2fVNFGsFe%2f03MGf36eLwXgK1usWNNO8Gv9l4Yo2f3XjqtK0dd%2fm0kyoc8m89jtzdgP2GTr45NFtQIhNBd05Kya%2box%2fAYpH6%2bMv", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3BhcnRuZXJOYW1lc3BhY2VzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTUmJTI0c2tpcHRva2VuPVRaSnRiNXN3RU1lJTJmQzJyNmFnVHFoRUFqVmRQQkFKR2xhWGphdEwwejJIRzl5TUJzbW5TdCUyYnQxM1JORTA2MlQlMmZ6dmUzejNmeXU5WHgxM0VydTZPeDF1OVdGTyUyYnFBcloxR2Rld3Q5Ylc4emdPWnUwNGluWlVjTVc3Y1U3ZlhqU2Z0NzF5ekV0aldpMkhVZmFkY2J4bTJhdzhsOXNrYU83dHBYJTJmdjJzMkNOalpqRFFzQzVoTyUyZlhUcUQ3ayUyYlNjVzJjUjlucTN2U0hjUjZmOE5wVVMlMmJZTVZJOGQxenVxdUJsb3k4MW5Pa2o3aEhMTThFQmNRbXgzWmQ5NXR6Zm1pR243SSUyYjhlWmw0ejg1c1pJUmNYMTltQ1RqTnBpdXpMeEQ0dng0VERWJTJmbkdENGZ2cVlEcm1DM1laR1JSVkNpN1E2aUtDSW00aUZuNWJjS0o0aWVrbGVkNWt5U1BFdlFDcEdRJTJmaVVIRWtKN2hDWFl4elNFJTJmQ05qQ0pqNUdFSlVRUWdhU21pU0VhQ2VmS1lRaWh6YjNNWDBiUTZUQzRFZSUyYlFYRFRHbklBRElLQU9vTk1wQkppUE11R3ZneEZWRzV5cUVPQUNzTyUyZlZORkdzRmUlMmYwM01HZjM2ZUx3WGdLMXVzV05OTzhHdjlsNFlvMmYzWGpxdEswZGQlMmZtMGt5b2M4bTg5anR6ZGdQMkdUcjQ1TkZ0UUloTkJkMDVLeWElMmJveCUyZkFZcEg2JTJiTXY=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d114f725-1993-4afe-a2e3-63fc0767ff7b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "660557a5-ab81-46b7-9147-07971def4bc8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "5f1c4cc7-cf34-4c00-a7da-b21f75455b72" + ], + "x-ms-correlation-request-id": [ + "5f1c4cc7-cf34-4c00-a7da-b21f75455b72" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182112Z:5f1c4cc7-cf34-4c00-a7da-b21f75455b72" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:21:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "14924" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": null,\r\n \"endpoint\": \"https://testnsfinal1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"ChannelNameHeader\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"aeg-partnernamespace-version\": \"V2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerNamespaces/TestNSFinal1\",\r\n \"name\": \"TestNSFinal1\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1/providers/Microsoft.EventGrid/partnerRegistrations/partnerRegistration-834d2ff5\",\r\n \"endpoint\": \"https://partnernamespace-834d2ff5.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg2/providers/Microsoft.EventGrid/partnerNamespaces/partnerNamespace-834d2ff5\",\r\n \"name\": \"partnerNamespace-834d2ff5\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1/providers/Microsoft.EventGrid/partnerRegistrations/partnerRegistration-5ce0d9ba\",\r\n \"endpoint\": \"https://partnernamespace-5ce0d9ba.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg2/providers/Microsoft.EventGrid/partnerNamespaces/partnerNamespace-5ce0d9ba\",\r\n \"name\": \"partnerNamespace-5ce0d9ba\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1/providers/Microsoft.EventGrid/partnerRegistrations/partnerRegistration-8da7aa3e\",\r\n \"endpoint\": \"https://partnernamespace-8da7aa3e.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg2/providers/Microsoft.EventGrid/partnerNamespaces/partnerNamespace-8da7aa3e\",\r\n \"name\": \"partnerNamespace-8da7aa3e\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1/providers/Microsoft.EventGrid/partnerRegistrations/partnerRegistration-07404738\",\r\n \"endpoint\": \"https://partnernamespace-07404738.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg2/providers/Microsoft.EventGrid/partnerNamespaces/partnerNamespace-07404738\",\r\n \"name\": \"partnerNamespace-07404738\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1/providers/Microsoft.EventGrid/partnerRegistrations/partnerRegistration-48093e3c\",\r\n \"endpoint\": \"https://partnernamespace-48093e3c.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg2/providers/Microsoft.EventGrid/partnerNamespaces/partnerNamespace-48093e3c\",\r\n \"name\": \"partnerNamespace-48093e3c\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1/providers/Microsoft.EventGrid/partnerRegistrations/partnerRegistration-de394e4d\",\r\n \"endpoint\": \"https://partnernamespace-de394e4d.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg2/providers/Microsoft.EventGrid/partnerNamespaces/partnerNamespace-de394e4d\",\r\n \"name\": \"partnerNamespace-de394e4d\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1/providers/Microsoft.EventGrid/partnerRegistrations/partnerRegistration-7e1bf9be\",\r\n \"endpoint\": \"https://bmtauditlogspns.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/demorg/providers/Microsoft.EventGrid/partnerNamespaces/bmtauditlogspns\",\r\n \"name\": \"bmtauditlogspns\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": null,\r\n \"endpoint\": \"https://ahamadpns1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"ChannelNameHeader\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerNamespaces/ahamadPNS1\",\r\n \"name\": \"ahamadPNS1\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1/providers/Microsoft.EventGrid/partnerRegistrations/partnerRegistration-df985700\",\r\n \"endpoint\": \"https://partnernamespace-df985700.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg2/providers/Microsoft.EventGrid/partnerNamespaces/partnerNamespace-df985700\",\r\n \"name\": \"partnerNamespace-df985700\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/AuthReg1\",\r\n \"endpoint\": \"https://authpartnernamespac1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"ChannelNameHeader\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerNamespaces/AuthPartnerNamespac1\",\r\n \"name\": \"AuthPartnerNamespac1\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRgcentraluseuap/providers/Microsoft.EventGrid/partnerRegistrations/egcrudgsregpartnerdest1429819dCentralUSEUAP\",\r\n \"endpoint\": \"https://egcrudgsnspartnerdest1429819dcentraluseuap.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"ChannelNameHeader\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRgcentraluseuap/providers/Microsoft.EventGrid/partnerNamespaces/egcrudgsnspartnerdest1429819dCentralUSEUAP\",\r\n \"name\": \"egcrudgsnspartnerdest1429819dCentralUSEUAP\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/IntegReg1FullSpec1\",\r\n \"endpoint\": \"https://integns1v.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"ChannelNameHeader\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerNamespaces/IntegNS1V\",\r\n \"name\": \"IntegNS1V\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/IntegReg1FullSpec1\",\r\n \"endpoint\": \"https://integns1v2.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"ChannelNameHeader\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerNamespaces/IntegNS1V2\",\r\n \"name\": \"IntegNS1V2\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/IntegReg1FullSpec1\",\r\n \"endpoint\": \"https://testnsnoreg.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerNamespaces/TestNSNoReg\",\r\n \"name\": \"TestNSNoReg\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": null,\r\n \"endpoint\": \"https://testnsnoreg4.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerNamespaces/TestNSNoReg4\",\r\n \"name\": \"TestNSNoReg4\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1/providers/Microsoft.EventGrid/partnerRegistrations/partnerRegistration-1dcf6129\",\r\n \"endpoint\": \"https://partnernamespace-1dcf6129.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg2/providers/Microsoft.EventGrid/partnerNamespaces/partnerNamespace-1dcf6129\",\r\n \"name\": \"partnerNamespace-1dcf6129\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1/providers/Microsoft.EventGrid/partnerRegistrations/partnerRegistration-36ea3a90\",\r\n \"endpoint\": \"https://partnernamespace-36ea3a90.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg2/providers/Microsoft.EventGrid/partnerNamespaces/partnerNamespace-36ea3a90\",\r\n \"name\": \"partnerNamespace-36ea3a90\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1/providers/Microsoft.EventGrid/partnerRegistrations/partnerRegistration-f798ce88\",\r\n \"endpoint\": \"https://partnernamespace-f798ce88.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg2/providers/Microsoft.EventGrid/partnerNamespaces/partnerNamespace-f798ce88\",\r\n \"name\": \"partnerNamespace-f798ce88\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1/providers/Microsoft.EventGrid/partnerRegistrations/partnerRegistration-4112fb00\",\r\n \"endpoint\": \"https://partnernamespace-4112fb00.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg2/providers/Microsoft.EventGrid/partnerNamespaces/partnerNamespace-4112fb00\",\r\n \"name\": \"partnerNamespace-4112fb00\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/partnerNamespaces?api-version=2022-06-15&%24skiptoken=TVFhb5swEP0vqPTTCNRASCNV04VCRNqkhSSb1G82dlwrwyDbTatW%2fe87umyadbLfnZ793p0%2fPC3e3L3SR%2bvNP7y82OwauN9viz08enPv2bnBzsOwo5pK0QntJvT9xYhJ23ehfWG2NWpwqtc2TFnCpmkkAjJj10GSXUcBiykLOGd8NuMZydokHEx%2fUlwYG65Va3rbH9ykOOGzS6N4OFDjtDAb2gk70FbY73RQwQnpqHBDIkKCaBpcpZcX9oiy%2fVHoGz9lfsZ8Qr5SPP2YjjthTXU74kxsXSngTr2Lw2H%2fs67gz%2fJjPgaJmx3S8EK8a3JESYSw2v44F6viAdE0TdMrrNd5idkMUfk4kkEWq%2bXr8Q422ydIFrUEBbSCGuSCdM%2fVElbVL1jUBSzWOeQPT%2bVrBWiN9gzk7UrDXxMo36JrQ7UU5x6%2bmuqU%2fq%2blM6ujb%2f%2bKZTnCjI%2bR8ssL1w84KO%2fzm0dNB1IaIakTfDfOCv8TmrX3%2bRs%3d\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/partnerNamespaces?api-version=2022-06-15&%24skiptoken=TVFhb5swEP0vqPTTCNRASCNV04VCRNqkhSSb1G82dlwrwyDbTatW%2fe87umyadbLfnZ793p0%2fPC3e3L3SR%2bvNP7y82OwauN9viz08enPv2bnBzsOwo5pK0QntJvT9xYhJ23ehfWG2NWpwqtc2TFnCpmkkAjJj10GSXUcBiykLOGd8NuMZydokHEx%2fUlwYG65Va3rbH9ykOOGzS6N4OFDjtDAb2gk70FbY73RQwQnpqHBDIkKCaBpcpZcX9oiy%2fVHoGz9lfsZ8Qr5SPP2YjjthTXU74kxsXSngTr2Lw2H%2fs67gz%2fJjPgaJmx3S8EK8a3JESYSw2v44F6viAdE0TdMrrNd5idkMUfk4kkEWq%2bXr8Q422ydIFrUEBbSCGuSCdM%2fVElbVL1jUBSzWOeQPT%2bVrBWiN9gzk7UrDXxMo36JrQ7UU5x6%2bmuqU%2fq%2blM6ujb%2f%2bKZTnCjI%2bR8ssL1w84KO%2fzm0dNB1IaIakTfDfOCv8TmrX3%2bRs%3d", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3BhcnRuZXJOYW1lc3BhY2VzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTUmJTI0c2tpcHRva2VuPVRWRmhiNXN3RVAwdnFQVFRDTlJBU0NOVjA0VkNSTnFraFNTYjFHODJkbHdyd3lEYlRhdFclMmZlODd1bXlhZGJMZm5aNzkzcDAlMmZQQzNlM0wzU1IlMmJ2TlA3eTgyT3dhdU45dml6MDhlblB2MmJuQnpzT3dvNXBLMFFudEp2VDl4WWhKMjNlaGZXRzJOV3B3cXRjMlRGbkNwbWtrQWpKajEwR1NYVWNCaXlrTE9HZDhOdU1aeWRva0hFeCUyZlVsd1lHNjVWYTNyYkg5eWtPT0d6UzZONE9GRGp0REFiMmdrNzBGYlk3M1JRd1FucHFIQkRJa0tDYUJwY3BaY1g5b2l5JTJmVkhvR3o5bGZzWjhRcjVTUFAyWWpqdGhUWFU3NGt4c1hTbmdUcjJMdzJIJTJmczY3Z3olMmZKalBnYUpteDNTOEVLOGEzSkVTWVN3MnY0NEY2dmlBZEUwVGRNcnJOZDVpZGtNVWZrNGtrRVdxJTJiWHI4UTQyMnlkSUZyVUVCYlNDR3VTQ2RNJTJmVkVsYlZMMWpVQlN6V09lUVBUJTJiVnJCV2lOOWd6azdVckRYeE1vMzZKclE3VVU1eDYlMmJtdXFVJTJmcSUyYmxNNnVqYiUyZiUyYktaVG5DakklMmJSOHNzTDF3ODRLTyUyZnptMGROQjFJYUlha1RmRGZPQ3Y4VG1yWDMlMmJScyUzZA==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d114f725-1993-4afe-a2e3-63fc0767ff7b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "19b11dc2-f807-4038-95a8-da1d937be4ce" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "f25631e1-baf4-4189-bd50-4423d3c8ba50" + ], + "x-ms-correlation-request-id": [ + "f25631e1-baf4-4189-bd50-4423d3c8ba50" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182113Z:f25631e1-baf4-4189-bd50-4423d3c8ba50" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:21:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "7967" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/ContosoCorpAccount1\",\r\n \"endpoint\": \"https://testdeletenotificationns.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [],\r\n \"disableLocalAuth\": false,\r\n \"partnerTopicRoutingMode\": \"ChannelNameHeader\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/CustomerUser1Rg1/providers/Microsoft.EventGrid/partnerNamespaces/testDeleteNotificationNs\",\r\n \"name\": \"testDeleteNotificationNs\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1/providers/Microsoft.EventGrid/partnerRegistrations/partnerRegistration-2e9fe6a4\",\r\n \"endpoint\": \"https://partnernamespace-2e9fe6a4.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg2/providers/Microsoft.EventGrid/partnerNamespaces/partnerNamespace-2e9fe6a4\",\r\n \"name\": \"partnerNamespace-2e9fe6a4\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1/providers/Microsoft.EventGrid/partnerRegistrations/partnerRegistration-8164cf3c\",\r\n \"endpoint\": \"https://partnernamespace-8164cf3c.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg2/providers/Microsoft.EventGrid/partnerNamespaces/partnerNamespace-8164cf3c\",\r\n \"name\": \"partnerNamespace-8164cf3c\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1/providers/Microsoft.EventGrid/partnerRegistrations/partnerRegistration-3178188f\",\r\n \"endpoint\": \"https://partnernamespace-3178188f.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg2/providers/Microsoft.EventGrid/partnerNamespaces/partnerNamespace-3178188f\",\r\n \"name\": \"partnerNamespace-3178188f\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/test\",\r\n \"endpoint\": \"https://testpartnernamespace2bedeleted.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [],\r\n \"disableLocalAuth\": false,\r\n \"partnerTopicRoutingMode\": \"ChannelNameHeader\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerNamespaces/testPartnerNamespace2Bedeleted\",\r\n \"name\": \"testPartnerNamespace2Bedeleted\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/IntegReg1FullSpec1\",\r\n \"endpoint\": \"https://testns1v1ga1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerNamespaces/testNS1V1Ga1\",\r\n \"name\": \"testNS1V1Ga1\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/IntegReg1FullSpec1\",\r\n \"endpoint\": \"https://testnamespave1v1ga1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerNamespaces/testNameSpave1V1Ga1\",\r\n \"name\": \"testNameSpave1V1Ga1\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/testFinalPartReg1\",\r\n \"endpoint\": \"https://testnamespave1v2ga1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"ChannelNameHeader\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerNamespaces/testNameSpave1V2Ga1\",\r\n \"name\": \"testNameSpave1V2Ga1\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/IntegReg1FullSpec1\",\r\n \"endpoint\": \"https://testns2bdeleted1version1try1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"SourceEventAttribute\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerNamespaces/testNS2bdeleted1Version1try1\",\r\n \"name\": \"testNS2bdeleted1Version1try1\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/ContosoCorpAccount1\",\r\n \"endpoint\": \"https://testarmnotifnamespace111.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [],\r\n \"disableLocalAuth\": false,\r\n \"partnerTopicRoutingMode\": \"ChannelNameHeader\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerNamespaces/testArmNotifNamespace111\",\r\n \"name\": \"testArmNotifNamespace111\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerRegistrations/testMIPartnerReg1\",\r\n \"endpoint\": \"https://testmipartnernamespace1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [],\r\n \"disableLocalAuth\": false,\r\n \"partnerTopicRoutingMode\": \"ChannelNameHeader\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerNamespaces/testMIPartneRNamespace1\",\r\n \"name\": \"testMIPartneRNamespace1\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerNamespaces?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lck5hbWVzcGFjZXM/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b8c3bfd5-8e13-43bb-bb1b-5962ea509bbb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "530444d7-3970-4ad2-a424-fad52f701032" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "d9f0aa6c-7323-4adc-839e-c006e3c747a3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182113Z:d9f0aa6c-7323-4adc-839e-c006e3c747a3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:21:13 GMT" + ], + "Content-Length": [ + "750" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerRegistrationFullyQualifiedId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerRegistrations/PSTestPartnerRegistration-ps6611\",\r\n \"endpoint\": \"https://pstestpartnernamespace-ps9187.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"partnerTopicRoutingMode\": \"ChannelNameHeader\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerNamespaces/PSTestPartnerNamespace-ps9187\",\r\n \"name\": \"PSTestPartnerNamespace-ps9187\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerNamespaces/PSTestPartnerNamespace-ps9187/listKeys?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lck5hbWVzcGFjZXMvUFNUZXN0UGFydG5lck5hbWVzcGFjZS1wczkxODcvbGlzdEtleXM/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", + "RequestMethod": "POST", + "RequestHeaders": { + "x-ms-client-request-id": [ + "977968d4-9384-4ee5-aed5-6028772248cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d1ff111d-0a98-4dee-8c55-4a0a7e849ae7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "e82c4a85-19d6-41a3-bad0-9dffac03f853" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182113Z:e82c4a85-19d6-41a3-bad0-9dffac03f853" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:21:13 GMT" + ], + "Content-Length": [ + "109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"dmC/lLog4gD66tznJ1d3s24tjPbZfbYO8oTow99Qxjo=\",\r\n \"key2\": \"kBefx4t3uwMRKPeNMGBKE3rV8CEAgFA20zfoWAf5Kmw=\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerNamespaces/PSTestPartnerNamespace-ps9187/regenerateKey?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lck5hbWVzcGFjZXMvUFNUZXN0UGFydG5lck5hbWVzcGFjZS1wczkxODcvcmVnZW5lcmF0ZUtleT9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", + "RequestMethod": "POST", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e6dcf5e5-25ea-4f90-9966-33191e123f66" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "25" + ] + }, + "RequestBody": "{\r\n \"keyName\": \"key1\"\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "62416692-6c69-43c0-bb7f-eef1f1c4d286" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "f6136f6f-b1df-4fa0-b335-f6189bb6825e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182114Z:f6136f6f-b1df-4fa0-b335-f6189bb6825e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:21:14 GMT" + ], + "Content-Length": [ + "109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"RBs+oH9pZRjgSei/85o9E+4B7rOp/BW2MEi4WCRR4SM=\",\r\n \"key2\": \"kBefx4t3uwMRKPeNMGBKE3rV8CEAgFA20zfoWAf5Kmw=\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerNamespaces/PSTestPartnerNamespace-ps9187/regenerateKey?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lck5hbWVzcGFjZXMvUFNUZXN0UGFydG5lck5hbWVzcGFjZS1wczkxODcvcmVnZW5lcmF0ZUtleT9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", + "RequestMethod": "POST", + "RequestHeaders": { + "x-ms-client-request-id": [ + "78c31a4b-93ea-4729-a06a-28158af03ab9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "25" + ] + }, + "RequestBody": "{\r\n \"keyName\": \"key2\"\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "54f7b506-91e6-4f2c-86e8-35ded1cd5816" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "bd9ea467-4c1b-4a49-bf79-60642928f830" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182114Z:bd9ea467-4c1b-4a49-bf79-60642928f830" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:21:14 GMT" + ], + "Content-Length": [ + "109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"RBs+oH9pZRjgSei/85o9E+4B7rOp/BW2MEi4WCRR4SM=\",\r\n \"key2\": \"NcM++5eRZCCwVkegi06ajQBmbXz4rvxkaKBxM1J6sgU=\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerConfigurations/default?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lckNvbmZpZ3VyYXRpb25zL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "891d5f2b-5a85-444e-a2d1-43259f695d10" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "369" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"partnerAuthorization\": {\r\n \"defaultMaximumExpirationTimeInDays\": 15,\r\n \"authorizedPartnersList\": [\r\n {\r\n \"partnerRegistrationImmutableId\": \"c918c2aa-05d3-487e-bf5e-abbeae9d4a38\",\r\n \"authorizationExpirationTimeInUtc\": \"2022-10-26T18:21:14.6710575Z\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"global\"\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a7d81b83-c0dc-4944-bad6-4bb377093c5c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "0d00462a-bba0-4414-ab09-e723cef3a447" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182116Z:0d00462a-bba0-4414-ab09-e723cef3a447" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:21:16 GMT" + ], + "Content-Length": [ + "565" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerAuthorization\": {\r\n \"defaultMaximumExpirationTimeInDays\": 15,\r\n \"authorizedPartnersList\": [\r\n {\r\n \"partnerRegistrationImmutableId\": \"c918c2aa-05d3-487e-bf5e-abbeae9d4a38\",\r\n \"partnerName\": null,\r\n \"authorizationExpirationTimeInUtc\": \"2022-10-26T18:21:14.6710575Z\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerConfigurations/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventGrid/partnerConfigurations\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerConfigurations/default/authorizePartner?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lckNvbmZpZ3VyYXRpb25zL2RlZmF1bHQvYXV0aG9yaXplUGFydG5lcj9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", + "RequestMethod": "POST", + "RequestHeaders": { + "x-ms-client-request-id": [ + "244fe423-5807-441f-9768-ad41029e9340" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "80" + ] + }, + "RequestBody": "{\r\n \"partnerRegistrationImmutableId\": \"c918c2aa-05d3-487e-bf5e-abbeae9d4a38\"\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1e829ba2-5c3f-4267-8e93-af1925f7ca37" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "f98bc861-a9dd-43c6-aa73-6e3b327329a0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182117Z:f98bc861-a9dd-43c6-aa73-6e3b327329a0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:21:17 GMT" + ], + "Content-Length": [ + "565" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerAuthorization\": {\r\n \"defaultMaximumExpirationTimeInDays\": 15,\r\n \"authorizedPartnersList\": [\r\n {\r\n \"partnerRegistrationImmutableId\": \"c918c2aa-05d3-487e-bf5e-abbeae9d4a38\",\r\n \"partnerName\": null,\r\n \"authorizationExpirationTimeInUtc\": \"2022-11-02T18:21:16.9652402Z\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerConfigurations/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventGrid/partnerConfigurations\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerConfigurations/default/authorizePartner?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lckNvbmZpZ3VyYXRpb25zL2RlZmF1bHQvYXV0aG9yaXplUGFydG5lcj9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", + "RequestMethod": "POST", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4d850395-5919-45e1-b160-ee22a6739c7a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "80" + ] + }, + "RequestBody": "{\r\n \"partnerRegistrationImmutableId\": \"c918c2aa-05d3-487e-bf5e-abbeae9d4a38\"\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e4a51994-f687-4734-a775-ef8f42ac2152" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "7e6d6e38-9afd-4c52-b602-8e4b1d31e09e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182119Z:7e6d6e38-9afd-4c52-b602-8e4b1d31e09e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:21:18 GMT" + ], + "Content-Length": [ + "565" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerAuthorization\": {\r\n \"defaultMaximumExpirationTimeInDays\": 15,\r\n \"authorizedPartnersList\": [\r\n {\r\n \"partnerRegistrationImmutableId\": \"c918c2aa-05d3-487e-bf5e-abbeae9d4a38\",\r\n \"partnerName\": null,\r\n \"authorizationExpirationTimeInUtc\": \"2022-11-02T18:21:18.6825408Z\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerConfigurations/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventGrid/partnerConfigurations\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerConfigurations/default?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lckNvbmZpZ3VyYXRpb25zL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "69ff0769-5f75-40a2-99ea-c60386351f5f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8430ee90-c5dc-4601-98ae-6dccf70adbef" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "0fce28d5-5aa0-4fa5-bf26-b5b07aed8eaf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182117Z:0fce28d5-5aa0-4fa5-bf26-b5b07aed8eaf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:21:17 GMT" + ], + "Content-Length": [ + "565" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerAuthorization\": {\r\n \"defaultMaximumExpirationTimeInDays\": 15,\r\n \"authorizedPartnersList\": [\r\n {\r\n \"partnerRegistrationImmutableId\": \"c918c2aa-05d3-487e-bf5e-abbeae9d4a38\",\r\n \"partnerName\": null,\r\n \"authorizationExpirationTimeInUtc\": \"2022-11-02T18:21:16.9652402Z\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerConfigurations/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventGrid/partnerConfigurations\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/partnerConfigurations?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3BhcnRuZXJDb25maWd1cmF0aW9ucz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b2fa2b70-001e-49a7-8c23-aa2ae40e04e6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1ea38985-3ffc-4e66-bb51-51a392b13aa5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "196597d4-50f2-47fa-92e3-a74946522510" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182117Z:196597d4-50f2-47fa-92e3-a74946522510" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:21:17 GMT" + ], + "Content-Length": [ + "2161" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"partnerAuthorization\": {\r\n \"defaultMaximumExpirationTimeInDays\": 300,\r\n \"authorizedPartnersList\": [\r\n {\r\n \"partnerRegistrationImmutableId\": \"c4a71228-f127-4d4b-b155-b2b31288cf46\",\r\n \"partnerName\": null,\r\n \"authorizationExpirationTimeInUtc\": \"2023-01-03T17:11:49.975Z\"\r\n },\r\n {\r\n \"partnerRegistrationImmutableId\": \"804a11ca-ce9b-4158-8e94-3c8dc7a072ec\",\r\n \"partnerName\": \"Auth0\",\r\n \"authorizationExpirationTimeInUtc\": \"2023-02-27T17:15:48.893Z\"\r\n },\r\n {\r\n \"partnerRegistrationImmutableId\": \"2569eab4-5951-4bdd-9e6b-d1bc49ce8320\",\r\n \"partnerName\": null,\r\n \"authorizationExpirationTimeInUtc\": \"2023-05-01T04:53:09.298Z\"\r\n },\r\n {\r\n \"partnerRegistrationImmutableId\": \"8003f0e1-68f1-4269-84db-78416e67473b\",\r\n \"partnerName\": null,\r\n \"authorizationExpirationTimeInUtc\": \"2023-05-19T00:07:50.061Z\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/partnerConfigurations/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventGrid/partnerConfigurations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"partnerAuthorization\": {\r\n \"defaultMaximumExpirationTimeInDays\": 15,\r\n \"authorizedPartnersList\": [\r\n {\r\n \"partnerRegistrationImmutableId\": \"d7681f03-da47-486a-be18-0f7bdff3a9a9\",\r\n \"partnerName\": null,\r\n \"authorizationExpirationTimeInUtc\": \"2022-10-20T23:13:14.9945828Z\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps295/providers/Microsoft.EventGrid/partnerConfigurations/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventGrid/partnerConfigurations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"partnerAuthorization\": {\r\n \"defaultMaximumExpirationTimeInDays\": 15,\r\n \"authorizedPartnersList\": [\r\n {\r\n \"partnerRegistrationImmutableId\": \"c918c2aa-05d3-487e-bf5e-abbeae9d4a38\",\r\n \"partnerName\": null,\r\n \"authorizationExpirationTimeInUtc\": \"2022-11-02T18:21:16.9652402Z\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerConfigurations/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventGrid/partnerConfigurations\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerConfigurations/default/unauthorizePartner?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lckNvbmZpZ3VyYXRpb25zL2RlZmF1bHQvdW5hdXRob3JpemVQYXJ0bmVyP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", + "RequestMethod": "POST", + "RequestHeaders": { + "x-ms-client-request-id": [ + "37fa1a94-8fc8-4294-a83a-384ba97a86cf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "80" + ] + }, + "RequestBody": "{\r\n \"partnerRegistrationImmutableId\": \"c918c2aa-05d3-487e-bf5e-abbeae9d4a38\"\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ddf54563-1768-48ce-888c-8a2cd776acea" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "36d8eb07-5661-4e1e-8e6d-2b9b0ae19662" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182118Z:36d8eb07-5661-4e1e-8e6d-2b9b0ae19662" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:21:17 GMT" + ], + "Content-Length": [ + "407" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerAuthorization\": {\r\n \"defaultMaximumExpirationTimeInDays\": 15,\r\n \"authorizedPartnersList\": []\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerConfigurations/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventGrid/partnerConfigurations\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerNamespaces/PSTestPartnerNamespace-ps9187/channels/PSTestChannel-ps5192?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lck5hbWVzcGFjZXMvUFNUZXN0UGFydG5lck5hbWVzcGFjZS1wczkxODcvY2hhbm5lbHMvUFNUZXN0Q2hhbm5lbC1wczUxOTI/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "34808ee9-d802-4190-9ad9-6492e9596f44" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "307" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"channelType\": \"partnerTopic\",\r\n \"partnerTopicInfo\": {\r\n \"azureSubscriptionId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4\",\r\n \"resourceGroupName\": \"RGName-ps8229\",\r\n \"name\": \"PSTestPartnerTopic-ps2673\",\r\n \"source\": \"PSTestPartnerTopicSourceps6440\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3818a4c1-6bc8-405e-a250-d5498d969951" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "4e0b4b04-75d9-4774-83df-ebaedb844637" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182122Z:4e0b4b04-75d9-4774-83df-ebaedb844637" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:21:22 GMT" + ], + "Content-Length": [ + "1003" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"channelType\": \"PartnerTopic\",\r\n \"partnerTopicInfo\": {\r\n \"azureSubscriptionId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4\",\r\n \"resourceGroupName\": \"RGName-ps8229\",\r\n \"name\": \"PSTestPartnerTopic-ps2673\",\r\n \"source\": \"PSTestPartnerTopicSourceps6440\"\r\n },\r\n \"messageForActivation\": \"The partner topic PSTestPartnerTopic-ps2673 was created on behalf of the publisher for source PSTestPartnerTopicSourceps6440 on 10/18/2022 6:21:20 PM. If you do not recognize or authorize this creation operation, please delete this partner topic and/or reach out to the customer service for the publisher. \",\r\n \"provisioningState\": \"Succeeded\",\r\n \"readinessState\": \"NeverActivated\",\r\n \"expirationTimeIfNotActivatedUtc\": \"2022-10-25T18:21:20.1564756Z\"\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerNamespaces/PSTestPartnerNamespace-ps9187/channels/PSTestChannel-ps5192\",\r\n \"name\": \"PSTestChannel-ps5192\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces/channels\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerNamespaces/PSTestPartnerNamespace-ps9187/channels/PSTestChannel-ps5192?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lck5hbWVzcGFjZXMvUFNUZXN0UGFydG5lck5hbWVzcGFjZS1wczkxODcvY2hhbm5lbHMvUFNUZXN0Q2hhbm5lbC1wczUxOTI/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9a8f64cc-6ed2-4b9f-a243-69f70ed00b61" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "42590c02-1711-484e-ad2f-6978b439aeb3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "c7d31512-e88e-4687-97ea-5d38c413afe5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182123Z:c7d31512-e88e-4687-97ea-5d38c413afe5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:21:23 GMT" + ], + "Content-Length": [ + "1003" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"channelType\": \"PartnerTopic\",\r\n \"partnerTopicInfo\": {\r\n \"azureSubscriptionId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4\",\r\n \"resourceGroupName\": \"RGName-ps8229\",\r\n \"name\": \"PSTestPartnerTopic-ps2673\",\r\n \"source\": \"PSTestPartnerTopicSourceps6440\"\r\n },\r\n \"messageForActivation\": \"The partner topic PSTestPartnerTopic-ps2673 was created on behalf of the publisher for source PSTestPartnerTopicSourceps6440 on 10/18/2022 6:21:20 PM. If you do not recognize or authorize this creation operation, please delete this partner topic and/or reach out to the customer service for the publisher. \",\r\n \"provisioningState\": \"Succeeded\",\r\n \"readinessState\": \"NeverActivated\",\r\n \"expirationTimeIfNotActivatedUtc\": \"2022-10-25T18:21:20.1564756Z\"\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerNamespaces/PSTestPartnerNamespace-ps9187/channels/PSTestChannel-ps5192\",\r\n \"name\": \"PSTestChannel-ps5192\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces/channels\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerNamespaces/PSTestPartnerNamespace-ps9187/channels?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lck5hbWVzcGFjZXMvUFNUZXN0UGFydG5lck5hbWVzcGFjZS1wczkxODcvY2hhbm5lbHM/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ccfd12a1-f739-4f87-8bf6-cd95f1020e04" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "820b20e5-7bb4-4534-8414-62edc8ec6da1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "27258c94-5049-4ce0-b511-03932d24a576" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182123Z:27258c94-5049-4ce0-b511-03932d24a576" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:21:23 GMT" + ], + "Content-Length": [ + "1015" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"channelType\": \"PartnerTopic\",\r\n \"partnerTopicInfo\": {\r\n \"azureSubscriptionId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4\",\r\n \"resourceGroupName\": \"RGName-ps8229\",\r\n \"name\": \"PSTestPartnerTopic-ps2673\",\r\n \"source\": \"PSTestPartnerTopicSourceps6440\"\r\n },\r\n \"messageForActivation\": \"The partner topic PSTestPartnerTopic-ps2673 was created on behalf of the publisher for source PSTestPartnerTopicSourceps6440 on 10/18/2022 6:21:20 PM. If you do not recognize or authorize this creation operation, please delete this partner topic and/or reach out to the customer service for the publisher. \",\r\n \"provisioningState\": \"Succeeded\",\r\n \"readinessState\": \"NeverActivated\",\r\n \"expirationTimeIfNotActivatedUtc\": \"2022-10-25T18:21:20.1564756Z\"\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerNamespaces/PSTestPartnerNamespace-ps9187/channels/PSTestChannel-ps5192\",\r\n \"name\": \"PSTestChannel-ps5192\",\r\n \"type\": \"Microsoft.EventGrid/partnerNamespaces/channels\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerTopics/PSTestPartnerTopic-ps2673?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lclRvcGljcy9QU1Rlc3RQYXJ0bmVyVG9waWMtcHMyNjczP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "81ca90d9-4b33-40ed-b68f-32736f7846bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "905d33c3-6725-4476-9faf-bdc1ec251dbb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "4648dcc0-efda-443f-9b3e-1352074ee1f3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182124Z:4648dcc0-efda-443f-9b3e-1352074ee1f3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:21:23 GMT" + ], + "Content-Length": [ + "1230" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerRegistrationImmutableId\": \"c918c2aa-05d3-487e-bf5e-abbeae9d4a38\",\r\n \"source\": \"PSTestPartnerTopicSourceps6440\",\r\n \"expirationTimeIfNotActivatedUtc\": \"2022-10-25T18:21:20.1564756Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"activationState\": \"NeverActivated\",\r\n \"partnerTopicFriendlyDescription\": \"The partner topic PSTestPartnerTopic-ps2673 was created on behalf of the publisher for source PSTestPartnerTopicSourceps6440 on 10/18/2022 6:21:20 PM. If you do not recognize or authorize this creation operation, please delete this partner topic and/or reach out to the customer service for the publisher. \",\r\n \"messageForActivation\": \"The partner topic PSTestPartnerTopic-ps2673 was created on behalf of the publisher for source PSTestPartnerTopicSourceps6440 on 10/18/2022 6:21:20 PM. If you do not recognize or authorize this creation operation, please delete this partner topic and/or reach out to the customer service for the publisher. \"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerTopics/PSTestPartnerTopic-ps2673\",\r\n \"name\": \"PSTestPartnerTopic-ps2673\",\r\n \"type\": \"Microsoft.EventGrid/partnerTopics\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerTopics?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lclRvcGljcz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a81d428f-43e4-4590-a524-a86eeb0265bb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "620f7f9a-2f36-4520-8774-de4abd9c788c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "d8ad6b15-44ed-4a1d-a2ec-588e8580b3c9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182124Z:d8ad6b15-44ed-4a1d-a2ec-588e8580b3c9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:21:24 GMT" + ], + "Content-Length": [ + "1242" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"partnerRegistrationImmutableId\": \"c918c2aa-05d3-487e-bf5e-abbeae9d4a38\",\r\n \"source\": \"PSTestPartnerTopicSourceps6440\",\r\n \"expirationTimeIfNotActivatedUtc\": \"2022-10-25T18:21:20.1564756Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"activationState\": \"NeverActivated\",\r\n \"partnerTopicFriendlyDescription\": \"The partner topic PSTestPartnerTopic-ps2673 was created on behalf of the publisher for source PSTestPartnerTopicSourceps6440 on 10/18/2022 6:21:20 PM. If you do not recognize or authorize this creation operation, please delete this partner topic and/or reach out to the customer service for the publisher. \",\r\n \"messageForActivation\": \"The partner topic PSTestPartnerTopic-ps2673 was created on behalf of the publisher for source PSTestPartnerTopicSourceps6440 on 10/18/2022 6:21:20 PM. If you do not recognize or authorize this creation operation, please delete this partner topic and/or reach out to the customer service for the publisher. \"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerTopics/PSTestPartnerTopic-ps2673\",\r\n \"name\": \"PSTestPartnerTopic-ps2673\",\r\n \"type\": \"Microsoft.EventGrid/partnerTopics\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerTopics?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lclRvcGljcz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "19ecb3af-f5fd-470b-a208-ccf478c59128" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b6668cf8-ad32-4c9d-8761-ad8b7baac933" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "94f9441d-4f2a-4c0c-beb3-601157dd0d54" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182125Z:94f9441d-4f2a-4c0c-beb3-601157dd0d54" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:21:24 GMT" + ], + "Content-Length": [ + "1242" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"partnerRegistrationImmutableId\": \"c918c2aa-05d3-487e-bf5e-abbeae9d4a38\",\r\n \"source\": \"PSTestPartnerTopicSourceps6440\",\r\n \"expirationTimeIfNotActivatedUtc\": \"2022-10-25T18:21:20.1564756Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"activationState\": \"NeverActivated\",\r\n \"partnerTopicFriendlyDescription\": \"The partner topic PSTestPartnerTopic-ps2673 was created on behalf of the publisher for source PSTestPartnerTopicSourceps6440 on 10/18/2022 6:21:20 PM. If you do not recognize or authorize this creation operation, please delete this partner topic and/or reach out to the customer service for the publisher. \",\r\n \"messageForActivation\": \"The partner topic PSTestPartnerTopic-ps2673 was created on behalf of the publisher for source PSTestPartnerTopicSourceps6440 on 10/18/2022 6:21:20 PM. If you do not recognize or authorize this creation operation, please delete this partner topic and/or reach out to the customer service for the publisher. \"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerTopics/PSTestPartnerTopic-ps2673\",\r\n \"name\": \"PSTestPartnerTopic-ps2673\",\r\n \"type\": \"Microsoft.EventGrid/partnerTopics\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerTopics/PSTestPartnerTopic-ps2673/activate?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lclRvcGljcy9QU1Rlc3RQYXJ0bmVyVG9waWMtcHMyNjczL2FjdGl2YXRlP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", + "RequestMethod": "POST", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58b8bf2c-9705-41dd-8dee-eec282ed1060" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "62abe133-964f-4250-b197-49338271b583" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "04afb554-45d9-457d-83ad-e318a1e57422" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182126Z:04afb554-45d9-457d-83ad-e318a1e57422" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:21:25 GMT" + ], + "Content-Length": [ + "485" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerRegistrationImmutableId\": \"c918c2aa-05d3-487e-bf5e-abbeae9d4a38\",\r\n \"source\": \"PSTestPartnerTopicSourceps6440\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"activationState\": \"Activated\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerTopics/PSTestPartnerTopic-ps2673\",\r\n \"name\": \"PSTestPartnerTopic-ps2673\",\r\n \"type\": \"Microsoft.EventGrid/partnerTopics\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerTopics/PSTestPartnerTopic-ps2673/eventSubscriptions/EventSubscription-ps108?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lclRvcGljcy9QU1Rlc3RQYXJ0bmVyVG9waWMtcHMyNjczL2V2ZW50U3Vic2NyaXB0aW9ucy9FdmVudFN1YnNjcmlwdGlvbi1wczEwOD9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d27af85f-d1a8-4174-9c02-44269412c84f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "489" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"StorageQueue\",\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"queueName\": \"stogqueuedestination\",\r\n \"queueMessageTimeToLiveInSeconds\": 0\r\n }\r\n },\r\n \"filter\": {\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/1717FD1C-A316-4067-8F86-6D3A1F8F7E6E?api-version=2022-06-15" + ], + "x-ms-request-id": [ + "21af3ba9-7491-4484-b9a1-0ccf03e175bf" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "674c4949-ea18-4fe7-86eb-443593cb678b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182127Z:674c4949-ea18-4fe7-86eb-443593cb678b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:21:26 GMT" + ], + "Content-Length": [ + "936" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerTopics/PSTestPartnerTopic-ps2673\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"queueName\": \"stogqueuedestination\",\r\n \"queueMessageTimeToLiveInSeconds\": 0\r\n },\r\n \"endpointType\": \"StorageQueue\"\r\n },\r\n \"filter\": {\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerTopics/PSTestPartnerTopic-ps2673/eventSubscriptions/EventSubscription-ps108\",\r\n \"name\": \"EventSubscription-ps108\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics/eventSubscriptions\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/1717FD1C-A316-4067-8F86-6D3A1F8F7E6E?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMTcxN0ZEMUMtQTMxNi00MDY3LThGODYtNkQzQTFGOEY3RTZFP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d27af85f-d1a8-4174-9c02-44269412c84f" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a7b0206a-33b2-4625-b162-4e281593280e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "1527b94d-1e16-447a-bc9a-c25268b61e7c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182137Z:1527b94d-1e16-447a-bc9a-c25268b61e7c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:21:36 GMT" + ], + "Content-Length": [ + "286" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/1717FD1C-A316-4067-8F86-6D3A1F8F7E6E?api-version=2022-06-15\",\r\n \"name\": \"1717fd1c-a316-4067-8f86-6d3a1f8f7e6e\",\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerTopics/PSTestPartnerTopic-ps2673/eventSubscriptions/EventSubscription-ps108?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lclRvcGljcy9QU1Rlc3RQYXJ0bmVyVG9waWMtcHMyNjczL2V2ZW50U3Vic2NyaXB0aW9ucy9FdmVudFN1YnNjcmlwdGlvbi1wczEwOD9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d27af85f-d1a8-4174-9c02-44269412c84f" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "da6201cc-bc3f-4b7e-adfe-f0b5d14c0e68" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "5ec72139-df8c-409d-b1eb-d06a0a8e9ac9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182137Z:5ec72139-df8c-409d-b1eb-d06a0a8e9ac9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:21:36 GMT" + ], + "Content-Length": [ + "1027" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps8229/providers/microsoft.eventgrid/partnertopics/pstestpartnertopic-ps2673\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"queueName\": \"stogqueuedestination\",\r\n \"queueMessageTimeToLiveInSeconds\": 0\r\n },\r\n \"endpointType\": \"StorageQueue\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"CloudEventSchemaV1_0\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerTopics/PSTestPartnerTopic-ps2673/eventSubscriptions/EventSubscription-ps108\",\r\n \"name\": \"EventSubscription-ps108\",\r\n \"type\": \"Microsoft.EventGrid/partnerTopics/eventSubscriptions\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerTopics/PSTestPartnerTopic-ps2673/eventSubscriptions/EventSubscription-ps108?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lclRvcGljcy9QU1Rlc3RQYXJ0bmVyVG9waWMtcHMyNjczL2V2ZW50U3Vic2NyaXB0aW9ucy9FdmVudFN1YnNjcmlwdGlvbi1wczEwOD9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7fd44792-caa0-49e6-b5dd-c9ad47513e52" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b5693ac1-6e3a-418d-9bdc-034e4a810ea4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "1178e535-04a6-4d09-a93d-16812fba6246" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182137Z:1178e535-04a6-4d09-a93d-16812fba6246" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:21:37 GMT" + ], + "Content-Length": [ + "1027" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps8229/providers/microsoft.eventgrid/partnertopics/pstestpartnertopic-ps2673\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"queueName\": \"stogqueuedestination\",\r\n \"queueMessageTimeToLiveInSeconds\": 0\r\n },\r\n \"endpointType\": \"StorageQueue\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"CloudEventSchemaV1_0\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerTopics/PSTestPartnerTopic-ps2673/eventSubscriptions/EventSubscription-ps108\",\r\n \"name\": \"EventSubscription-ps108\",\r\n \"type\": \"Microsoft.EventGrid/partnerTopics/eventSubscriptions\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerTopics/PSTestPartnerTopic-ps2673/eventSubscriptions/EventSubscription-ps108?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lclRvcGljcy9QU1Rlc3RQYXJ0bmVyVG9waWMtcHMyNjczL2V2ZW50U3Vic2NyaXB0aW9ucy9FdmVudFN1YnNjcmlwdGlvbi1wczEwOD9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "de8621ea-641e-42c7-aab6-7241a31aa356" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d2748e54-4c5c-4e1f-a0c5-765a2485507a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "f625099e-8ab1-4008-ab57-d2b0784c634b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182201Z:f625099e-8ab1-4008-ab57-d2b0784c634b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:22:01 GMT" + ], + "Content-Length": [ + "1039" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps8229/providers/microsoft.eventgrid/partnertopics/pstestpartnertopic-ps2673\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"queueName\": \"stogqueuedestination\",\r\n \"queueMessageTimeToLiveInSeconds\": 0\r\n },\r\n \"endpointType\": \"StorageQueue\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"CloudEventSchemaV1_0\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerTopics/PSTestPartnerTopic-ps2673/eventSubscriptions/EventSubscription-ps108\",\r\n \"name\": \"EventSubscription-ps108\",\r\n \"type\": \"Microsoft.EventGrid/partnerTopics/eventSubscriptions\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerTopics/PSTestPartnerTopic-ps2673/eventSubscriptions/EventSubscription-ps5788?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lclRvcGljcy9QU1Rlc3RQYXJ0bmVyVG9waWMtcHMyNjczL2V2ZW50U3Vic2NyaXB0aW9ucy9FdmVudFN1YnNjcmlwdGlvbi1wczU3ODg/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a3b4eb9-26a0-4f37-b6f2-f4c4dadc5275" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "489" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"StorageQueue\",\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"queueName\": \"stogqueuedestination\",\r\n \"queueMessageTimeToLiveInSeconds\": 0\r\n }\r\n },\r\n \"filter\": {\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/93FCF8D5-608C-45B9-A812-0A2311639E8D?api-version=2022-06-15" + ], + "x-ms-request-id": [ + "51b707b5-d2fb-4175-bffe-c3d7b517a332" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "5b0df454-13d5-49c3-8dbd-353eda987ac5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182138Z:5b0df454-13d5-49c3-8dbd-353eda987ac5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:21:38 GMT" + ], + "Content-Length": [ + "938" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerTopics/PSTestPartnerTopic-ps2673\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"queueName\": \"stogqueuedestination\",\r\n \"queueMessageTimeToLiveInSeconds\": 0\r\n },\r\n \"endpointType\": \"StorageQueue\"\r\n },\r\n \"filter\": {\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerTopics/PSTestPartnerTopic-ps2673/eventSubscriptions/EventSubscription-ps5788\",\r\n \"name\": \"EventSubscription-ps5788\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics/eventSubscriptions\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/93FCF8D5-608C-45B9-A812-0A2311639E8D?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvOTNGQ0Y4RDUtNjA4Qy00NUI5LUE4MTItMEEyMzExNjM5RThEP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a3b4eb9-26a0-4f37-b6f2-f4c4dadc5275" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0419c57f-ed3a-4a66-89b9-205e1cd1124c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "f62acf78-3cd8-400a-963a-d8507d38a568" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182149Z:f62acf78-3cd8-400a-963a-d8507d38a568" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:21:48 GMT" + ], + "Content-Length": [ + "286" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/93FCF8D5-608C-45B9-A812-0A2311639E8D?api-version=2022-06-15\",\r\n \"name\": \"93fcf8d5-608c-45b9-a812-0a2311639e8d\",\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerTopics/PSTestPartnerTopic-ps2673/eventSubscriptions/EventSubscription-ps5788?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lclRvcGljcy9QU1Rlc3RQYXJ0bmVyVG9waWMtcHMyNjczL2V2ZW50U3Vic2NyaXB0aW9ucy9FdmVudFN1YnNjcmlwdGlvbi1wczU3ODg/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a3b4eb9-26a0-4f37-b6f2-f4c4dadc5275" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fe815e27-bf10-463c-bb43-c7c7be99164e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "7610d925-ce60-4c33-b0d2-2e5261dc2b6d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182149Z:7610d925-ce60-4c33-b0d2-2e5261dc2b6d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:21:48 GMT" + ], + "Content-Length": [ + "1029" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps8229/providers/microsoft.eventgrid/partnertopics/pstestpartnertopic-ps2673\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"queueName\": \"stogqueuedestination\",\r\n \"queueMessageTimeToLiveInSeconds\": 0\r\n },\r\n \"endpointType\": \"StorageQueue\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"CloudEventSchemaV1_0\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerTopics/PSTestPartnerTopic-ps2673/eventSubscriptions/EventSubscription-ps5788\",\r\n \"name\": \"EventSubscription-ps5788\",\r\n \"type\": \"Microsoft.EventGrid/partnerTopics/eventSubscriptions\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerTopics/PSTestPartnerTopic-ps2673/eventSubscriptions?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lclRvcGljcy9QU1Rlc3RQYXJ0bmVyVG9waWMtcHMyNjczL2V2ZW50U3Vic2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4ba98591-3566-403c-b51d-05d32bb5fdba" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8eef9232-dd0e-41f7-9f0f-0c5ab8a61031" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "efc51df7-ae23-413f-8418-f16c51d5a6b4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182149Z:efc51df7-ae23-413f-8418-f16c51d5a6b4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:21:49 GMT" + ], + "Content-Length": [ + "2069" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps8229/providers/microsoft.eventgrid/partnertopics/pstestpartnertopic-ps2673\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"queueName\": \"stogqueuedestination\",\r\n \"queueMessageTimeToLiveInSeconds\": 0\r\n },\r\n \"endpointType\": \"StorageQueue\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"CloudEventSchemaV1_0\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerTopics/PSTestPartnerTopic-ps2673/eventSubscriptions/EventSubscription-ps108\",\r\n \"name\": \"EventSubscription-ps108\",\r\n \"type\": \"Microsoft.EventGrid/partnerTopics/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps8229/providers/microsoft.eventgrid/partnertopics/pstestpartnertopic-ps2673\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"queueName\": \"stogqueuedestination\",\r\n \"queueMessageTimeToLiveInSeconds\": 0\r\n },\r\n \"endpointType\": \"StorageQueue\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"CloudEventSchemaV1_0\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerTopics/PSTestPartnerTopic-ps2673/eventSubscriptions/EventSubscription-ps5788\",\r\n \"name\": \"EventSubscription-ps5788\",\r\n \"type\": \"Microsoft.EventGrid/partnerTopics/eventSubscriptions\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerTopics/PSTestPartnerTopic-ps2673/eventSubscriptions?api-version=2022-06-15&$top=1", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lclRvcGljcy9QU1Rlc3RQYXJ0bmVyVG9waWMtcHMyNjczL2V2ZW50U3Vic2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1JiR0b3A9MQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fab856bc-6eae-44c2-ba6d-cefbf0877e1c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c19036bf-02da-4ffa-816c-858b00cdfa03" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "b14c6928-b534-450c-8887-42e0689b3043" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182150Z:b14c6928-b534-450c-8887-42e0689b3043" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:21:49 GMT" + ], + "Content-Length": [ + "1516" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps8229/providers/microsoft.eventgrid/partnertopics/pstestpartnertopic-ps2673\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"queueName\": \"stogqueuedestination\",\r\n \"queueMessageTimeToLiveInSeconds\": 0\r\n },\r\n \"endpointType\": \"StorageQueue\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"CloudEventSchemaV1_0\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerTopics/PSTestPartnerTopic-ps2673/eventSubscriptions/EventSubscription-ps108\",\r\n \"name\": \"EventSubscription-ps108\",\r\n \"type\": \"Microsoft.EventGrid/partnerTopics/eventSubscriptions\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerTopics/PSTestPartnerTopic-ps2673/eventSubscriptions?api-version=2022-06-15&$skiptoken=%5b%7b%22token%22%3a%22%2bRID%3a%7egx8DAIT06wDa20sAAAAAAA%3d%3d%23RT%3a1%23TRC%3a1%23ISV%3a2%23IEO%3a65551%23QCF%3a8%23FPC%3aAdrbSwAAAAAA29tLAAAAAAA%3d%22%2c%22range%22%3a%7b%22min%22%3a%22%22%2c%22max%22%3a%22FF%22%7d%7d%5d&$top=1\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerTopics/PSTestPartnerTopic-ps2673/eventSubscriptions?api-version=2022-06-15&$skiptoken=%5b%7B%22token%22%3a%22%2bRID%3a~gx8DAIT06wDa20sAAAAAAA%3d%3d%23RT%3a1%23TRC%3a1%23ISV%3a2%23IEO%3a65551%23QCF%3a8%23FPC%3aAdrbSwAAAAAA29tLAAAAAAA%3d%22%2c%22range%22%3a%7B%22min%22%3a%22%22%2c%22max%22%3a%22FF%22%7D%7D%5d&$top=1", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lclRvcGljcy9QU1Rlc3RQYXJ0bmVyVG9waWMtcHMyNjczL2V2ZW50U3Vic2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1JiRza2lwdG9rZW49JTViJTdCJTIydG9rZW4lMjIlM2ElMjIlMmJSSUQlM2F+Z3g4REFJVDA2d0RhMjBzQUFBQUFBQSUzZCUzZCUyM1JUJTNhMSUyM1RSQyUzYTElMjNJU1YlM2EyJTIzSUVPJTNhNjU1NTElMjNRQ0YlM2E4JTIzRlBDJTNhQWRyYlN3QUFBQUFBMjl0TEFBQUFBQUElM2QlMjIlMmMlMjJyYW5nZSUyMiUzYSU3QiUyMm1pbiUyMiUzYSUyMiUyMiUyYyUyMm1heCUyMiUzYSUyMkZGJTIyJTdEJTdEJTVkJiR0b3A9MQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eae3dfaa-c818-4423-892a-ffa0266e3cdd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "19ab9527-fb19-4feb-b6ff-29791824eabe" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "11d445ab-36da-4a0f-9d20-c7a07da64f8c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182150Z:11d445ab-36da-4a0f-9d20-c7a07da64f8c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:21:49 GMT" + ], + "Content-Length": [ + "1041" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps8229/providers/microsoft.eventgrid/partnertopics/pstestpartnertopic-ps2673\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"queueName\": \"stogqueuedestination\",\r\n \"queueMessageTimeToLiveInSeconds\": 0\r\n },\r\n \"endpointType\": \"StorageQueue\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"CloudEventSchemaV1_0\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerTopics/PSTestPartnerTopic-ps2673/eventSubscriptions/EventSubscription-ps5788\",\r\n \"name\": \"EventSubscription-ps5788\",\r\n \"type\": \"Microsoft.EventGrid/partnerTopics/eventSubscriptions\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerTopics/PSTestPartnerTopic-ps2673/eventSubscriptions/EventSubscription-ps108?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lclRvcGljcy9QU1Rlc3RQYXJ0bmVyVG9waWMtcHMyNjczL2V2ZW50U3Vic2NyaXB0aW9ucy9FdmVudFN1YnNjcmlwdGlvbi1wczEwOD9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", + "RequestMethod": "PATCH", + "RequestHeaders": { + "x-ms-client-request-id": [ + "de8621ea-641e-42c7-aab6-7241a31aa356" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "155" + ] + }, + "RequestBody": "{\r\n \"filter\": {\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ]\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E427FDCE-7181-46E0-B45B-C37E081A1388?api-version=2022-06-15" + ], + "x-ms-request-id": [ + "c98e04ed-1293-4379-90b3-8d58c865ae25" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "d5bd5afd-0ade-4aa9-9367-4caed6b322e9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182151Z:d5bd5afd-0ade-4aa9-9367-4caed6b322e9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:21:51 GMT" + ], + "Content-Length": [ + "1037" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerTopics/PSTestPartnerTopic-ps2673\",\r\n \"provisioningState\": \"Updating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"queueName\": \"stogqueuedestination\",\r\n \"queueMessageTimeToLiveInSeconds\": 0\r\n },\r\n \"endpointType\": \"StorageQueue\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"CloudEventSchemaV1_0\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerTopics/PSTestPartnerTopic-ps2673/eventSubscriptions/EventSubscription-ps108\",\r\n \"name\": \"EventSubscription-ps108\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics/eventSubscriptions\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E427FDCE-7181-46E0-B45B-C37E081A1388?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRTQyN0ZEQ0UtNzE4MS00NkUwLUI0NUItQzM3RTA4MUExMzg4P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "de8621ea-641e-42c7-aab6-7241a31aa356" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "40538551-13a4-46f4-a32d-a06979ad4b5b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "9d335714-a041-44da-882c-7a2499567280" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182201Z:9d335714-a041-44da-882c-7a2499567280" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:22:01 GMT" + ], + "Content-Length": [ + "286" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E427FDCE-7181-46E0-B45B-C37E081A1388?api-version=2022-06-15\",\r\n \"name\": \"e427fdce-7181-46e0-b45b-c37e081a1388\",\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerTopics/PSTestPartnerTopic-ps2673/eventSubscriptions/EventSubscription-ps108?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lclRvcGljcy9QU1Rlc3RQYXJ0bmVyVG9waWMtcHMyNjczL2V2ZW50U3Vic2NyaXB0aW9ucy9FdmVudFN1YnNjcmlwdGlvbi1wczEwOD9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "db96eb08-c636-4fe7-8949-ee3ca53369ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/4D4B4365-3405-480E-A13B-C031D4639A6A?api-version=2022-06-15" + ], + "Retry-After": [ + "10" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4D4B4365-3405-480E-A13B-C031D4639A6A?api-version=2022-06-15" + ], + "x-ms-request-id": [ + "21e4d413-acbb-4a0b-b073-988f55efaf97" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "300ab129-9c42-4d1a-8aa4-52a5bf2fe6bf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182203Z:300ab129-9c42-4d1a-8aa4-52a5bf2fe6bf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:22:02 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4D4B4365-3405-480E-A13B-C031D4639A6A?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNEQ0QjQzNjUtMzQwNS00ODBFLUExM0ItQzAzMUQ0NjM5QTZBP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "db96eb08-c636-4fe7-8949-ee3ca53369ac" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "805f68bd-ed4a-4dff-a8ca-188c3b4ab9db" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "d256f3cb-9d57-479d-b7a4-23333169f9e1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182213Z:d256f3cb-9d57-479d-b7a4-23333169f9e1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:22:12 GMT" + ], + "Content-Length": [ + "286" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4D4B4365-3405-480E-A13B-C031D4639A6A?api-version=2022-06-15\",\r\n \"name\": \"4d4b4365-3405-480e-a13b-c031d4639a6a\",\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/4D4B4365-3405-480E-A13B-C031D4639A6A?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNEQ0QjQzNjUtMzQwNS00ODBFLUExM0ItQzAzMUQ0NjM5QTZBP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "db96eb08-c636-4fe7-8949-ee3ca53369ac" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cdcf074f-ffdd-4f3b-a823-01c7a8d0c9b0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "172d9216-c2a1-4d10-bdb4-6302b59ed2d0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182213Z:172d9216-c2a1-4d10-bdb4-6302b59ed2d0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:22:12 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerTopics/PSTestPartnerTopic-ps2673/eventSubscriptions/EventSubscription-ps5788?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lclRvcGljcy9QU1Rlc3RQYXJ0bmVyVG9waWMtcHMyNjczL2V2ZW50U3Vic2NyaXB0aW9ucy9FdmVudFN1YnNjcmlwdGlvbi1wczU3ODg/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6b6dafc1-55db-4a4b-9e17-96b870eef1d1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/765D17A1-1582-4FA2-98D0-E7FB36D1B6E7?api-version=2022-06-15" + ], + "Retry-After": [ + "10" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/765D17A1-1582-4FA2-98D0-E7FB36D1B6E7?api-version=2022-06-15" + ], + "x-ms-request-id": [ + "ec595b9c-cdd9-4456-a22b-b4abb1fe9930" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "cc44598e-6d27-4669-bd95-41a807c3b19f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182214Z:cc44598e-6d27-4669-bd95-41a807c3b19f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:22:13 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/765D17A1-1582-4FA2-98D0-E7FB36D1B6E7?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNzY1RDE3QTEtMTU4Mi00RkEyLTk4RDAtRTdGQjM2RDFCNkU3P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6b6dafc1-55db-4a4b-9e17-96b870eef1d1" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "34e552f8-4da0-471f-bf64-9b1f7f6ae3f1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "16aff182-037e-4d91-8a1a-feee62818e3e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182224Z:16aff182-037e-4d91-8a1a-feee62818e3e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:22:23 GMT" + ], + "Content-Length": [ + "286" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/765D17A1-1582-4FA2-98D0-E7FB36D1B6E7?api-version=2022-06-15\",\r\n \"name\": \"765d17a1-1582-4fa2-98d0-e7fb36d1b6e7\",\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/765D17A1-1582-4FA2-98D0-E7FB36D1B6E7?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNzY1RDE3QTEtMTU4Mi00RkEyLTk4RDAtRTdGQjM2RDFCNkU3P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6b6dafc1-55db-4a4b-9e17-96b870eef1d1" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9058aee4-48b5-4fa9-9b18-cc7a23b9bb2e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "f169be21-69aa-493c-8649-e9ce31a5f286" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182224Z:f169be21-69aa-493c-8649-e9ce31a5f286" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:22:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.EventGrid/verifiedPartners?api-version=2022-06-15", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3ZlcmlmaWVkUGFydG5lcnM/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1355966c-9a4d-4a6d-8c32-b287f833dd63" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "906dfd8e-820f-4cd0-9dce-42d4fe85d637" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "d93672e8-0551-4c2e-a946-cf2dab1c8fad" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182225Z:d93672e8-0551-4c2e-a946-cf2dab1c8fad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:22:24 GMT" + ], + "Content-Length": [ + "1684" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"partnerRegistrationImmutableId\": \"804a11ca-ce9b-4158-8e94-3c8dc7a072ec\",\r\n \"organizationName\": \"Auth0, Inc.\",\r\n \"partnerDisplayName\": \"Auth0\",\r\n \"partnerTopicDetails\": {\r\n \"description\": \"Auth0, the identity platform for application builders, provides developers and enterprises with the building blocks they need to secure their applications.\",\r\n \"longDescription\": \"Partnering with Event Grid allows our customers to leverage events emitted by Auth0’s system to accomplish a number of use cases, from engaging with users in meaningful and custom ways after the authentication to automating security and infrastructure tasks.\\nThe Auth0 Partner Topic integration allows you to stream your Auth0 log events with high reliability into Azure for consumption with any of your favorite Azure resources. This will allow you to react to events, gain insights, monitor for security issues, and interact with other powerful data pipelines. In order to create an Auth0 Partner topic:\\n1. Note the Azure Subscription and Resource Group you want the Partner Topic to be created in.\\n2.Log in to your Auth0 account dashboard.\\n3.Navigate to Logs > Streams, click “Create Stream” and select the “Azure Event Grid” event stream.\\n4. Provide the Azure Subscription ID, Resource Group and other required information and click “Save”.\\n5. View your pending Partner Topics in Azure and activate the topic to allow events to flow.\",\r\n \"setupUri\": \"https://marketplace.auth0.com/integrations/azure-log-streaming\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/providers/Microsoft.EventGrid/verifiedPartners/Auth0\",\r\n \"name\": \"Auth0\",\r\n \"type\": \"Microsoft.EventGrid/verifiedPartners\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerTopics/PSTestPartnerTopic-ps2673?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lclRvcGljcy9QU1Rlc3RQYXJ0bmVyVG9waWMtcHMyNjczP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8f5b5a87-05b4-47f4-817f-97b9663f799a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/0F2E96FD-22B8-4F54-9D21-BB76BABF8A39?api-version=2022-06-15" + ], + "Retry-After": [ + "10" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/0F2E96FD-22B8-4F54-9D21-BB76BABF8A39?api-version=2022-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "bf0fea53-8caa-44ba-a967-9a30883d0c9c" + ], + "x-ms-correlation-request-id": [ + "bf0fea53-8caa-44ba-a967-9a30883d0c9c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182226Z:bf0fea53-8caa-44ba-a967-9a30883d0c9c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:22:25 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/0F2E96FD-22B8-4F54-9D21-BB76BABF8A39?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMEYyRTk2RkQtMjJCOC00RjU0LTlEMjEtQkI3NkJBQkY4QTM5P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8f5b5a87-05b4-47f4-817f-97b9663f799a" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "67c70158-4732-4d58-928b-a5ee23d63b01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "e790b26a-6114-40e3-a99d-2f776987c3e9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182236Z:e790b26a-6114-40e3-a99d-2f776987c3e9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:22:35 GMT" + ], + "Content-Length": [ + "286" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/0F2E96FD-22B8-4F54-9D21-BB76BABF8A39?api-version=2022-06-15\",\r\n \"name\": \"0f2e96fd-22b8-4f54-9d21-bb76babf8a39\",\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/0F2E96FD-22B8-4F54-9D21-BB76BABF8A39?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMEYyRTk2RkQtMjJCOC00RjU0LTlEMjEtQkI3NkJBQkY4QTM5P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8f5b5a87-05b4-47f4-817f-97b9663f799a" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f8ce887f-c965-462f-8658-a7f1a4658eac" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "afe4303e-1790-4973-9101-c118ab48f839" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182236Z:afe4303e-1790-4973-9101-c118ab48f839" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:22:35 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerNamespaces/PSTestPartnerNamespace-ps9187/channels/PSTestChannel-ps5192?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lck5hbWVzcGFjZXMvUFNUZXN0UGFydG5lck5hbWVzcGFjZS1wczkxODcvY2hhbm5lbHMvUFNUZXN0Q2hhbm5lbC1wczUxOTI/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "64312e39-d6cc-4102-a406-f15f29fd81cb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "edd1bf0f-fbd9-428f-bf8a-e3ef8d7e411d" + ], + "x-ms-correlation-request-id": [ + "edd1bf0f-fbd9-428f-bf8a-e3ef8d7e411d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182237Z:edd1bf0f-fbd9-428f-bf8a-e3ef8d7e411d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:22:36 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerConfigurations/default?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lckNvbmZpZ3VyYXRpb25zL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8229cecf-3e71-4394-8029-8906c2dc1dba" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "0ebc9635-144a-4cbf-9266-004033e0ef23" + ], + "x-ms-correlation-request-id": [ + "0ebc9635-144a-4cbf-9266-004033e0ef23" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182238Z:0ebc9635-144a-4cbf-9266-004033e0ef23" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:22:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerRegistrations/PSTestPartnerRegistration-ps6611?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lclJlZ2lzdHJhdGlvbnMvUFNUZXN0UGFydG5lclJlZ2lzdHJhdGlvbi1wczY2MTE/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9b900f28-e861-4e5a-a616-3c8eba0766ff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ca4ae3ae-8445-4f52-96b0-258863e43e48" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "b8e21699-bcdb-4eac-a005-da96f5939648" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182240Z:b8e21699-bcdb-4eac-a005-da96f5939648" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:22:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8229/providers/Microsoft.EventGrid/partnerNamespaces/PSTestPartnerNamespace-ps9187?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvcGFydG5lck5hbWVzcGFjZXMvUFNUZXN0UGFydG5lck5hbWVzcGFjZS1wczkxODc/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "73621355-d29f-4c5f-8d99-c320552a8b29" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/60E5A239-5A93-4778-A2AD-8CEC1262160C?api-version=2022-06-15" + ], + "Retry-After": [ + "10" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/60E5A239-5A93-4778-A2AD-8CEC1262160C?api-version=2022-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "0690cafd-e682-47cd-a427-4ed403fe2cba" + ], + "x-ms-correlation-request-id": [ + "0690cafd-e682-47cd-a427-4ed403fe2cba" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182241Z:0690cafd-e682-47cd-a427-4ed403fe2cba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:22:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/60E5A239-5A93-4778-A2AD-8CEC1262160C?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNjBFNUEyMzktNUE5My00Nzc4LUEyQUQtOENFQzEyNjIxNjBDP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "73621355-d29f-4c5f-8d99-c320552a8b29" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "21e243e6-bd0e-4d8d-97ed-53b3a22421f8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "8f98cd7f-d9b6-4031-a5e7-4844f00c1582" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182251Z:8f98cd7f-d9b6-4031-a5e7-4844f00c1582" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:22:50 GMT" + ], + "Content-Length": [ + "286" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/60E5A239-5A93-4778-A2AD-8CEC1262160C?api-version=2022-06-15\",\r\n \"name\": \"60e5a239-5a93-4778-a2ad-8cec1262160c\",\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/60E5A239-5A93-4778-A2AD-8CEC1262160C?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNjBFNUEyMzktNUE5My00Nzc4LUEyQUQtOENFQzEyNjIxNjBDP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "73621355-d29f-4c5f-8d99-c320552a8b29" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2f3a2ad8-e1d5-49e3-8a66-3d5e7f058923" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "63c89407-bc68-4057-90a7-3dc227506c49" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182251Z:63c89407-bc68-4057-90a7-3dc227506c49" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:22:50 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps8229?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczgyMjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "120857b6-2f7f-4a2c-b5a5-6cb0fa0eabf6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.63" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzgyMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "19639ef5-446f-4c09-92db-00250e936271" + ], + "x-ms-correlation-request-id": [ + "19639ef5-446f-4c09-92db-00250e936271" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182253Z:19639ef5-446f-4c09-92db-00250e936271" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:22:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzgyMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpneU1qa3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.63" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "119a354f-8584-40b8-aa1f-2bfce07c5f9c" + ], + "x-ms-correlation-request-id": [ + "119a354f-8584-40b8-aa1f-2bfce07c5f9c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182308Z:119a354f-8584-40b8-aa1f-2bfce07c5f9c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:23:08 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzgyMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpneU1qa3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.63" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "28690776-94cd-4dcc-9dd1-3258d8758a78" + ], + "x-ms-correlation-request-id": [ + "28690776-94cd-4dcc-9dd1-3258d8758a78" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182308Z:28690776-94cd-4dcc-9dd1-3258d8758a78" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:23:08 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps8029?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczgwMjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4d2be8c2-a0ad-4a38-982a-5d21d050d920" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.63" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzgwMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "9e9284c0-5b47-41a5-8cb9-6ee2dd18d20f" + ], + "x-ms-correlation-request-id": [ + "9e9284c0-5b47-41a5-8cb9-6ee2dd18d20f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182309Z:9e9284c0-5b47-41a5-8cb9-6ee2dd18d20f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:23:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzgwMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpnd01qa3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.63" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "97abc193-7325-40f9-8d57-900a4b002d3e" + ], + "x-ms-correlation-request-id": [ + "97abc193-7325-40f9-8d57-900a4b002d3e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182325Z:97abc193-7325-40f9-8d57-900a4b002d3e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:23:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzgwMjktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpnd01qa3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.63" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "d27db53d-5aa3-4aab-8286-298db23322f6" + ], + "x-ms-correlation-request-id": [ + "d27db53d-5aa3-4aab-8286-298db23322f6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221018T182325Z:d27db53d-5aa3-4aab-8286-298db23322f6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 18 Oct 2022 18:23:25 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "": [ + "ps6611", + "ps9187", + "ps5192", + "ps2673", + "ps108", + "ps5788", + "ps9053", + "ps8229", + "ps8029", + "ps6440" + ] + }, + "Variables": { + "SubscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4" + } +} \ No newline at end of file diff --git a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Test.ScenarioTests.SystemTopicEventSubscriptionTests/SystemTopicEventSubscriptionTests_CRUDTest.json b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Test.ScenarioTests.SystemTopicEventSubscriptionTests/SystemTopicEventSubscriptionTests_CRUDTest.json index d2e5a84d7876..ddff2cdf3bc0 100644 --- a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Test.ScenarioTests.SystemTopicEventSubscriptionTests/SystemTopicEventSubscriptionTests_CRUDTest.json +++ b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Test.ScenarioTests.SystemTopicEventSubscriptionTests/SystemTopicEventSubscriptionTests_CRUDTest.json @@ -1,22 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps8054?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczgwNTQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps3800?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczM4MDA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "96419637-d88f-4675-820b-6a2c43adb522" + "003c9477-01cf-403c-8340-178e7a566b89" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,6 +24,7 @@ "35" ] }, + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "37fd0543-ca7c-416d-9657-72ceb6e4f825" + "2b878eaa-b2f2-435c-b37f-446fb2875b48" ], "x-ms-correlation-request-id": [ - "37fd0543-ca7c-416d-9657-72ceb6e4f825" + "2b878eaa-b2f2-435c-b37f-446fb2875b48" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224450Z:37fd0543-ca7c-416d-9657-72ceb6e4f825" + "WESTUS2:20221006T015723Z:2b878eaa-b2f2-435c-b37f-446fb2875b48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:44:50 GMT" + "Thu, 06 Oct 2022 01:57:22 GMT" ], "Content-Length": [ "186" @@ -63,26 +63,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054\",\r\n \"name\": \"RGName-ps8054\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800\",\r\n \"name\": \"RGName-ps3800\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps8707?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczg3MDc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps8972?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczg5NzI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "215cde60-8d68-4f64-85f2-41679b8e8329" + "365bce7c-e944-45e2-9c7d-eac5a432a4e2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ], "Content-Type": [ "application/json; charset=utf-8" @@ -91,6 +90,7 @@ "35" ] }, + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "e1d79401-d25c-4f6c-80bd-7c127403d445" + "587da5a7-02cb-440c-a39b-fe72b5c3619b" ], "x-ms-correlation-request-id": [ - "e1d79401-d25c-4f6c-80bd-7c127403d445" + "587da5a7-02cb-440c-a39b-fe72b5c3619b" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224451Z:e1d79401-d25c-4f6c-80bd-7c127403d445" + "WESTUS2:20221006T015724Z:587da5a7-02cb-440c-a39b-fe72b5c3619b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,7 +117,7 @@ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:44:51 GMT" + "Thu, 06 Oct 2022 01:57:24 GMT" ], "Content-Length": [ "186" @@ -129,26 +129,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8707\",\r\n \"name\": \"RGName-ps8707\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8972\",\r\n \"name\": \"RGName-ps8972\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.Storage/checkNameAvailability?api-version=2021-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.Storage/checkNameAvailability?api-version=2022-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMi0wNS0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"storagenameps2310\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f799f195-17b1-4ddd-9e4f-848cc1c4cc81" + "9db9c9e7-3f41-4d32-9437-6795652d3a5c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.1.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.9.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -157,6 +156,7 @@ "83" ] }, + "RequestBody": "{\r\n \"name\": \"storagenameps9368\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -165,7 +165,7 @@ "no-cache" ], "x-ms-request-id": [ - "626d2fb7-60ab-46fd-b786-e5a6d3592429" + "7074d0d4-f131-4f3c-aa8b-1b4b8c986f43" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,16 +177,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "e435819b-1a35-48f8-a056-b95fc596e554" + "396053da-54d4-4d58-a502-0922ca456a9a" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224452Z:e435819b-1a35-48f8-a056-b95fc596e554" + "WESTUS2:20221006T015725Z:396053da-54d4-4d58-a502-0922ca456a9a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:44:51 GMT" + "Thu, 06 Oct 2022 01:57:25 GMT" ], "Content-Length": [ "22" @@ -202,22 +202,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.Storage/storageAccounts/storagenameps2310?api-version=2021-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9yYWdlbmFtZXBzMjMxMD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.Storage/storageAccounts/storagenameps9368?api-version=2022-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczM4MDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9yYWdlbmFtZXBzOTM2OD9hcGktdmVyc2lvbj0yMDIyLTA1LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f799f195-17b1-4ddd-9e4f-848cc1c4cc81" + "9db9c9e7-3f41-4d32-9437-6795652d3a5c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.1.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.9.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -226,6 +225,7 @@ "105" ] }, + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -234,13 +234,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/12356cf6-c004-4684-83cd-ca9fc20c37f9?monitor=true&api-version=2021-08-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/946ccbd7-8c6c-4d62-82f1-81fbde95538e?monitor=true&api-version=2022-05-01" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "12356cf6-c004-4684-83cd-ca9fc20c37f9" + "946ccbd7-8c6c-4d62-82f1-81fbde95538e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -252,16 +252,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "15d72c6e-9ad1-4b0c-8e0f-17907cb07487" + "4aca88c3-4238-423c-9b95-aad3ec3a3bb2" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224456Z:15d72c6e-9ad1-4b0c-8e0f-17907cb07487" + "WESTUS2:20221006T015729Z:4aca88c3-4238-423c-9b95-aad3ec3a3bb2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:44:56 GMT" + "Thu, 06 Oct 2022 01:57:29 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -277,21 +277,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/12356cf6-c004-4684-83cd-ca9fc20c37f9?monitor=true&api-version=2021-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMTIzNTZjZjYtYzAwNC00Njg0LTgzY2QtY2E5ZmMyMGMzN2Y5P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/946ccbd7-8c6c-4d62-82f1-81fbde95538e?monitor=true&api-version=2022-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvOTQ2Y2NiZDctOGM2Yy00ZDYyLTgyZjEtODFmYmRlOTU1MzhlP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDIyLTA1LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f799f195-17b1-4ddd-9e4f-848cc1c4cc81" + "9db9c9e7-3f41-4d32-9437-6795652d3a5c" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.1.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.9.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -300,7 +300,7 @@ "no-cache" ], "x-ms-request-id": [ - "c9ce82b5-9686-489d-98ba-7470897b07b4" + "ce537b46-965e-4d27-973d-1463e9cea89d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -312,16 +312,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "eb418e4b-f4be-4dc8-b9a8-9ccdccb71248" + "72ab82d5-af03-48db-9208-fd15d35ddf8b" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224513Z:eb418e4b-f4be-4dc8-b9a8-9ccdccb71248" + "WESTUS2:20221006T015747Z:72ab82d5-af03-48db-9208-fd15d35ddf8b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:45:13 GMT" + "Thu, 06 Oct 2022 01:57:46 GMT" ], "Content-Length": [ "1440" @@ -333,28 +333,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.Storage/storageAccounts/storagenameps2310\",\r\n \"name\": \"storagenameps2310\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"keyCreationTime\": {\r\n \"key1\": \"2022-05-05T22:44:54.4020526Z\",\r\n \"key2\": \"2022-05-05T22:44:54.4020526Z\"\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"minimumTlsVersion\": \"TLS1_0\",\r\n \"allowBlobPublicAccess\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2022-05-05T22:44:54.4020526Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2022-05-05T22:44:54.4020526Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2022-05-05T22:44:54.3083082Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://storagenameps2310.dfs.core.windows.net/\",\r\n \"web\": \"https://storagenameps2310.z4.web.core.windows.net/\",\r\n \"blob\": \"https://storagenameps2310.blob.core.windows.net/\",\r\n \"queue\": \"https://storagenameps2310.queue.core.windows.net/\",\r\n \"table\": \"https://storagenameps2310.table.core.windows.net/\",\r\n \"file\": \"https://storagenameps2310.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.Storage/storageAccounts/storagenameps9368\",\r\n \"name\": \"storagenameps9368\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"keyCreationTime\": {\r\n \"key1\": \"2022-10-06T01:57:27.6473809Z\",\r\n \"key2\": \"2022-10-06T01:57:27.6473809Z\"\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"minimumTlsVersion\": \"TLS1_0\",\r\n \"allowBlobPublicAccess\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2022-10-06T01:57:27.6473809Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2022-10-06T01:57:27.6473809Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2022-10-06T01:57:27.5692728Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://storagenameps9368.dfs.core.windows.net/\",\r\n \"web\": \"https://storagenameps9368.z4.web.core.windows.net/\",\r\n \"blob\": \"https://storagenameps9368.blob.core.windows.net/\",\r\n \"queue\": \"https://storagenameps9368.queue.core.windows.net/\",\r\n \"table\": \"https://storagenameps9368.table.core.windows.net/\",\r\n \"file\": \"https://storagenameps9368.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.Storage/storageAccounts/storagenameps2310?api-version=2021-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9yYWdlbmFtZXBzMjMxMD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.Storage/storageAccounts/storagenameps9368?api-version=2022-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczM4MDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9yYWdlbmFtZXBzOTM2OD9hcGktdmVyc2lvbj0yMDIyLTA1LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f799f195-17b1-4ddd-9e4f-848cc1c4cc81" + "9db9c9e7-3f41-4d32-9437-6795652d3a5c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.1.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.9.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -363,7 +363,7 @@ "no-cache" ], "x-ms-request-id": [ - "768bded8-3042-4164-acd4-eb972181b94d" + "c47aeafb-02d7-4ed0-b82a-46af3007cf6b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -375,16 +375,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "3bde6c08-dd06-48a2-b7a0-44520e055c8c" + "d4cd31ed-0e9b-493a-82f7-2b63fb1caa01" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224514Z:3bde6c08-dd06-48a2-b7a0-44520e055c8c" + "WESTUS2:20221006T015747Z:d4cd31ed-0e9b-493a-82f7-2b63fb1caa01" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:45:13 GMT" + "Thu, 06 Oct 2022 01:57:46 GMT" ], "Content-Length": [ "1440" @@ -396,28 +396,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.Storage/storageAccounts/storagenameps2310\",\r\n \"name\": \"storagenameps2310\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"keyCreationTime\": {\r\n \"key1\": \"2022-05-05T22:44:54.4020526Z\",\r\n \"key2\": \"2022-05-05T22:44:54.4020526Z\"\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"minimumTlsVersion\": \"TLS1_0\",\r\n \"allowBlobPublicAccess\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2022-05-05T22:44:54.4020526Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2022-05-05T22:44:54.4020526Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2022-05-05T22:44:54.3083082Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://storagenameps2310.dfs.core.windows.net/\",\r\n \"web\": \"https://storagenameps2310.z4.web.core.windows.net/\",\r\n \"blob\": \"https://storagenameps2310.blob.core.windows.net/\",\r\n \"queue\": \"https://storagenameps2310.queue.core.windows.net/\",\r\n \"table\": \"https://storagenameps2310.table.core.windows.net/\",\r\n \"file\": \"https://storagenameps2310.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.Storage/storageAccounts/storagenameps9368\",\r\n \"name\": \"storagenameps9368\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"keyCreationTime\": {\r\n \"key1\": \"2022-10-06T01:57:27.6473809Z\",\r\n \"key2\": \"2022-10-06T01:57:27.6473809Z\"\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"minimumTlsVersion\": \"TLS1_0\",\r\n \"allowBlobPublicAccess\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2022-10-06T01:57:27.6473809Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2022-10-06T01:57:27.6473809Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2022-10-06T01:57:27.5692728Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://storagenameps9368.dfs.core.windows.net/\",\r\n \"web\": \"https://storagenameps9368.z4.web.core.windows.net/\",\r\n \"blob\": \"https://storagenameps9368.blob.core.windows.net/\",\r\n \"queue\": \"https://storagenameps9368.queue.core.windows.net/\",\r\n \"table\": \"https://storagenameps9368.table.core.windows.net/\",\r\n \"file\": \"https://storagenameps9368.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.Storage/storageAccounts/storagenameps2310?api-version=2021-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9yYWdlbmFtZXBzMjMxMD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.Storage/storageAccounts/storagenameps9368?api-version=2022-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczM4MDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9yYWdlbmFtZXBzOTM2OD9hcGktdmVyc2lvbj0yMDIyLTA1LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d97dcb6-fecb-42a2-8267-38063182e8b8" + "8c218bb4-d74f-4b0f-b4ea-59d745cb1662" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.1.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.9.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -426,7 +426,7 @@ "no-cache" ], "x-ms-request-id": [ - "94c93563-60b5-43ef-85fa-1a8d2d56833d" + "93c889b6-ee08-43c1-8efe-b6f1fd8516e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -435,19 +435,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11999" ], "x-ms-correlation-request-id": [ - "39b6ba26-eca8-4b49-af4c-2f2536431d5e" + "06105508-28a9-4dec-9260-4bcd56883756" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224623Z:39b6ba26-eca8-4b49-af4c-2f2536431d5e" + "WESTUS2:20221006T015902Z:06105508-28a9-4dec-9260-4bcd56883756" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:46:23 GMT" + "Thu, 06 Oct 2022 01:59:02 GMT" ], "Content-Length": [ "1440" @@ -459,28 +459,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.Storage/storageAccounts/storagenameps2310\",\r\n \"name\": \"storagenameps2310\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"keyCreationTime\": {\r\n \"key1\": \"2022-05-05T22:44:54.4020526Z\",\r\n \"key2\": \"2022-05-05T22:44:54.4020526Z\"\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"minimumTlsVersion\": \"TLS1_0\",\r\n \"allowBlobPublicAccess\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2022-05-05T22:44:54.4020526Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2022-05-05T22:44:54.4020526Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2022-05-05T22:44:54.3083082Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://storagenameps2310.dfs.core.windows.net/\",\r\n \"web\": \"https://storagenameps2310.z4.web.core.windows.net/\",\r\n \"blob\": \"https://storagenameps2310.blob.core.windows.net/\",\r\n \"queue\": \"https://storagenameps2310.queue.core.windows.net/\",\r\n \"table\": \"https://storagenameps2310.table.core.windows.net/\",\r\n \"file\": \"https://storagenameps2310.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.Storage/storageAccounts/storagenameps9368\",\r\n \"name\": \"storagenameps9368\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"keyCreationTime\": {\r\n \"key1\": \"2022-10-06T01:57:27.6473809Z\",\r\n \"key2\": \"2022-10-06T01:57:27.6473809Z\"\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"minimumTlsVersion\": \"TLS1_0\",\r\n \"allowBlobPublicAccess\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2022-10-06T01:57:27.6473809Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2022-10-06T01:57:27.6473809Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2022-10-06T01:57:27.5692728Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://storagenameps9368.dfs.core.windows.net/\",\r\n \"web\": \"https://storagenameps9368.z4.web.core.windows.net/\",\r\n \"blob\": \"https://storagenameps9368.blob.core.windows.net/\",\r\n \"queue\": \"https://storagenameps9368.queue.core.windows.net/\",\r\n \"table\": \"https://storagenameps9368.table.core.windows.net/\",\r\n \"file\": \"https://storagenameps9368.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.Storage/storageAccounts/storagenameps2310/listKeys?api-version=2021-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9yYWdlbmFtZXBzMjMxMC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.Storage/storageAccounts/storagenameps9368/listKeys?api-version=2022-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczM4MDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9yYWdlbmFtZXBzOTM2OC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDIyLTA1LTAx", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27a6417b-a758-42f7-bb90-27bfdb4476ef" + "0ab85192-2a32-4796-b78d-3e0f3e6ecdbe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.1.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.9.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -489,7 +489,7 @@ "no-cache" ], "x-ms-request-id": [ - "d9d07fac-039f-4121-8e9f-3ebf55579c04" + "b0dcbc07-1d3d-4d3a-b7e3-8f155cd98dbb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -501,16 +501,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "dc0d3a08-139f-4150-9e48-2f280eaf8a82" + "aa561b96-cc99-4f23-aeb5-cd0206ef22f3" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224514Z:dc0d3a08-139f-4150-9e48-2f280eaf8a82" + "WESTUS2:20221006T015747Z:aa561b96-cc99-4f23-aeb5-cd0206ef22f3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:45:13 GMT" + "Thu, 06 Oct 2022 01:57:47 GMT" ], "Content-Length": [ "380" @@ -522,28 +522,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"creationTime\": \"2022-05-05T22:44:54.4020526Z\",\r\n \"keyName\": \"key1\",\r\n \"value\": \"+F2LQiP/TO5Q/+aoo28JES1cnC72kGUjecQHYd7JS2cpXvBOL7X502bPmMgIsI7ev352GyPHxEer+AStrNauDA==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"creationTime\": \"2022-05-05T22:44:54.4020526Z\",\r\n \"keyName\": \"key2\",\r\n \"value\": \"jUYK5LIY9vBoRXH2dtnolYit+xPAHas/Hn2LXmcalbBVl6fmvENstzZXurKH8ZbgE+frYzN3mOjn+AStXIu7Sw==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"creationTime\": \"2022-10-06T01:57:27.6473809Z\",\r\n \"keyName\": \"key1\",\r\n \"value\": \"Gfv7bExBZ450C0kFmot/wdozBTmKD8AeDm4qj4IWC7Vkf+Jl858vxz7twEy5v+l8T6GH8Nf+hgH1+ASttduTGw==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"creationTime\": \"2022-10-06T01:57:27.6473809Z\",\r\n \"keyName\": \"key2\",\r\n \"value\": \"5zWx4Wy1QdsXUYkQ39XBt4/HQeCc7yEJP+19W2GiOuXcjy+z8sBKjRLkrjwT1rdqmAjMa6eZIM/n+AStwjRfsQ==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.Storage/storageAccounts/storagenameps2310/listKeys?api-version=2021-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9yYWdlbmFtZXBzMjMxMC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.Storage/storageAccounts/storagenameps9368/listKeys?api-version=2022-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczM4MDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9yYWdlbmFtZXBzOTM2OC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDIyLTA1LTAx", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "20051ce7-aaa9-4257-9dea-c89742b7a356" + "1c633f08-b5bd-4266-9208-de435238c318" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.1.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.9.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -552,7 +552,7 @@ "no-cache" ], "x-ms-request-id": [ - "37b69e8d-548c-43d1-8971-6973573e9d22" + "3065ce7e-4207-4ffb-8be8-83ce598deebb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -561,19 +561,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11998" + "11999" ], "x-ms-correlation-request-id": [ - "0f1977aa-ecd3-4a83-8811-734523e7e8e7" + "736643de-837c-4406-a015-af1b00e59c9b" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224623Z:0f1977aa-ecd3-4a83-8811-734523e7e8e7" + "WESTUS2:20221006T015902Z:736643de-837c-4406-a015-af1b00e59c9b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:46:23 GMT" + "Thu, 06 Oct 2022 01:59:01 GMT" ], "Content-Length": [ "380" @@ -585,26 +585,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"creationTime\": \"2022-05-05T22:44:54.4020526Z\",\r\n \"keyName\": \"key1\",\r\n \"value\": \"+F2LQiP/TO5Q/+aoo28JES1cnC72kGUjecQHYd7JS2cpXvBOL7X502bPmMgIsI7ev352GyPHxEer+AStrNauDA==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"creationTime\": \"2022-05-05T22:44:54.4020526Z\",\r\n \"keyName\": \"key2\",\r\n \"value\": \"jUYK5LIY9vBoRXH2dtnolYit+xPAHas/Hn2LXmcalbBVl6fmvENstzZXurKH8ZbgE+frYzN3mOjn+AStXIu7Sw==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"creationTime\": \"2022-10-06T01:57:27.6473809Z\",\r\n \"keyName\": \"key1\",\r\n \"value\": \"Gfv7bExBZ450C0kFmot/wdozBTmKD8AeDm4qj4IWC7Vkf+Jl858vxz7twEy5v+l8T6GH8Nf+hgH1+ASttduTGw==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"creationTime\": \"2022-10-06T01:57:27.6473809Z\",\r\n \"keyName\": \"key2\",\r\n \"value\": \"5zWx4Wy1QdsXUYkQ39XBt4/HQeCc7yEJP+19W2GiOuXcjy+z8sBKjRLkrjwT1rdqmAjMa6eZIM/n+AStwjRfsQ==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNDcwMj9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczM4MDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNjk4Nz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.Storage/storageAccounts/storagenameps2310\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c3ad13de-3d9c-4262-9ba5-b6a54a9be69f" + "1765f10a-d888-47f9-811e-d3deb7dd4b10" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -613,6 +612,7 @@ "275" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.Storage/storageAccounts/storagenameps9368\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -624,7 +624,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1779962a-e3b6-4faa-9767-cd6538ae7c31" + "65b0b7b3-6543-436a-ac24-aa00022539d0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -633,16 +633,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "0e6d1550-7db7-44bc-b501-afb8ef95e83e" + "e6d42e7e-6d54-48df-aa48-d8545e147f89" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224517Z:0e6d1550-7db7-44bc-b501-afb8ef95e83e" + "WESTUS2:20221006T015750Z:e6d42e7e-6d54-48df-aa48-d8545e147f89" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:45:17 GMT" + "Thu, 06 Oct 2022 01:57:49 GMT" ], "Content-Length": [ "585" @@ -654,28 +654,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.Storage/storageAccounts/storagenameps2310\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"5e479560-8755-4ae2-b81a-8f2f63116130\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702\",\r\n \"name\": \"PSTestTopic-ps4702\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.Storage/storageAccounts/storagenameps9368\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"e0993092-f82c-4fa4-b707-b180248eebd0\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987\",\r\n \"name\": \"PSTestTopic-ps6987\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNDcwMj9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczM4MDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNjk4Nz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c930b8fd-5c9e-41c0-bbff-272303f72d88" + "11ecd211-d3f9-4c40-8957-72eedefe728b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -687,7 +687,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5b77025c-a502-4066-a047-47049de1aba9" + "73140e63-b3e8-41cd-a332-3eed01e655a3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -696,16 +696,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "bc7ed09e-fc6f-4a38-aa8b-ff51075aaa65" + "0a11e22b-7033-4408-b5dd-96aea2bb0b3b" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224517Z:bc7ed09e-fc6f-4a38-aa8b-ff51075aaa65" + "WESTUS2:20221006T015750Z:0a11e22b-7033-4408-b5dd-96aea2bb0b3b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:45:17 GMT" + "Thu, 06 Oct 2022 01:57:50 GMT" ], "Content-Length": [ "585" @@ -717,26 +717,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.Storage/storageAccounts/storagenameps2310\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"5e479560-8755-4ae2-b81a-8f2f63116130\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702\",\r\n \"name\": \"PSTestTopic-ps4702\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.Storage/storageAccounts/storagenameps9368\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"e0993092-f82c-4fa4-b707-b180248eebd0\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987\",\r\n \"name\": \"PSTestTopic-ps6987\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702/eventSubscriptions/EventSubscription-ps7084?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNDcwMi9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3MDg0P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987/eventSubscriptions/EventSubscription-ps7781?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczM4MDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNjk4Ny9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3NzgxP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4d0257a8-fab5-4b1b-96f4-feed28ed1b67" + "2345dc58-8396-4420-8f48-264691069223" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -745,6 +744,7 @@ "433" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n }\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -759,28 +759,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/AEAD5174-7238-4B52-A18F-A26C73EE82CB?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/AD91F72A-BE5D-47E5-87AB-C34A4AC04F82?api-version=2022-06-15" ], "x-ms-request-id": [ - "06eb1321-3998-41a7-8628-3c14f646c1e2" + "22c6914e-4cb2-4594-a8cf-01de97a7be14" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "30cf53ac-d025-440a-a6d3-b8c29cc17bfa" + "604bb187-2023-4778-80bd-b2d433254b69" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224518Z:30cf53ac-d025-440a-a6d3-b8c29cc17bfa" + "WESTUS2:20221006T015751Z:604bb187-2023-4778-80bd-b2d433254b69" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:45:18 GMT" + "Thu, 06 Oct 2022 01:57:51 GMT" ], "Content-Length": [ "905" @@ -792,25 +792,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702/eventSubscriptions/EventSubscription-ps7084\",\r\n \"name\": \"EventSubscription-ps7084\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987/eventSubscriptions/EventSubscription-ps7781\",\r\n \"name\": \"EventSubscription-ps7781\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics/eventSubscriptions\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/AEAD5174-7238-4B52-A18F-A26C73EE82CB?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNUI0QjY1MEUtMjhCOS00NzkwLUIzQUItRERCRDg4RDcyN0M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvQUVBRDUxNzQtNzIzOC00QjUyLUExOEYtQTI2QzczRUU4MkNCP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/AD91F72A-BE5D-47E5-87AB-C34A4AC04F82?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNUI0QjY1MEUtMjhCOS00NzkwLUIzQUItRERCRDg4RDcyN0M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvQUQ5MUY3MkEtQkU1RC00N0U1LTg3QUItQzM0QTRBQzA0RjgyP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4d0257a8-fab5-4b1b-96f4-feed28ed1b67" + "2345dc58-8396-4420-8f48-264691069223" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -822,25 +822,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "92e43206-6d3d-4242-b877-70eca871a672" + "828e54fd-e186-451c-a775-322190f9af01" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-correlation-request-id": [ - "a073145a-da8a-4ece-8a72-92eea512dd5d" + "1fda10e4-21de-4821-9c33-c02cbc995e0a" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224528Z:a073145a-da8a-4ece-8a72-92eea512dd5d" + "WESTUS2:20221006T015801Z:1fda10e4-21de-4821-9c33-c02cbc995e0a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:45:28 GMT" + "Thu, 06 Oct 2022 01:58:01 GMT" ], "Content-Length": [ "286" @@ -852,25 +852,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/AEAD5174-7238-4B52-A18F-A26C73EE82CB?api-version=2021-12-01\",\r\n \"name\": \"aead5174-7238-4b52-a18f-a26c73ee82cb\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/AD91F72A-BE5D-47E5-87AB-C34A4AC04F82?api-version=2022-06-15\",\r\n \"name\": \"ad91f72a-be5d-47e5-87ab-c34a4ac04f82\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702/eventSubscriptions/EventSubscription-ps7084?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNDcwMi9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3MDg0P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987/eventSubscriptions/EventSubscription-ps7781?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczM4MDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNjk4Ny9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3NzgxP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4d0257a8-fab5-4b1b-96f4-feed28ed1b67" + "2345dc58-8396-4420-8f48-264691069223" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -882,25 +882,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "508735a8-e587-49d7-b7e3-d0dd151e717e" + "e9e2ba2c-6a10-494d-986b-0ecc86290404" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-correlation-request-id": [ - "4cf884cb-2616-40a0-b4a2-7559f87791f1" + "8c7883b1-50fc-4d63-8ae0-b194b171d367" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224528Z:4cf884cb-2616-40a0-b4a2-7559f87791f1" + "WESTUS2:20221006T015801Z:8c7883b1-50fc-4d63-8ae0-b194b171d367" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:45:28 GMT" + "Thu, 06 Oct 2022 01:58:01 GMT" ], "Content-Length": [ "1047" @@ -912,28 +912,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702/eventSubscriptions/EventSubscription-ps7084\",\r\n \"name\": \"EventSubscription-ps7084\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987/eventSubscriptions/EventSubscription-ps7781\",\r\n \"name\": \"EventSubscription-ps7781\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702/eventSubscriptions/EventSubscription-ps7084?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNDcwMi9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3MDg0P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987/eventSubscriptions/EventSubscription-ps7781?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczM4MDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNjk4Ny9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3NzgxP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7846f6f-461c-487f-adf8-828b16e6553b" + "08561786-12b7-4c72-a213-295582359468" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -945,25 +945,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "44f97ad4-a387-4d8b-806e-41bb05a32948" + "d903250e-5af4-4437-8072-1f7c670a46a0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11999" ], "x-ms-correlation-request-id": [ - "b0c92ee2-624c-4892-acd0-c1bf134e8084" + "8e0906b3-adf4-4cf7-92cf-f2a39674872b" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224528Z:b0c92ee2-624c-4892-acd0-c1bf134e8084" + "WESTUS2:20221006T015802Z:8e0906b3-adf4-4cf7-92cf-f2a39674872b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:45:28 GMT" + "Thu, 06 Oct 2022 01:58:01 GMT" ], "Content-Length": [ "1047" @@ -975,25 +975,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702/eventSubscriptions/EventSubscription-ps7084\",\r\n \"name\": \"EventSubscription-ps7084\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987/eventSubscriptions/EventSubscription-ps7781\",\r\n \"name\": \"EventSubscription-ps7781\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702/eventSubscriptions/EventSubscription-ps7084?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNDcwMi9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3MDg0P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987/eventSubscriptions/EventSubscription-ps7781?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczM4MDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNjk4Ny9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3NzgxP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7c3aaa1-9a08-426f-aee3-5f758e3014c2" + "3ecf29b7-c5d2-4fea-bb1d-04f26976b320" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1005,25 +1005,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "606d47ff-e602-47b6-acbd-031790a909a2" + "1eaa81a6-040c-40fd-8626-4c830190cbc2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11998" ], "x-ms-correlation-request-id": [ - "78f3aa9d-c85f-43ab-a458-1eeb6296a9a3" + "8ac0c1a6-140a-4fa5-a874-cfc16b411415" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224550Z:78f3aa9d-c85f-43ab-a458-1eeb6296a9a3" + "WESTUS2:20221006T015826Z:8ac0c1a6-140a-4fa5-a874-cfc16b411415" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:45:50 GMT" + "Thu, 06 Oct 2022 01:58:25 GMT" ], "Content-Length": [ "1059" @@ -1035,26 +1035,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702/eventSubscriptions/EventSubscription-ps7084\",\r\n \"name\": \"EventSubscription-ps7084\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987/eventSubscriptions/EventSubscription-ps7781\",\r\n \"name\": \"EventSubscription-ps7781\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702/eventSubscriptions/EventSubscription-ps7018?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNDcwMi9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3MDE4P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987/eventSubscriptions/EventSubscription-ps8752?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczM4MDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNjk4Ny9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM4NzUyP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5f99b72e-a2ac-4ef4-82ec-2c3cc8d45a7b" + "12978e1b-e938-4467-97ec-9b8159871ea8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1063,6 +1062,7 @@ "433" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n }\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1077,28 +1077,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/D8C17616-2001-42BC-8499-65F54437A4F2?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/9A6A8961-EE01-46EE-BD63-A4549CC6CA55?api-version=2022-06-15" ], "x-ms-request-id": [ - "fcb3b7ae-9cc3-47a9-900e-0cc8495bee97" + "2ca7ec5e-186d-4355-ac1d-2eb771078e2d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "162ea9ce-80d7-49db-baad-9bd574305a07" + "4b49a58c-0159-4886-838d-39a9f7a86e9d" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224529Z:162ea9ce-80d7-49db-baad-9bd574305a07" + "WESTUS2:20221006T015803Z:4b49a58c-0159-4886-838d-39a9f7a86e9d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:45:29 GMT" + "Thu, 06 Oct 2022 01:58:03 GMT" ], "Content-Length": [ "905" @@ -1110,25 +1110,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702/eventSubscriptions/EventSubscription-ps7018\",\r\n \"name\": \"EventSubscription-ps7018\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987/eventSubscriptions/EventSubscription-ps8752\",\r\n \"name\": \"EventSubscription-ps8752\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics/eventSubscriptions\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/D8C17616-2001-42BC-8499-65F54437A4F2?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNUI0QjY1MEUtMjhCOS00NzkwLUIzQUItRERCRDg4RDcyN0M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRDhDMTc2MTYtMjAwMS00MkJDLTg0OTktNjVGNTQ0MzdBNEYyP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/9A6A8961-EE01-46EE-BD63-A4549CC6CA55?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNUI0QjY1MEUtMjhCOS00NzkwLUIzQUItRERCRDg4RDcyN0M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvOUE2QTg5NjEtRUUwMS00NkVFLUJENjMtQTQ1NDlDQzZDQTU1P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f99b72e-a2ac-4ef4-82ec-2c3cc8d45a7b" + "12978e1b-e938-4467-97ec-9b8159871ea8" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1140,25 +1140,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3302d0d1-4252-4a2f-8c9d-1b838d924761" + "334e47fd-40cf-4965-b893-ee2625693b12" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11999" ], "x-ms-correlation-request-id": [ - "358ed31f-9a61-4ebf-904c-f8ed827e7329" + "0b6796b0-b3b2-4ff6-a8a2-40db8f8d58cc" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224539Z:358ed31f-9a61-4ebf-904c-f8ed827e7329" + "WESTUS2:20221006T015813Z:0b6796b0-b3b2-4ff6-a8a2-40db8f8d58cc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:45:39 GMT" + "Thu, 06 Oct 2022 01:58:13 GMT" ], "Content-Length": [ "286" @@ -1170,25 +1170,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/D8C17616-2001-42BC-8499-65F54437A4F2?api-version=2021-12-01\",\r\n \"name\": \"d8c17616-2001-42bc-8499-65f54437a4f2\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/9A6A8961-EE01-46EE-BD63-A4549CC6CA55?api-version=2022-06-15\",\r\n \"name\": \"9a6a8961-ee01-46ee-bd63-a4549cc6ca55\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702/eventSubscriptions/EventSubscription-ps7018?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNDcwMi9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3MDE4P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987/eventSubscriptions/EventSubscription-ps8752?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczM4MDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNjk4Ny9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM4NzUyP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f99b72e-a2ac-4ef4-82ec-2c3cc8d45a7b" + "12978e1b-e938-4467-97ec-9b8159871ea8" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1200,25 +1200,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9949ced6-83e9-4765-9a2a-0e67826c69a6" + "ae51668b-60ce-486e-9301-0558ff3c540c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11998" ], "x-ms-correlation-request-id": [ - "76ffbf50-94f8-4736-af13-75d72c1b7a31" + "115a73f9-8f5e-48c4-80d7-5cc5fe09acc4" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224539Z:76ffbf50-94f8-4736-af13-75d72c1b7a31" + "WESTUS2:20221006T015813Z:115a73f9-8f5e-48c4-80d7-5cc5fe09acc4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:45:39 GMT" + "Thu, 06 Oct 2022 01:58:13 GMT" ], "Content-Length": [ "1047" @@ -1230,28 +1230,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702/eventSubscriptions/EventSubscription-ps7018\",\r\n \"name\": \"EventSubscription-ps7018\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987/eventSubscriptions/EventSubscription-ps8752\",\r\n \"name\": \"EventSubscription-ps8752\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702/eventSubscriptions?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNDcwMi9ldmVudFN1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987/eventSubscriptions?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczM4MDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNjk4Ny9ldmVudFN1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25c042d8-b64f-406c-8258-f030104db8e8" + "991eeeb9-0144-4e83-b11e-16e99bf70ce9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1263,25 +1263,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "242dae56-4a0e-487d-a362-e300574cff61" + "fa70d9b5-d8fe-4bf8-af61-00833f00da82" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11999" ], "x-ms-correlation-request-id": [ - "d66facd9-edb1-4dbf-868f-c1f6066a961a" + "bc5d2b25-ecb2-4944-b0b1-7b684b885689" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224539Z:d66facd9-edb1-4dbf-868f-c1f6066a961a" + "WESTUS2:20221006T015814Z:bc5d2b25-ecb2-4944-b0b1-7b684b885689" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:45:39 GMT" + "Thu, 06 Oct 2022 01:58:13 GMT" ], "Content-Length": [ "2107" @@ -1293,28 +1293,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702/eventSubscriptions/EventSubscription-ps7084\",\r\n \"name\": \"EventSubscription-ps7084\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702/eventSubscriptions/EventSubscription-ps7018\",\r\n \"name\": \"EventSubscription-ps7018\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics/eventSubscriptions\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987/eventSubscriptions/EventSubscription-ps7781\",\r\n \"name\": \"EventSubscription-ps7781\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987/eventSubscriptions/EventSubscription-ps8752\",\r\n \"name\": \"EventSubscription-ps8752\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics/eventSubscriptions\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702/eventSubscriptions?api-version=2021-12-01&$top=1", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNDcwMi9ldmVudFN1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAyMS0xMi0wMSYkdG9wPTE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987/eventSubscriptions?api-version=2022-06-15&$top=1", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczM4MDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNjk4Ny9ldmVudFN1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAyMi0wNi0xNSYkdG9wPTE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5ad5698e-b122-49a6-b417-208b1e3f9870" + "760c4c5d-0e1c-4741-8a7d-b5746a372140" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1326,28 +1326,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cf32759e-c997-4038-a7e2-a28538fe0a50" + "6f5b866a-9a71-4201-aa52-a4f937ec6e8a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11999" ], "x-ms-correlation-request-id": [ - "e9ffe148-7831-4156-b2ac-30121b7e013f" + "db1dbfa1-d9e3-4e8b-aa8d-feef9940f309" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224539Z:e9ffe148-7831-4156-b2ac-30121b7e013f" + "WESTUS2:20221006T015814Z:db1dbfa1-d9e3-4e8b-aa8d-feef9940f309" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:45:39 GMT" + "Thu, 06 Oct 2022 01:58:14 GMT" ], "Content-Length": [ - "1518" + "1528" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1356,28 +1356,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702/eventSubscriptions/EventSubscription-ps7084\",\r\n \"name\": \"EventSubscription-ps7084\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics/eventSubscriptions\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702/eventSubscriptions?api-version=2021-12-01&$skiptoken=%5b%7b%22token%22%3a%22%2bRID%3a%7egx8DAIT06wAIqkMAAAAAAA%3d%3d%23RT%3a1%23TRC%3a1%23ISV%3a2%23IEO%3a65551%23FPC%3aAQiqQwAAAAAACapDAAAAAAA%3d%22%2c%22range%22%3a%7b%22min%22%3a%22%22%2c%22max%22%3a%22FF%22%7d%7d%5d&$top=1\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987/eventSubscriptions/EventSubscription-ps7781\",\r\n \"name\": \"EventSubscription-ps7781\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics/eventSubscriptions\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987/eventSubscriptions?api-version=2022-06-15&$skiptoken=%5b%7b%22token%22%3a%22%2bRID%3a%7egx8DAIT06wAgJ0sAAAAAAA%3d%3d%23RT%3a1%23TRC%3a1%23ISV%3a2%23IEO%3a65551%23QCF%3a8%23FPC%3aASAnSwAAAAAAISdLAAAAAAA%3d%22%2c%22range%22%3a%7b%22min%22%3a%22%22%2c%22max%22%3a%22FF%22%7d%7d%5d&$top=1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702/eventSubscriptions?api-version=2021-12-01&$skiptoken=%5b%7B%22token%22%3a%22%2bRID%3a~gx8DAIT06wAIqkMAAAAAAA%3d%3d%23RT%3a1%23TRC%3a1%23ISV%3a2%23IEO%3a65551%23FPC%3aAQiqQwAAAAAACapDAAAAAAA%3d%22%2c%22range%22%3a%7B%22min%22%3a%22%22%2c%22max%22%3a%22FF%22%7D%7D%5d&$top=1", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNDcwMi9ldmVudFN1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAyMS0xMi0wMSYkc2tpcHRva2VuPSU1YiU3QiUyMnRva2VuJTIyJTNhJTIyJTJiUklEJTNhfmd4OERBSVQwNndBSXFrTUFBQUFBQUElM2QlM2QlMjNSVCUzYTElMjNUUkMlM2ExJTIzSVNWJTNhMiUyM0lFTyUzYTY1NTUxJTIzRlBDJTNhQVFpcVF3QUFBQUFBQ2FwREFBQUFBQUElM2QlMjIlMmMlMjJyYW5nZSUyMiUzYSU3QiUyMm1pbiUyMiUzYSUyMiUyMiUyYyUyMm1heCUyMiUzYSUyMkZGJTIyJTdEJTdEJTVkJiR0b3A9MQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987/eventSubscriptions?api-version=2022-06-15&$skiptoken=%5b%7B%22token%22%3a%22%2bRID%3a~gx8DAIT06wAgJ0sAAAAAAA%3d%3d%23RT%3a1%23TRC%3a1%23ISV%3a2%23IEO%3a65551%23QCF%3a8%23FPC%3aASAnSwAAAAAAISdLAAAAAAA%3d%22%2c%22range%22%3a%7B%22min%22%3a%22%22%2c%22max%22%3a%22FF%22%7D%7D%5d&$top=1", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczM4MDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNjk4Ny9ldmVudFN1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAyMi0wNi0xNSYkc2tpcHRva2VuPSU1YiU3QiUyMnRva2VuJTIyJTNhJTIyJTJiUklEJTNhfmd4OERBSVQwNndBZ0owc0FBQUFBQUElM2QlM2QlMjNSVCUzYTElMjNUUkMlM2ExJTIzSVNWJTNhMiUyM0lFTyUzYTY1NTUxJTIzUUNGJTNhOCUyM0ZQQyUzYUFTQW5Td0FBQUFBQUlTZExBQUFBQUFBJTNkJTIyJTJjJTIycmFuZ2UlMjIlM2ElN0IlMjJtaW4lMjIlM2ElMjIlMjIlMmMlMjJtYXglMjIlM2ElMjJGRiUyMiU3RCU3RCU1ZCYkdG9wPTE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c3c7eb90-da74-40ba-8373-99a183a742cc" + "7f17a270-eb26-42e2-a744-a5623e3b84d0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1389,25 +1389,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e257ab55-437e-49f2-b13c-96c755150e6b" + "c1a4efd1-2f56-4a23-a2da-61343f95f0e8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11999" ], "x-ms-correlation-request-id": [ - "591f5b4d-0b55-4490-9371-1154a76142d8" + "14aa0b27-8daf-48ef-88e3-910b152c197d" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224540Z:591f5b4d-0b55-4490-9371-1154a76142d8" + "WESTUS2:20221006T015815Z:14aa0b27-8daf-48ef-88e3-910b152c197d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:45:39 GMT" + "Thu, 06 Oct 2022 01:58:15 GMT" ], "Content-Length": [ "1059" @@ -1419,26 +1419,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702/eventSubscriptions/EventSubscription-ps7018\",\r\n \"name\": \"EventSubscription-ps7018\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics/eventSubscriptions\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987/eventSubscriptions/EventSubscription-ps8752\",\r\n \"name\": \"EventSubscription-ps8752\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics/eventSubscriptions\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702/eventSubscriptions/EventSubscription-ps7084?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNDcwMi9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3MDg0P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987/eventSubscriptions/EventSubscription-ps7781?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczM4MDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNjk4Ny9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3NzgxP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"filter\": {\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ]\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b7c3aaa1-9a08-426f-aee3-5f758e3014c2" + "3ecf29b7-c5d2-4fea-bb1d-04f26976b320" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1447,6 +1446,7 @@ "155" ] }, + "RequestBody": "{\r\n \"filter\": {\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ]\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1461,28 +1461,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/7714B0A6-D02F-43B8-B96F-533898E53000?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/08D427E3-6440-4B7F-845C-44F9CAAD1614?api-version=2022-06-15" ], "x-ms-request-id": [ - "63d8b077-b031-4254-ab64-8326b5bce9f0" + "91778f3b-56ba-4c37-a792-e0a82a6093d0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "5e5b4f7e-8dc5-4a50-8271-372d736b3573" + "1d89f42c-6efc-453f-8863-21252525e6c1" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224540Z:5e5b4f7e-8dc5-4a50-8271-372d736b3573" + "WESTUS2:20221006T015816Z:1d89f42c-6efc-453f-8863-21252525e6c1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:45:40 GMT" + "Thu, 06 Oct 2022 01:58:15 GMT" ], "Content-Length": [ "1058" @@ -1494,25 +1494,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702\",\r\n \"provisioningState\": \"Updating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702/eventSubscriptions/EventSubscription-ps7084\",\r\n \"name\": \"EventSubscription-ps7084\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987\",\r\n \"provisioningState\": \"Updating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987/eventSubscriptions/EventSubscription-ps7781\",\r\n \"name\": \"EventSubscription-ps7781\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics/eventSubscriptions\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/7714B0A6-D02F-43B8-B96F-533898E53000?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNUI0QjY1MEUtMjhCOS00NzkwLUIzQUItRERCRDg4RDcyN0M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNzcxNEIwQTYtRDAyRi00M0I4LUI5NkYtNTMzODk4RTUzMDAwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/08D427E3-6440-4B7F-845C-44F9CAAD1614?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNUI0QjY1MEUtMjhCOS00NzkwLUIzQUItRERCRDg4RDcyN0M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMDhENDI3RTMtNjQ0MC00QjdGLTg0NUMtNDRGOUNBQUQxNjE0P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7c3aaa1-9a08-426f-aee3-5f758e3014c2" + "3ecf29b7-c5d2-4fea-bb1d-04f26976b320" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1524,25 +1524,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "009be1e6-6e1b-46c4-8697-25e430238e91" + "c9b290a5-965d-42af-a7ba-471d9b4c4c27" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11999" ], "x-ms-correlation-request-id": [ - "fed83a1e-f519-421f-abf9-872e0dc9c536" + "e0092892-6b5e-4336-8fcd-c43aba97b8a6" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224550Z:fed83a1e-f519-421f-abf9-872e0dc9c536" + "WESTUS2:20221006T015826Z:e0092892-6b5e-4336-8fcd-c43aba97b8a6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:45:50 GMT" + "Thu, 06 Oct 2022 01:58:25 GMT" ], "Content-Length": [ "286" @@ -1554,28 +1554,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/7714B0A6-D02F-43B8-B96F-533898E53000?api-version=2021-12-01\",\r\n \"name\": \"7714b0a6-d02f-43b8-b96f-533898e53000\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/08D427E3-6440-4B7F-845C-44F9CAAD1614?api-version=2022-06-15\",\r\n \"name\": \"08d427e3-6440-4b7f-845c-44f9caad1614\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702/eventSubscriptions/EventSubscription-ps7084/getDeliveryAttributes?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNDcwMi9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3MDg0L2dldERlbGl2ZXJ5QXR0cmlidXRlcz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987/eventSubscriptions/EventSubscription-ps7781/getDeliveryAttributes?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczM4MDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNjk4Ny9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3NzgxL2dldERlbGl2ZXJ5QXR0cmlidXRlcz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "605347e0-1461-4af9-9aa5-3102af70f163" + "f6a5feed-2c5c-4835-bfa4-4bc3c50457a4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1587,25 +1587,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "320063b8-7f7a-4d3e-bc71-4e2bc29568c4" + "79d6efa5-5705-4b83-97e8-ecadaaee9f25" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "210b94e7-10a7-4500-b36c-c4c04d54cc9f" + "d7ed3209-adb4-41ec-9dcf-d62b708a493d" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224551Z:210b94e7-10a7-4500-b36c-c4c04d54cc9f" + "WESTUS2:20221006T015827Z:d7ed3209-adb4-41ec-9dcf-d62b708a493d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:45:50 GMT" + "Thu, 06 Oct 2022 01:58:27 GMT" ], "Content-Length": [ "14" @@ -1621,24 +1621,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702/eventSubscriptions/EventSubscription-ps7084/getFullUrl?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNDcwMi9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3MDg0L2dldEZ1bGxVcmw/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987/eventSubscriptions/EventSubscription-ps7781/getFullUrl?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczM4MDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNjk4Ny9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3NzgxL2dldEZ1bGxVcmw/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a707856-e32c-422b-8f4f-0d7ae33256c4" + "36dfe645-2953-4a81-858c-f44f15a38cb9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1650,7 +1650,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "847c27e0-b3eb-4bda-899d-5b819d29f7ab" + "0bcf5dab-c766-4466-a8d3-82da036bfe82" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1659,16 +1659,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "c074cc95-854c-4b33-94ae-5e89c8a25b1c" + "264da73e-c5f5-49de-a51f-3da795c23e1c" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224551Z:c074cc95-854c-4b33-94ae-5e89c8a25b1c" + "WESTUS2:20221006T015828Z:264da73e-c5f5-49de-a51f-3da795c23e1c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:45:50 GMT" + "Thu, 06 Oct 2022 01:58:27 GMT" ], "Content-Length": [ "188" @@ -1684,24 +1684,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702/eventSubscriptions/EventSubscription-ps7084?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNDcwMi9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3MDg0P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987/eventSubscriptions/EventSubscription-ps7781?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczM4MDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNjk4Ny9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3NzgxP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "559a0ad5-6fd6-4789-ac0f-49cf0b80ee9e" + "8369b498-35b6-482b-8c92-c0a801aee130" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1710,7 +1710,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/F88C6FF9-F520-4FBE-BEB8-5E70C38DBCD8?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/13C7C898-7973-4F92-96FF-BE2BEB0E8A1B?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -1719,10 +1719,10 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/F88C6FF9-F520-4FBE-BEB8-5E70C38DBCD8?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/13C7C898-7973-4F92-96FF-BE2BEB0E8A1B?api-version=2022-06-15" ], "x-ms-request-id": [ - "f40b2511-36bf-44b0-ae29-60618b72f6e4" + "0f7e6fe8-7c13-4d5b-85a5-a752938a1a94" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1731,16 +1731,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "85a58ff3-e615-4eed-9429-ed7367e9e2a5" + "edb4c4b2-eb78-471b-8ace-cd91cdc50330" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224551Z:85a58ff3-e615-4eed-9429-ed7367e9e2a5" + "WESTUS2:20221006T015829Z:edb4c4b2-eb78-471b-8ace-cd91cdc50330" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:45:51 GMT" + "Thu, 06 Oct 2022 01:58:28 GMT" ], "Expires": [ "-1" @@ -1753,21 +1753,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/F88C6FF9-F520-4FBE-BEB8-5E70C38DBCD8?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNUI0QjY1MEUtMjhCOS00NzkwLUIzQUItRERCRDg4RDcyN0M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRjg4QzZGRjktRjUyMC00RkJFLUJFQjgtNUU3MEMzOERCQ0Q4P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/13C7C898-7973-4F92-96FF-BE2BEB0E8A1B?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNUI0QjY1MEUtMjhCOS00NzkwLUIzQUItRERCRDg4RDcyN0M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMTNDN0M4OTgtNzk3My00RjkyLTk2RkYtQkUyQkVCMEU4QTFCP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "559a0ad5-6fd6-4789-ac0f-49cf0b80ee9e" + "8369b498-35b6-482b-8c92-c0a801aee130" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1779,25 +1779,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ff62c3ad-61e7-47ce-9776-9bb770243e3a" + "2ba91ff5-9eee-46a7-b7dd-13b5f7c8dfee" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11999" ], "x-ms-correlation-request-id": [ - "415ddcdf-a391-4662-9234-8094180e539e" + "8594c08e-f5bb-4a43-8629-fa5728196b11" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224601Z:415ddcdf-a391-4662-9234-8094180e539e" + "WESTUS2:20221006T015839Z:8594c08e-f5bb-4a43-8629-fa5728196b11" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:46:01 GMT" + "Thu, 06 Oct 2022 01:58:38 GMT" ], "Content-Length": [ "286" @@ -1809,25 +1809,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/F88C6FF9-F520-4FBE-BEB8-5E70C38DBCD8?api-version=2021-12-01\",\r\n \"name\": \"f88c6ff9-f520-4fbe-beb8-5e70c38dbcd8\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/13C7C898-7973-4F92-96FF-BE2BEB0E8A1B?api-version=2022-06-15\",\r\n \"name\": \"13c7c898-7973-4f92-96ff-be2beb0e8a1b\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/F88C6FF9-F520-4FBE-BEB8-5E70C38DBCD8?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNUI0QjY1MEUtMjhCOS00NzkwLUIzQUItRERCRDg4RDcyN0M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvRjg4QzZGRjktRjUyMC00RkJFLUJFQjgtNUU3MEMzOERCQ0Q4P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/13C7C898-7973-4F92-96FF-BE2BEB0E8A1B?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNUI0QjY1MEUtMjhCOS00NzkwLUIzQUItRERCRDg4RDcyN0M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMTNDN0M4OTgtNzk3My00RjkyLTk2RkYtQkUyQkVCMEU4QTFCP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "559a0ad5-6fd6-4789-ac0f-49cf0b80ee9e" + "8369b498-35b6-482b-8c92-c0a801aee130" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1839,25 +1839,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1c76d36c-32f8-455f-9f50-8cf20020385a" + "eb395f09-c7e8-4e9a-8609-e34ab81f2091" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11998" ], "x-ms-correlation-request-id": [ - "cc224420-8969-49c0-b5eb-58432674b108" + "6c773688-a576-4c77-8e9a-4f05c0cf4b4f" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224601Z:cc224420-8969-49c0-b5eb-58432674b108" + "WESTUS2:20221006T015839Z:6c773688-a576-4c77-8e9a-4f05c0cf4b4f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:46:01 GMT" + "Thu, 06 Oct 2022 01:58:38 GMT" ], "Expires": [ "-1" @@ -1870,24 +1870,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702/eventSubscriptions/EventSubscription-ps7018?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNDcwMi9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3MDE4P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987/eventSubscriptions/EventSubscription-ps8752?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczM4MDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNjk4Ny9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM4NzUyP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "50b4ff5e-753b-48e0-9d05-fd85da698b46" + "40248007-2a6f-42da-8c14-2203e08fdb31" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1896,7 +1896,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/76AE72A9-7B45-47B0-BBAE-7882EF60A474?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/40A19D59-93B3-4E8F-90B0-9D423A9106C3?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -1905,28 +1905,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/76AE72A9-7B45-47B0-BBAE-7882EF60A474?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/40A19D59-93B3-4E8F-90B0-9D423A9106C3?api-version=2022-06-15" ], "x-ms-request-id": [ - "7dfe06d1-543b-44f8-ad64-870c4806cf64" + "04fda012-ac0b-4e24-8139-b05e5c7a1e2d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-correlation-request-id": [ - "a91458e0-5cf4-41bd-939d-ef7d62adbb3b" + "6f1b28d8-7491-46ca-8c93-d20b736bee74" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224602Z:a91458e0-5cf4-41bd-939d-ef7d62adbb3b" + "WESTUS2:20221006T015840Z:6f1b28d8-7491-46ca-8c93-d20b736bee74" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:46:01 GMT" + "Thu, 06 Oct 2022 01:58:40 GMT" ], "Expires": [ "-1" @@ -1939,21 +1939,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/76AE72A9-7B45-47B0-BBAE-7882EF60A474?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNUI0QjY1MEUtMjhCOS00NzkwLUIzQUItRERCRDg4RDcyN0M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNzZBRTcyQTktN0I0NS00N0IwLUJCQUUtNzg4MkVGNjBBNDc0P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/40A19D59-93B3-4E8F-90B0-9D423A9106C3?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNUI0QjY1MEUtMjhCOS00NzkwLUIzQUItRERCRDg4RDcyN0M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNDBBMTlENTktOTNCMy00RThGLTkwQjAtOUQ0MjNBOTEwNkMzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "50b4ff5e-753b-48e0-9d05-fd85da698b46" + "40248007-2a6f-42da-8c14-2203e08fdb31" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1965,25 +1965,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3a528093-b008-4b4d-8764-2f385aad3643" + "be4f27ff-e230-4730-b12e-ed7974bdc536" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11998" ], "x-ms-correlation-request-id": [ - "c40224b6-9f4b-4cc1-b0e2-9fd0ddf23932" + "0090ce5e-3abb-46a6-89bf-a11e4405cf16" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224612Z:c40224b6-9f4b-4cc1-b0e2-9fd0ddf23932" + "WESTUS2:20221006T015850Z:0090ce5e-3abb-46a6-89bf-a11e4405cf16" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:46:11 GMT" + "Thu, 06 Oct 2022 01:58:50 GMT" ], "Content-Length": [ "286" @@ -1995,25 +1995,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/76AE72A9-7B45-47B0-BBAE-7882EF60A474?api-version=2021-12-01\",\r\n \"name\": \"76ae72a9-7b45-47b0-bbae-7882ef60a474\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/40A19D59-93B3-4E8F-90B0-9D423A9106C3?api-version=2022-06-15\",\r\n \"name\": \"40a19d59-93b3-4e8f-90b0-9d423a9106c3\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/76AE72A9-7B45-47B0-BBAE-7882EF60A474?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNUI0QjY1MEUtMjhCOS00NzkwLUIzQUItRERCRDg4RDcyN0M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNzZBRTcyQTktN0I0NS00N0IwLUJCQUUtNzg4MkVGNjBBNDc0P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/40A19D59-93B3-4E8F-90B0-9D423A9106C3?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNUI0QjY1MEUtMjhCOS00NzkwLUIzQUItRERCRDg4RDcyN0M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNDBBMTlENTktOTNCMy00RThGLTkwQjAtOUQ0MjNBOTEwNkMzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "50b4ff5e-753b-48e0-9d05-fd85da698b46" + "40248007-2a6f-42da-8c14-2203e08fdb31" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2025,25 +2025,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a65029fa-030a-4042-b874-765058a64158" + "2fbc427f-a3bc-41a0-ae1d-214ce3b6f3e3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11997" ], "x-ms-correlation-request-id": [ - "b637d5a0-0362-4cf5-8af2-18d235a6b1b2" + "29107bb9-153a-43ff-be29-2531cabd42ac" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224612Z:b637d5a0-0362-4cf5-8af2-18d235a6b1b2" + "WESTUS2:20221006T015850Z:29107bb9-153a-43ff-be29-2531cabd42ac" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:46:11 GMT" + "Thu, 06 Oct 2022 01:58:50 GMT" ], "Expires": [ "-1" @@ -2056,24 +2056,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4702?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNDcwMj9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps6987?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczM4MDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNjk4Nz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "43e1e00d-1873-4d02-a8c1-ec9ec0dc857b" + "422f79ff-6b82-4955-8b66-455f30a530c8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2082,7 +2082,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/0185C7AC-DED9-4258-908F-3BD2CB3F274B?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/F6FE2D14-0BCC-4BF7-8518-E31B7A4305B1?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -2091,28 +2091,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/0185C7AC-DED9-4258-908F-3BD2CB3F274B?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/F6FE2D14-0BCC-4BF7-8518-E31B7A4305B1?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-request-id": [ - "5fce4106-4ac5-485f-8b67-e8bcaf14204d" + "60000734-110e-4ff2-93e4-f5ac9c3002d9" ], "x-ms-correlation-request-id": [ - "5fce4106-4ac5-485f-8b67-e8bcaf14204d" + "60000734-110e-4ff2-93e4-f5ac9c3002d9" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224612Z:5fce4106-4ac5-485f-8b67-e8bcaf14204d" + "WESTUS2:20221006T015851Z:60000734-110e-4ff2-93e4-f5ac9c3002d9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:46:12 GMT" + "Thu, 06 Oct 2022 01:58:51 GMT" ], "Expires": [ "-1" @@ -2125,21 +2125,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/0185C7AC-DED9-4258-908F-3BD2CB3F274B?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMDE4NUM3QUMtREVEOS00MjU4LTkwOEYtM0JEMkNCM0YyNzRCP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/F6FE2D14-0BCC-4BF7-8518-E31B7A4305B1?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRjZGRTJEMTQtMEJDQy00QkY3LTg1MTgtRTMxQjdBNDMwNUIxP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "43e1e00d-1873-4d02-a8c1-ec9ec0dc857b" + "422f79ff-6b82-4955-8b66-455f30a530c8" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2151,25 +2151,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "55925694-df96-43ee-88fa-e2c6a7f4ba6f" + "99195e97-97c0-45fc-b6ad-8a29e60ba189" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11998" ], "x-ms-correlation-request-id": [ - "08af1569-873c-47ac-b702-d6b18081056e" + "0cdd2c4a-3cee-44d9-9e53-4d11d7058ec1" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224622Z:08af1569-873c-47ac-b702-d6b18081056e" + "WESTUS2:20221006T015901Z:0cdd2c4a-3cee-44d9-9e53-4d11d7058ec1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:46:21 GMT" + "Thu, 06 Oct 2022 01:59:01 GMT" ], "Content-Length": [ "286" @@ -2181,25 +2181,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/0185C7AC-DED9-4258-908F-3BD2CB3F274B?api-version=2021-12-01\",\r\n \"name\": \"0185c7ac-ded9-4258-908f-3bd2cb3f274b\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/F6FE2D14-0BCC-4BF7-8518-E31B7A4305B1?api-version=2022-06-15\",\r\n \"name\": \"f6fe2d14-0bcc-4bf7-8518-e31b7a4305b1\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/0185C7AC-DED9-4258-908F-3BD2CB3F274B?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMDE4NUM3QUMtREVEOS00MjU4LTkwOEYtM0JEMkNCM0YyNzRCP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/F6FE2D14-0BCC-4BF7-8518-E31B7A4305B1?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvRjZGRTJEMTQtMEJDQy00QkY3LTg1MTgtRTMxQjdBNDMwNUIxP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "43e1e00d-1873-4d02-a8c1-ec9ec0dc857b" + "422f79ff-6b82-4955-8b66-455f30a530c8" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2211,25 +2211,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "488fed38-b249-4fea-9601-49f062caf559" + "dafe72f9-8004-426e-9d7e-c2e1995fd762" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11997" ], "x-ms-correlation-request-id": [ - "c0f8f351-3bab-473c-9cfe-79887df8e815" + "5900fbf0-ec9d-4330-8470-db1758805d26" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224622Z:c0f8f351-3bab-473c-9cfe-79887df8e815" + "WESTUS2:20221006T015901Z:5900fbf0-ec9d-4330-8470-db1758805d26" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:46:22 GMT" + "Thu, 06 Oct 2022 01:59:01 GMT" ], "Expires": [ "-1" @@ -2242,24 +2242,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8054/providers/Microsoft.Storage/storageAccounts/storagenameps2310?api-version=2021-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9yYWdlbmFtZXBzMjMxMD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3800/providers/Microsoft.Storage/storageAccounts/storagenameps9368?api-version=2022-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczM4MDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9yYWdlbmFtZXBzOTM2OD9hcGktdmVyc2lvbj0yMDIyLTA1LTAx", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "20dd0271-7864-4714-b09c-01452ce8fff1" + "388af6f4-b4d1-4926-bc0b-26675191edab" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.1.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.9.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2268,7 +2268,7 @@ "no-cache" ], "x-ms-request-id": [ - "b1bfe8fb-e732-4dea-b2fb-5a11e9647c17" + "4f868894-f5b2-4717-a51a-4dd585cfb698" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2280,16 +2280,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "d958d056-6cbd-4d05-b544-81d5d12556f8" + "759778f9-dad3-4b6c-93e6-e2b7bafe89b7" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224626Z:d958d056-6cbd-4d05-b544-81d5d12556f8" + "WESTUS2:20221006T015907Z:759778f9-dad3-4b6c-93e6-e2b7bafe89b7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:46:26 GMT" + "Thu, 06 Oct 2022 01:59:06 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -2305,24 +2305,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps8054?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczgwNTQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps3800?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczM4MDA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "360fb08a-de9b-4695-a4f3-e75518ca1877" + "1b3574bf-59e8-40c5-b9ee-5e4151128dce" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2331,7 +2331,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzgwNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzM4MDAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2340,13 +2340,13 @@ "14999" ], "x-ms-request-id": [ - "3105193d-fbab-41a7-a9e9-1d0be7df2fd5" + "5c2739b1-fb5e-466f-b8bc-08af38ea4b96" ], "x-ms-correlation-request-id": [ - "3105193d-fbab-41a7-a9e9-1d0be7df2fd5" + "5c2739b1-fb5e-466f-b8bc-08af38ea4b96" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224627Z:3105193d-fbab-41a7-a9e9-1d0be7df2fd5" + "WESTUS2:20221006T015908Z:5c2739b1-fb5e-466f-b8bc-08af38ea4b96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2355,7 +2355,7 @@ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:46:27 GMT" + "Thu, 06 Oct 2022 01:59:08 GMT" ], "Expires": [ "-1" @@ -2368,18 +2368,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzgwNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpnd05UUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzM4MDAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpNNE1EQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2391,13 +2391,13 @@ "11999" ], "x-ms-request-id": [ - "c87d79fe-c94e-4023-8bd4-e9ac883c18d3" + "ddfcb706-135f-4181-9dab-f3ce5a42a7d2" ], "x-ms-correlation-request-id": [ - "c87d79fe-c94e-4023-8bd4-e9ac883c18d3" + "ddfcb706-135f-4181-9dab-f3ce5a42a7d2" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224642Z:c87d79fe-c94e-4023-8bd4-e9ac883c18d3" + "WESTUS2:20221006T015923Z:ddfcb706-135f-4181-9dab-f3ce5a42a7d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2406,7 +2406,7 @@ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:46:42 GMT" + "Thu, 06 Oct 2022 01:59:23 GMT" ], "Expires": [ "-1" @@ -2419,18 +2419,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzgwNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpnd05UUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzM4MDAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpNNE1EQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2442,13 +2442,13 @@ "11998" ], "x-ms-request-id": [ - "2a97d1c3-08d8-47c0-9249-feecb14d9d7f" + "3ddc7057-527b-4c3e-b904-4f20bc02b480" ], "x-ms-correlation-request-id": [ - "2a97d1c3-08d8-47c0-9249-feecb14d9d7f" + "3ddc7057-527b-4c3e-b904-4f20bc02b480" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224642Z:2a97d1c3-08d8-47c0-9249-feecb14d9d7f" + "WESTUS2:20221006T015923Z:3ddc7057-527b-4c3e-b904-4f20bc02b480" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2457,7 +2457,7 @@ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:46:42 GMT" + "Thu, 06 Oct 2022 01:59:23 GMT" ], "Expires": [ "-1" @@ -2470,24 +2470,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps8707?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczg3MDc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps8972?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczg5NzI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9da832fc-56aa-4022-9eb7-abfb62d97dea" + "6f740997-6a04-4413-91e0-b68328bbb879" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2496,22 +2496,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzg3MDctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzg5NzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-request-id": [ - "a5d79502-a2b2-410e-bdba-653f3eb684f0" + "8569cd4c-4c42-4992-952a-4cf3d4ea1ded" ], "x-ms-correlation-request-id": [ - "a5d79502-a2b2-410e-bdba-653f3eb684f0" + "8569cd4c-4c42-4992-952a-4cf3d4ea1ded" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224643Z:a5d79502-a2b2-410e-bdba-653f3eb684f0" + "WESTUS2:20221006T015925Z:8569cd4c-4c42-4992-952a-4cf3d4ea1ded" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2520,7 +2520,7 @@ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:46:42 GMT" + "Thu, 06 Oct 2022 01:59:24 GMT" ], "Expires": [ "-1" @@ -2533,18 +2533,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzg3MDctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpnM01EY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzg5NzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpnNU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2553,16 +2553,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-request-id": [ - "e600b5d8-6768-4480-bb87-f781e4795754" + "f4cbee94-eefc-4bf4-86dc-e39897cb2411" ], "x-ms-correlation-request-id": [ - "e600b5d8-6768-4480-bb87-f781e4795754" + "f4cbee94-eefc-4bf4-86dc-e39897cb2411" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224658Z:e600b5d8-6768-4480-bb87-f781e4795754" + "WESTUS2:20221006T015940Z:f4cbee94-eefc-4bf4-86dc-e39897cb2411" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2571,7 +2571,7 @@ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:46:57 GMT" + "Thu, 06 Oct 2022 01:59:39 GMT" ], "Expires": [ "-1" @@ -2584,18 +2584,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzg3MDctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpnM01EY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzg5NzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpnNU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2604,16 +2604,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-request-id": [ - "08d5b98f-6bb0-4938-92c8-6ab5a824cb03" + "f9b663b3-f138-4c7f-9d3b-6d8a314bf585" ], "x-ms-correlation-request-id": [ - "08d5b98f-6bb0-4938-92c8-6ab5a824cb03" + "f9b663b3-f138-4c7f-9d3b-6d8a314bf585" ], "x-ms-routing-request-id": [ - "WESTUS:20220505T224658Z:08d5b98f-6bb0-4938-92c8-6ab5a824cb03" + "WESTUS2:20221006T015940Z:f9b663b3-f138-4c7f-9d3b-6d8a314bf585" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2622,7 +2622,7 @@ "nosniff" ], "Date": [ - "Thu, 05 May 2022 22:46:57 GMT" + "Thu, 06 Oct 2022 01:59:39 GMT" ], "Expires": [ "-1" @@ -2637,17 +2637,17 @@ ], "Names": { "": [ - "ps4702", - "ps6713", - "ps7086", - "ps1056", - "ps7084", - "ps7018", - "ps9080", - "ps8054", - "ps8707", - "ps2310", - "ps32" + "ps6987", + "ps9561", + "ps2410", + "ps2439", + "ps7781", + "ps8752", + "ps6454", + "ps3800", + "ps8972", + "ps9368", + "ps2852" ] }, "Variables": { diff --git a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Test.ScenarioTests.SystemTopicTests/EventGrid_SystemTopicsCRUD.json b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Test.ScenarioTests.SystemTopicTests/EventGrid_SystemTopicsCRUD.json index c41a1bbf57f2..0b2f4b3db0a2 100644 --- a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Test.ScenarioTests.SystemTopicTests/EventGrid_SystemTopicsCRUD.json +++ b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Test.ScenarioTests.SystemTopicTests/EventGrid_SystemTopicsCRUD.json @@ -1,22 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps3656?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczM2NTY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps821?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczgyMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "21bdf240-afbe-472a-a1ec-eab031c30186" + "a890d69d-3540-4d5b-a7c8-fc579ea796be" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,6 +24,7 @@ "35" ] }, + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "889cc921-5b95-4ab1-ad1d-8ef500b9fd53" + "e164e0f5-330a-4134-b12c-eb72f425dad7" ], "x-ms-correlation-request-id": [ - "889cc921-5b95-4ab1-ad1d-8ef500b9fd53" + "e164e0f5-330a-4134-b12c-eb72f425dad7" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T032704Z:889cc921-5b95-4ab1-ad1d-8ef500b9fd53" + "WESTUS2:20221006T061344Z:e164e0f5-330a-4134-b12c-eb72f425dad7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:27:03 GMT" + "Thu, 06 Oct 2022 06:13:44 GMT" ], "Content-Length": [ - "186" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3656\",\r\n \"name\": \"RGName-ps3656\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps821\",\r\n \"name\": \"RGName-ps821\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps9970?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczk5NzA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps6020?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczYwMjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "901eaa98-ff10-47d4-8e01-a0b9b721a6dd" + "5a0227e4-f90c-4a41-b4e2-b2adecb1d2c7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ], "Content-Type": [ "application/json; charset=utf-8" @@ -91,6 +90,7 @@ "35" ] }, + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "2356a5f1-2d64-48de-9675-c9547f576d8e" + "457611b5-866a-42ab-a0d6-70896f3c522d" ], "x-ms-correlation-request-id": [ - "2356a5f1-2d64-48de-9675-c9547f576d8e" + "457611b5-866a-42ab-a0d6-70896f3c522d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T032704Z:2356a5f1-2d64-48de-9675-c9547f576d8e" + "WESTUS2:20221006T061346Z:457611b5-866a-42ab-a0d6-70896f3c522d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,7 +117,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:27:04 GMT" + "Thu, 06 Oct 2022 06:13:46 GMT" ], "Content-Length": [ "186" @@ -129,26 +129,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9970\",\r\n \"name\": \"RGName-ps9970\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6020\",\r\n \"name\": \"RGName-ps6020\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3656/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps9713?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczM2NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlQnVzL25hbWVzcGFjZXMvc2JuYW1lc3BhY2UtcHM5NzEzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps821/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps4151?api-version=2022-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VCdXMvbmFtZXNwYWNlcy9zYm5hbWVzcGFjZS1wczQxNTE/YXBpLXZlcnNpb249MjAyMi0wMS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "286d22e0-b54b-437b-98a5-43d223e1227b" + "677a629b-110f-4e64-b32f-6fb1775fc459" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -157,6 +156,7 @@ "35" ] }, + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -165,7 +165,7 @@ "no-cache" ], "x-ms-request-id": [ - "0cc50683-9cee-433b-a4e6-e4eb7505ee0b_M0CH3_M0CH3" + "d766d596-bcb6-4b92-b168-a1adeb36b1c8_M3CH3_M3CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" @@ -178,10 +178,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "48fb87da-2ccb-4c75-a821-ece726b0df6d" + "bf90dd4b-cd73-4181-87e5-34238f1d5ff4" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T032706Z:48fb87da-2ccb-4c75-a821-ece726b0df6d" + "WESTUS2:20221006T061349Z:bf90dd4b-cd73-4181-87e5-34238f1d5ff4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -190,10 +190,10 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:27:05 GMT" + "Thu, 06 Oct 2022 06:13:49 GMT" ], "Content-Length": [ - "639" + "698" ], "Content-Type": [ "application/json; charset=utf-8" @@ -202,25 +202,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3656/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps9713\",\r\n \"name\": \"sbnamespace-ps9713\",\r\n \"type\": \"Microsoft.ServiceBus/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:sbnamespace-ps9713\",\r\n \"createdAt\": \"2022-05-02T03:27:06.23Z\",\r\n \"updatedAt\": \"2022-05-02T03:27:06.23Z\",\r\n \"serviceBusEndpoint\": \"https://sbnamespace-ps9713.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps821/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps4151\",\r\n \"name\": \"sbnamespace-ps4151\",\r\n \"type\": \"Microsoft.ServiceBus/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:sbnamespace-ps4151\",\r\n \"createdAt\": \"2022-10-06T06:13:49.287Z\",\r\n \"updatedAt\": \"2022-10-06T06:13:49.287Z\",\r\n \"serviceBusEndpoint\": \"https://sbnamespace-ps4151.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3656/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps9713?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczM2NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlQnVzL25hbWVzcGFjZXMvc2JuYW1lc3BhY2UtcHM5NzEzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps821/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps4151?api-version=2022-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VCdXMvbmFtZXNwYWNlcy9zYm5hbWVzcGFjZS1wczQxNTE/YXBpLXZlcnNpb249MjAyMi0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "286d22e0-b54b-437b-98a5-43d223e1227b" + "677a629b-110f-4e64-b32f-6fb1775fc459" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/5.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -229,23 +229,23 @@ "no-cache" ], "x-ms-request-id": [ - "19337c1e-b25b-4650-ad72-39b5bd2feb75_M10CH3_M10CH3" + "e049aff7-2020-4eb1-b93b-a0be7242fd5c_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "6c808dec-3bb6-4dd3-832c-415a410d39d7" + "48eefbe0-eec0-47e3-a0d3-57f357779274" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T032736Z:6c808dec-3bb6-4dd3-832c-415a410d39d7" + "WESTUS2:20221006T061420Z:48eefbe0-eec0-47e3-a0d3-57f357779274" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -254,10 +254,10 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:27:36 GMT" + "Thu, 06 Oct 2022 06:14:19 GMT" ], "Content-Length": [ - "639" + "698" ], "Content-Type": [ "application/json; charset=utf-8" @@ -266,25 +266,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3656/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps9713\",\r\n \"name\": \"sbnamespace-ps9713\",\r\n \"type\": \"Microsoft.ServiceBus/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:sbnamespace-ps9713\",\r\n \"createdAt\": \"2022-05-02T03:27:06.23Z\",\r\n \"updatedAt\": \"2022-05-02T03:27:06.23Z\",\r\n \"serviceBusEndpoint\": \"https://sbnamespace-ps9713.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps821/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps4151\",\r\n \"name\": \"sbnamespace-ps4151\",\r\n \"type\": \"Microsoft.ServiceBus/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:sbnamespace-ps4151\",\r\n \"createdAt\": \"2022-10-06T06:13:49.287Z\",\r\n \"updatedAt\": \"2022-10-06T06:13:49.287Z\",\r\n \"serviceBusEndpoint\": \"https://sbnamespace-ps4151.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3656/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps9713?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczM2NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlQnVzL25hbWVzcGFjZXMvc2JuYW1lc3BhY2UtcHM5NzEzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps821/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps4151?api-version=2022-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VCdXMvbmFtZXNwYWNlcy9zYm5hbWVzcGFjZS1wczQxNTE/YXBpLXZlcnNpb249MjAyMi0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "286d22e0-b54b-437b-98a5-43d223e1227b" + "677a629b-110f-4e64-b32f-6fb1775fc459" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/5.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -293,23 +293,23 @@ "no-cache" ], "x-ms-request-id": [ - "7724bddf-d60b-4a65-b035-2b09d405a3a7_M4CH3_M4CH3" + "1939d3b7-3afc-468e-b1b7-7aaafa9e2232_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "704efde5-b368-48b9-8525-21b36f0c1510" + "5018997a-b135-4060-8606-eae6ae85bb72" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T032807Z:704efde5-b368-48b9-8525-21b36f0c1510" + "WESTUS2:20221006T061450Z:5018997a-b135-4060-8606-eae6ae85bb72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -318,10 +318,10 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:28:07 GMT" + "Thu, 06 Oct 2022 06:14:50 GMT" ], "Content-Length": [ - "637" + "696" ], "Content-Type": [ "application/json; charset=utf-8" @@ -330,26 +330,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3656/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps9713\",\r\n \"name\": \"sbnamespace-ps9713\",\r\n \"type\": \"Microsoft.ServiceBus/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:sbnamespace-ps9713\",\r\n \"createdAt\": \"2022-05-02T03:27:06.23Z\",\r\n \"updatedAt\": \"2022-05-02T03:27:50.16Z\",\r\n \"serviceBusEndpoint\": \"https://sbnamespace-ps9713.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps821/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps4151\",\r\n \"name\": \"sbnamespace-ps4151\",\r\n \"type\": \"Microsoft.ServiceBus/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:sbnamespace-ps4151\",\r\n \"createdAt\": \"2022-10-06T06:13:49.287Z\",\r\n \"updatedAt\": \"2022-10-06T06:14:33.323Z\",\r\n \"serviceBusEndpoint\": \"https://sbnamespace-ps4151.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9970/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps3425?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczk5NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlQnVzL25hbWVzcGFjZXMvc2JuYW1lc3BhY2UtcHMzNDI1P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6020/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps5889?api-version=2022-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczYwMjAvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlQnVzL25hbWVzcGFjZXMvc2JuYW1lc3BhY2UtcHM1ODg5P2FwaS12ZXJzaW9uPTIwMjItMDEtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "65a47fad-832c-43dd-8b96-d1c0aa1bffac" + "8fa0faa3-bb88-4e78-9885-0cfdce518001" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -358,6 +357,7 @@ "35" ] }, + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -366,7 +366,7 @@ "no-cache" ], "x-ms-request-id": [ - "302c9630-7620-4a3a-98c6-b5be79c7ea30_M10CH3_M10CH3" + "82f25e74-fb71-4875-966c-0e913ac53817_M11CH3_M11CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" @@ -376,13 +376,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "4351ebd7-1933-433b-b7bf-0e534425fecd" + "8c400487-dbb9-4938-b3c7-09d73ce341b3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T032808Z:4351ebd7-1933-433b-b7bf-0e534425fecd" + "WESTUS2:20221006T061454Z:8c400487-dbb9-4938-b3c7-09d73ce341b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -391,10 +391,10 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:28:08 GMT" + "Thu, 06 Oct 2022 06:14:54 GMT" ], "Content-Length": [ - "641" + "697" ], "Content-Type": [ "application/json; charset=utf-8" @@ -403,25 +403,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9970/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps3425\",\r\n \"name\": \"sbnamespace-ps3425\",\r\n \"type\": \"Microsoft.ServiceBus/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:sbnamespace-ps3425\",\r\n \"createdAt\": \"2022-05-02T03:28:07.907Z\",\r\n \"updatedAt\": \"2022-05-02T03:28:07.907Z\",\r\n \"serviceBusEndpoint\": \"https://sbnamespace-ps3425.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6020/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps5889\",\r\n \"name\": \"sbnamespace-ps5889\",\r\n \"type\": \"Microsoft.ServiceBus/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:sbnamespace-ps5889\",\r\n \"createdAt\": \"2022-10-06T06:14:53.82Z\",\r\n \"updatedAt\": \"2022-10-06T06:14:53.82Z\",\r\n \"serviceBusEndpoint\": \"https://sbnamespace-ps5889.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9970/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps3425?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczk5NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlQnVzL25hbWVzcGFjZXMvc2JuYW1lc3BhY2UtcHMzNDI1P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6020/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps5889?api-version=2022-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczYwMjAvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlQnVzL25hbWVzcGFjZXMvc2JuYW1lc3BhY2UtcHM1ODg5P2FwaS12ZXJzaW9uPTIwMjItMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "65a47fad-832c-43dd-8b96-d1c0aa1bffac" + "8fa0faa3-bb88-4e78-9885-0cfdce518001" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/5.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -430,7 +430,7 @@ "no-cache" ], "x-ms-request-id": [ - "f0277d64-2313-4059-918f-4dee552f6dd3_M6CH3_M6CH3" + "d96396b7-da84-45a6-943c-9539b74cde28_M11CH3_M11CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" @@ -440,13 +440,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-correlation-request-id": [ - "b35d8257-6c17-4a11-a33a-e681a7ff04f4" + "17c9e0ee-3143-4d36-9ad9-107055772072" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T032838Z:b35d8257-6c17-4a11-a33a-e681a7ff04f4" + "WESTUS2:20221006T061524Z:17c9e0ee-3143-4d36-9ad9-107055772072" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -455,10 +455,10 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:28:38 GMT" + "Thu, 06 Oct 2022 06:15:23 GMT" ], "Content-Length": [ - "641" + "697" ], "Content-Type": [ "application/json; charset=utf-8" @@ -467,25 +467,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9970/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps3425\",\r\n \"name\": \"sbnamespace-ps3425\",\r\n \"type\": \"Microsoft.ServiceBus/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:sbnamespace-ps3425\",\r\n \"createdAt\": \"2022-05-02T03:28:07.907Z\",\r\n \"updatedAt\": \"2022-05-02T03:28:07.907Z\",\r\n \"serviceBusEndpoint\": \"https://sbnamespace-ps3425.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6020/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps5889\",\r\n \"name\": \"sbnamespace-ps5889\",\r\n \"type\": \"Microsoft.ServiceBus/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:sbnamespace-ps5889\",\r\n \"createdAt\": \"2022-10-06T06:14:53.82Z\",\r\n \"updatedAt\": \"2022-10-06T06:14:53.82Z\",\r\n \"serviceBusEndpoint\": \"https://sbnamespace-ps5889.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9970/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps3425?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczk5NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlQnVzL25hbWVzcGFjZXMvc2JuYW1lc3BhY2UtcHMzNDI1P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6020/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps5889?api-version=2022-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczYwMjAvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlQnVzL25hbWVzcGFjZXMvc2JuYW1lc3BhY2UtcHM1ODg5P2FwaS12ZXJzaW9uPTIwMjItMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "65a47fad-832c-43dd-8b96-d1c0aa1bffac" + "8fa0faa3-bb88-4e78-9885-0cfdce518001" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/5.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -494,7 +494,7 @@ "no-cache" ], "x-ms-request-id": [ - "984cba8e-5a1f-4479-8f1f-089c2793697c_M10CH3_M10CH3" + "bdc14b6e-0711-4a3c-b2ea-6b3778996086_M11CH3_M11CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" @@ -504,13 +504,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-correlation-request-id": [ - "f1eb977b-9b30-4161-b976-2e65ce0a3f6c" + "2775a3d6-080f-4ede-92be-dbadb239dd84" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T032908Z:f1eb977b-9b30-4161-b976-2e65ce0a3f6c" + "WESTUS2:20221006T061554Z:2775a3d6-080f-4ede-92be-dbadb239dd84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -519,10 +519,10 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:29:08 GMT" + "Thu, 06 Oct 2022 06:15:54 GMT" ], "Content-Length": [ - "638" + "696" ], "Content-Type": [ "application/json; charset=utf-8" @@ -531,26 +531,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9970/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps3425\",\r\n \"name\": \"sbnamespace-ps3425\",\r\n \"type\": \"Microsoft.ServiceBus/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:sbnamespace-ps3425\",\r\n \"createdAt\": \"2022-05-02T03:28:07.907Z\",\r\n \"updatedAt\": \"2022-05-02T03:28:51.12Z\",\r\n \"serviceBusEndpoint\": \"https://sbnamespace-ps3425.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6020/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps5889\",\r\n \"name\": \"sbnamespace-ps5889\",\r\n \"type\": \"Microsoft.ServiceBus/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:sbnamespace-ps5889\",\r\n \"createdAt\": \"2022-10-06T06:14:53.82Z\",\r\n \"updatedAt\": \"2022-10-06T06:15:37.007Z\",\r\n \"serviceBusEndpoint\": \"https://sbnamespace-ps5889.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9970/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps8670?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczk5NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlQnVzL25hbWVzcGFjZXMvc2JuYW1lc3BhY2UtcHM4NjcwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6020/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps2144?api-version=2022-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczYwMjAvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlQnVzL25hbWVzcGFjZXMvc2JuYW1lc3BhY2UtcHMyMTQ0P2FwaS12ZXJzaW9uPTIwMjItMDEtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3625601e-1117-492e-9ad8-695f413a3337" + "a1d72b8f-2d45-4f23-b194-a3d26dd5750f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -559,6 +558,7 @@ "35" ] }, + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -567,7 +567,7 @@ "no-cache" ], "x-ms-request-id": [ - "d548dd99-6046-4347-b633-eb5b28138f66_M10CH3_M10CH3" + "9cb3571c-675f-4160-a6bb-efb5fd210d21_M5CH3_M5CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" @@ -577,13 +577,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "80c3100b-b2ba-4fe4-8c11-ec485897ead1" + "57386bd1-fbbc-437e-84fd-262e694cd33d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T032909Z:80c3100b-b2ba-4fe4-8c11-ec485897ead1" + "WESTUS2:20221006T061558Z:57386bd1-fbbc-437e-84fd-262e694cd33d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -592,10 +592,10 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:29:08 GMT" + "Thu, 06 Oct 2022 06:15:58 GMT" ], "Content-Length": [ - "641" + "697" ], "Content-Type": [ "application/json; charset=utf-8" @@ -604,25 +604,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9970/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps8670\",\r\n \"name\": \"sbnamespace-ps8670\",\r\n \"type\": \"Microsoft.ServiceBus/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:sbnamespace-ps8670\",\r\n \"createdAt\": \"2022-05-02T03:29:08.963Z\",\r\n \"updatedAt\": \"2022-05-02T03:29:08.963Z\",\r\n \"serviceBusEndpoint\": \"https://sbnamespace-ps8670.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6020/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps2144\",\r\n \"name\": \"sbnamespace-ps2144\",\r\n \"type\": \"Microsoft.ServiceBus/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:sbnamespace-ps2144\",\r\n \"createdAt\": \"2022-10-06T06:15:57.76Z\",\r\n \"updatedAt\": \"2022-10-06T06:15:57.76Z\",\r\n \"serviceBusEndpoint\": \"https://sbnamespace-ps2144.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9970/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps8670?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczk5NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlQnVzL25hbWVzcGFjZXMvc2JuYW1lc3BhY2UtcHM4NjcwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6020/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps2144?api-version=2022-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczYwMjAvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlQnVzL25hbWVzcGFjZXMvc2JuYW1lc3BhY2UtcHMyMTQ0P2FwaS12ZXJzaW9uPTIwMjItMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3625601e-1117-492e-9ad8-695f413a3337" + "a1d72b8f-2d45-4f23-b194-a3d26dd5750f" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/5.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -631,7 +631,7 @@ "no-cache" ], "x-ms-request-id": [ - "daf5ab33-12c1-4792-84d4-21371a7285db_M1CH3_M1CH3" + "f441d0c8-6544-4c5d-97b1-c3e61048d884_M2CH3_M2CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" @@ -641,13 +641,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11999" ], "x-ms-correlation-request-id": [ - "284a1f9f-5d14-4d22-a0b4-1881f6c13339" + "f4ca3075-4326-41f5-882b-98c878b506cb" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T032939Z:284a1f9f-5d14-4d22-a0b4-1881f6c13339" + "WESTUS2:20221006T061628Z:f4ca3075-4326-41f5-882b-98c878b506cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -656,10 +656,10 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:29:38 GMT" + "Thu, 06 Oct 2022 06:16:28 GMT" ], "Content-Length": [ - "641" + "697" ], "Content-Type": [ "application/json; charset=utf-8" @@ -668,25 +668,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9970/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps8670\",\r\n \"name\": \"sbnamespace-ps8670\",\r\n \"type\": \"Microsoft.ServiceBus/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:sbnamespace-ps8670\",\r\n \"createdAt\": \"2022-05-02T03:29:08.963Z\",\r\n \"updatedAt\": \"2022-05-02T03:29:08.963Z\",\r\n \"serviceBusEndpoint\": \"https://sbnamespace-ps8670.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6020/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps2144\",\r\n \"name\": \"sbnamespace-ps2144\",\r\n \"type\": \"Microsoft.ServiceBus/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:sbnamespace-ps2144\",\r\n \"createdAt\": \"2022-10-06T06:15:57.76Z\",\r\n \"updatedAt\": \"2022-10-06T06:15:57.76Z\",\r\n \"serviceBusEndpoint\": \"https://sbnamespace-ps2144.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9970/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps8670?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczk5NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlQnVzL25hbWVzcGFjZXMvc2JuYW1lc3BhY2UtcHM4NjcwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6020/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps2144?api-version=2022-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczYwMjAvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlQnVzL25hbWVzcGFjZXMvc2JuYW1lc3BhY2UtcHMyMTQ0P2FwaS12ZXJzaW9uPTIwMjItMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3625601e-1117-492e-9ad8-695f413a3337" + "a1d72b8f-2d45-4f23-b194-a3d26dd5750f" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/5.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -695,7 +695,7 @@ "no-cache" ], "x-ms-request-id": [ - "18afc899-8b1f-4dc6-967a-3ca199b4a9eb_M9CH3_M9CH3" + "92473245-07a0-41d4-9211-ffa73f3c93ca_M6CH3_M6CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" @@ -705,13 +705,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11998" ], "x-ms-correlation-request-id": [ - "459d146e-aeeb-4820-8394-9866bd191933" + "52dcf79c-26c0-46bc-ba4b-68a350f26441" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T033009Z:459d146e-aeeb-4820-8394-9866bd191933" + "WESTUS2:20221006T061658Z:52dcf79c-26c0-46bc-ba4b-68a350f26441" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -720,10 +720,10 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:30:09 GMT" + "Thu, 06 Oct 2022 06:16:58 GMT" ], "Content-Length": [ - "638" + "696" ], "Content-Type": [ "application/json; charset=utf-8" @@ -732,34 +732,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9970/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps8670\",\r\n \"name\": \"sbnamespace-ps8670\",\r\n \"type\": \"Microsoft.ServiceBus/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:sbnamespace-ps8670\",\r\n \"createdAt\": \"2022-05-02T03:29:08.963Z\",\r\n \"updatedAt\": \"2022-05-02T03:29:53.28Z\",\r\n \"serviceBusEndpoint\": \"https://sbnamespace-ps8670.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6020/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps2144\",\r\n \"name\": \"sbnamespace-ps2144\",\r\n \"type\": \"Microsoft.ServiceBus/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:sbnamespace-ps2144\",\r\n \"createdAt\": \"2022-10-06T06:15:57.76Z\",\r\n \"updatedAt\": \"2022-10-06T06:16:40.447Z\",\r\n \"serviceBusEndpoint\": \"https://sbnamespace-ps2144.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3656/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps3064?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczM2NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzMzA2ND9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps821/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps1000?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9zeXN0ZW1Ub3BpY3MvUFNUZXN0VG9waWMtcHMxMDAwP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3656/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps9713\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8c6a7f81-4445-4825-92e7-edd60e4ff65d" + "ad5158ae-a702-4389-be82-a167a3509352" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "272" + "271" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps821/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps4151\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -771,7 +771,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f6485108-f8ff-473e-9aab-79e7dbff6bf2" + "adca980e-9465-4c5b-9cfa-e8c9b1419323" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -780,19 +780,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "430e456e-2813-4407-8c6a-6e2f4448d18d" + "d73f4e29-4bad-49b6-9be6-23a8717e668e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T033013Z:430e456e-2813-4407-8c6a-6e2f4448d18d" + "WESTUS2:20221006T061701Z:d73f4e29-4bad-49b6-9be6-23a8717e668e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:30:12 GMT" + "Thu, 06 Oct 2022 06:17:01 GMT" ], "Content-Length": [ - "582" + "580" ], "Content-Type": [ "application/json; charset=utf-8" @@ -801,28 +801,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3656/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps9713\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"e132094e-5b0a-4cfa-b43e-17a21ff9749b\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3656/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps3064\",\r\n \"name\": \"PSTestTopic-ps3064\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps821/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps4151\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"83dc3504-37ce-4bd0-9d73-3c5f9d07fa02\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps821/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps1000\",\r\n \"name\": \"PSTestTopic-ps1000\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3656/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps3064?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczM2NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzMzA2ND9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps821/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps1000?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9zeXN0ZW1Ub3BpY3MvUFNUZXN0VG9waWMtcHMxMDAwP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb68f65b-2552-436e-8a9d-3b2316cb3292" + "5c54796d-e610-4e68-b76a-7ebdae093b98" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -834,7 +834,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1dd5322a-6e79-4077-bc08-8d1b937bc759" + "6c6bb087-221b-4039-bea1-3d18a5140bd7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -843,19 +843,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "52f366ef-0d7c-4f7c-a822-04928e82947e" + "867e9cc3-d149-4ef9-bc13-e0de9833c853" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T033013Z:52f366ef-0d7c-4f7c-a822-04928e82947e" + "WESTUS2:20221006T061702Z:867e9cc3-d149-4ef9-bc13-e0de9833c853" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:30:12 GMT" + "Thu, 06 Oct 2022 06:17:02 GMT" ], "Content-Length": [ - "582" + "580" ], "Content-Type": [ "application/json; charset=utf-8" @@ -864,34 +864,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3656/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps9713\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"e132094e-5b0a-4cfa-b43e-17a21ff9749b\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3656/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps3064\",\r\n \"name\": \"PSTestTopic-ps3064\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps821/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps4151\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"83dc3504-37ce-4bd0-9d73-3c5f9d07fa02\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps821/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps1000\",\r\n \"name\": \"PSTestTopic-ps1000\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9970/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4268?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczk5NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNDI2OD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6020/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4213?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczYwMjAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNDIxMz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9970/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps3425\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ea215c56-fee0-467e-9740-2b66872860c5" + "a73ad728-b16a-45c8-af61-777a4dcf01d4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "272" + "337" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6020/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps5889\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Dept\": \"IT\",\r\n \"Environment\": \"Test\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -903,28 +903,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3f10922f-264d-48f9-b7d3-c2d667c12e56" + "eb6dfd07-6677-469a-9415-995f4e75ecc4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "d0327f5f-61b5-4f9e-bcbc-3d5d3a111c0a" + "14650a74-a783-4e5e-8806-2e59ba8bcb96" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T033014Z:d0327f5f-61b5-4f9e-bcbc-3d5d3a111c0a" + "WESTUS2:20221006T061705Z:14650a74-a783-4e5e-8806-2e59ba8bcb96" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:30:13 GMT" + "Thu, 06 Oct 2022 06:17:05 GMT" ], "Content-Length": [ - "582" + "612" ], "Content-Type": [ "application/json; charset=utf-8" @@ -933,26 +933,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9970/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps3425\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"cc31c8af-cb62-4bef-875c-92e713da85c0\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9970/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4268\",\r\n \"name\": \"PSTestTopic-ps4268\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6020/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps5889\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"d7cbbafe-c627-4a86-96c1-8b6dde3ba46b\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Dept\": \"IT\",\r\n \"Environment\": \"Test\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6020/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4213\",\r\n \"name\": \"PSTestTopic-ps4213\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9970/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps9327?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczk5NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzOTMyNz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6020/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps7340?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczYwMjAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNzM0MD9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9970/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps8670\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e7987150-8125-4cc5-8f60-add259b731aa" + "15348758-b018-4b48-a8ec-8338f53ebec6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -961,6 +960,7 @@ "272" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6020/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps2144\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -972,25 +972,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cfee90bf-8124-4d5f-a933-f418d89d469b" + "b6af68ab-6b34-4f63-ad6e-52f611982df3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "8b0b7fc1-b731-4b93-b97f-7b8c90ce44fb" + "c1750ed1-46dc-49bc-9a58-eefa5a1f9dc7" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T033016Z:8b0b7fc1-b731-4b93-b97f-7b8c90ce44fb" + "WESTUS2:20221006T061708Z:c1750ed1-46dc-49bc-9a58-eefa5a1f9dc7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:30:15 GMT" + "Thu, 06 Oct 2022 06:17:08 GMT" ], "Content-Length": [ "582" @@ -1002,28 +1002,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9970/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps8670\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"5ef52ba1-404b-44f7-b17a-e96d0d8e6f3a\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9970/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps9327\",\r\n \"name\": \"PSTestTopic-ps9327\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6020/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps2144\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"82c6e882-69ab-420c-af88-bf64449cb15e\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6020/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps7340\",\r\n \"name\": \"PSTestTopic-ps7340\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9970/providers/Microsoft.EventGrid/systemTopics?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczk5NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6020/providers/Microsoft.EventGrid/systemTopics?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczYwMjAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7293821e-ee5a-441f-93d5-fedbcd5245ad" + "a6947c63-371a-4ba7-a1a0-e8e26334363e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1035,28 +1035,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "693bd8bf-7896-4a03-9dd9-e6e3487b0bfd" + "5cc5b0fe-99a1-4816-aea2-8a5e807aede9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-correlation-request-id": [ - "efc207e6-d39f-4b37-aed2-ef0e5ff21987" + "4859e0f9-cb29-4cda-b821-aa8a5e0282cd" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T033016Z:efc207e6-d39f-4b37-aed2-ef0e5ff21987" + "WESTUS2:20221006T061709Z:4859e0f9-cb29-4cda-b821-aa8a5e0282cd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:30:15 GMT" + "Thu, 06 Oct 2022 06:17:09 GMT" ], "Content-Length": [ - "1177" + "1207" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1065,103 +1065,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9970/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps3425\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"cc31c8af-cb62-4bef-875c-92e713da85c0\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9970/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4268\",\r\n \"name\": \"PSTestTopic-ps4268\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9970/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps8670\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"5ef52ba1-404b-44f7-b17a-e96d0d8e6f3a\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9970/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps9327\",\r\n \"name\": \"PSTestTopic-ps9327\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6020/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps5889\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"d7cbbafe-c627-4a86-96c1-8b6dde3ba46b\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Dept\": \"IT\",\r\n \"Environment\": \"Test\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6020/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4213\",\r\n \"name\": \"PSTestTopic-ps4213\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6020/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps2144\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"82c6e882-69ab-420c-af88-bf64449cb15e\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6020/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps7340\",\r\n \"name\": \"PSTestTopic-ps7340\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/systemTopics?api-version=2021-12-01&$top=1", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3N5c3RlbVRvcGljcz9hcGktdmVyc2lvbj0yMDIxLTEyLTAxJiR0b3A9MQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/systemTopics?api-version=2022-06-15&$top=1", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3N5c3RlbVRvcGljcz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1JiR0b3A9MQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44b41b73-574c-4731-836c-30135c5612c3" + "5fcbc9e2-de79-47b9-9c8e-50d92266728c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-original-request-ids": [ - "3e18ac0d-9de1-4084-94dd-197316d79139", - "8294c5db-c29b-4dfe-b37b-cf1af508c8db", - "1552dc5b-857b-4376-8f65-686de1c8c7f5", - "907e3d3c-2cb0-4bab-bfe1-5a9836f4eb5b", - "012fa051-9258-4dd0-b85c-3b3ef8b81256", - "1c937b82-d39b-44d6-a2bf-02d842483a99", - "4825a7b9-9de0-4384-8666-6472d819e12e", - "b9d95b24-47e4-4360-a0b7-90cb42385cea", - "bb668563-f3e3-4363-ac65-3ab22341ec9c", - "1f61bc24-7cf3-49c4-a4f4-714a846d01d6", - "a0161f14-795b-4d96-af95-9b77d724ebce", - "568057c6-9a23-4cac-b5b8-e2e7938e5bb7", - "2a791cbe-971f-4a76-a04e-6551f95153fd" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-request-id": [ - "bcb4043d-91cf-4d92-99fd-7225552e2ac0" - ], - "x-ms-correlation-request-id": [ - "bcb4043d-91cf-4d92-99fd-7225552e2ac0" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T033018Z:bcb4043d-91cf-4d92-99fd-7225552e2ac0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 May 2022 03:30:17 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "8766" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"a3697492-d56a-490e-be64-4c0d14820ddc\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg/providers/Microsoft.EventGrid/systemTopics/kalsrg-b2678b2e-0938-4243-9fc5-823489b1b2bf\",\r\n \"name\": \"kalsrg-b2678b2e-0938-4243-9fc5-823489b1b2bf\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps530/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps2827\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"29d2a45b-e60a-435d-9666-6e72daa360b4\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps530/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps3084\",\r\n \"name\": \"PSTestTopic-ps3084\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup/providers/microsoft.storage/storageaccounts/egstrglocalwestus20\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"69e819bb-0136-4ac3-a921-b46ae94ba476\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup/providers/Microsoft.EventGrid/systemTopics/egstrglocalwestus20-2558a314-664c-4739-946d-9a2b8960c9b2\",\r\n \"name\": \"egstrglocalwestus20-2558a314-664c-4739-946d-9a2b8960c9b2\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.Storage/storageAccounts/kishpteststg\",\r\n \"topicType\": \"Microsoft.Storage.StorageAccounts\",\r\n \"metricResourceId\": \"80a7f69a-eb55-47db-83ef-dca84ad2808b\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"b3c998fc-b500-44dd-81b5-bdd7d18b99f7\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.EventGrid/systemTopics/kishpegstgsystopic\",\r\n \"name\": \"kishpegstgsystopic\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.Storage/storageAccounts/kishpteststgwestus\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"afde3958-60e6-4e8a-9d2a-e7a596e43805\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.EventGrid/systemTopics/kishpteststgwestus-fcc7adcc-b037-4ef1-8feb-5484902b2b0a\",\r\n \"name\": \"kishpteststgwestus-fcc7adcc-b037-4ef1-8feb-5484902b2b0a\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrgstorage/providers/Microsoft.Storage/storageAccounts/teststoragezrs\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"0175af6e-c4bc-41a0-91ad-f5989d487f53\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"australiaeast\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrgstorage/providers/Microsoft.EventGrid/systemTopics/teststoragezrs-c0068ed8-f5ee-4c7f-a23f-ed8dc0f6b153\",\r\n \"name\": \"teststoragezrs-c0068ed8-f5ee-4c7f-a23f-ed8dc0f6b153\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/ahsdk/providers/Microsoft.Storage/storageAccounts/ahtestreprostg\",\r\n \"topicType\": \"Microsoft.Storage.StorageAccounts\",\r\n \"metricResourceId\": \"eddaba60-0327-4309-96d5-3911dea245a3\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westeurope\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/ahsdk/providers/Microsoft.EventGrid/systemTopics/any1\",\r\n \"name\": \"any1\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.Storage/storageAccounts/msitest5\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"5deccc33-df76-467e-8cdb-4d564e972534\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a23acb3a-4580-4384-85d2-d1e309e540cd\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/systemTopics/systemtopic2storage3\",\r\n \"name\": \"systemtopic2storage3\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newregionsrg/providers/microsoft.storage/storageaccounts/stgsouthafricanorth\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"10c4929e-6c45-48e2-94f5-4f4cb480e31c\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"southafricanorth\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newregionsrg/providers/Microsoft.EventGrid/systemTopics/stgsouthafricanorth-34dfd305-9c83-4c12-a86e-a3035e831a28\",\r\n \"name\": \"stgsouthafricanorth-34dfd305-9c83-4c12-a86e-a3035e831a28\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted/providers/Microsoft.Storage/storageAccounts/trackedsource2stg\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"a8e801b6-10bd-4173-badf-51ad1277988b\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9130/providers/Microsoft.EventGrid/systemTopics/sdk-SystemTopic-7607\",\r\n \"name\": \"sdk-SystemTopic-7607\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.ApiManagement/service/kishpapimanagement\",\r\n \"topicType\": \"Microsoft.ApiManagement.Service\",\r\n \"metricResourceId\": \"965c8c7d-1ff5-443b-ae14-0fab7645a9a7\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/systemTopics/kishpegapisystopic\",\r\n \"name\": \"kishpegapisystopic\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newregionsrg/providers/microsoft.storage/storageaccounts/stgsafwestdelete\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"6c34d61a-1799-4e66-bcac-4ded3483c2f1\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"southafricawest\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newregionsrg/providers/Microsoft.EventGrid/systemTopics/stgsafwestdelete-ebe613dd-73c6-4ec2-928a-1fb6d91573c9\",\r\n \"name\": \"stgsafwestdelete-ebe613dd-73c6-4ec2-928a-1fb6d91573c9\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/systemTopics?api-version=2021-12-01&%24top=1&%24skiptoken=3VZdb6pAEP0vpvbpWhVEsElzM8CKK6DyVet946sr9cJaQKU2%2fe93sWruc6Mvkg0Mm5OBnTNnZj4bWVyVRpKtisbjZ0MzpjIYjcfGsizXxWO7nfqZT%2bI0zsoHf7%2fJ44eQpu1iExRhnqzLhGZFWwh6QV%2foxC1OCgatnjjotALeD1pRFESSFImcGPba65xukyjOi7aZhDkt6Gv5gLbMrZYnUbv4KMo4dek6CYvf%2fjppbRmSOX%2fiOly31eVane79XbFiX6SrOHtqCkFTDJocd3hlzybv13cusLFa22I8eCUejPX9nKwwnK8mH9WL422XwbrMcG3laGHnmVnMCY%2fRlFl9QRBqxHBWI4AgMHewATAAhp4FCge4J8eEKDKiMF2O5qrck1%2bIPB%2f1cWoR07FhoZbEGoFFYAlzUJrcK10oMlGX2oeMKow0lch61ucUhvSWlg%2fYCgM5CRUwN6IOBFJdeiXv7FwMAXu2oWfkdAb2pyE7dO5nJD6G4BCTNMn%2bi8gRlfrVeXM4rE0xqpcQ3d%2bVdP3UbfxqzJHjKmji2mB4zg2kAKkkFQxD3oCTDi3pmASn8P0oBaSZutNA9587ltcDOPm6ChWew90ACeHLZAVTlsFvL2DxZyGeQ%2fcjGsAE0ECNIcMU%2fVVBAaQfkvrCikDguDchhUrsJWC6GoKJN4PLSMF%2b2ykwdCSbYODf6aGuXkkIN6ADZ8OiNVbiAVHGubW4RDHyR0uqAE7LEWPgD5auw8C5IyAPZrdARDmMYbZdmKALpmVdgghLX7ISZKQVqqVA0Zw16j%2fUXjFyfF1je2MDxUDUqKgkBXRWDEu8w8DGgT7OgCidxKEIZvp7RRfXIfG7kHE3QiHPs6EKc0UKTrBnw9X3dWrGP%2boob4ZjMn1uJmMLw3TslUBk92qz1tfXPw%3d%3d\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/systemTopics?api-version=2021-12-01&$top=1", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3N5c3RlbVRvcGljcz9hcGktdmVyc2lvbj0yMDIxLTEyLTAxJiR0b3A9MQ==", - "RequestMethod": "GET", "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1271f229-0758-4e16-ac35-ee3dfe7e0fe8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.16002", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" - ] - }, "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1170,31 +1095,31 @@ "no-cache" ], "x-ms-original-request-ids": [ - "2b554dad-de39-49c1-bfaa-7f562721450d", - "fc07c3c9-bb46-4fa2-9c83-9d36f708b718", - "0cd6e0d7-c8ad-4d6f-a1b1-ce6ecbba78c7", - "3b707f3a-b15f-45ff-b23b-d8df0935daf4", - "f502c26f-580f-409a-be3d-4523c49272b4", - "a71422bd-2c87-4244-983d-13a0fce5dff2", - "de4df4c9-5e6b-4b8f-9385-0127533dcd50", - "9b654eaa-9c37-4f80-aba3-d40a3d286c7f", - "4e55f843-5c23-45ae-b18b-aaff0705c7a3", - "5a300588-c479-46ef-bbfa-05e581d54206", - "60614a74-9e15-44fb-b284-a6563170e5ce", - "e17ff1f8-f642-46f3-926c-0114a2d2e8d3", - "7866a749-9f3a-4fd2-9c77-1df2fdd3c80e" + "f3fa2cce-8fd0-4b14-a434-e39d1e8155ef", + "bcd9be70-1550-44f0-bf53-c2b2d982df7f", + "d59c0a42-acfe-4b55-bd09-db216640c23d", + "084f0e8e-3df9-4ccf-b543-3d70ba1eb52f", + "e3d3aee7-22d2-4282-9464-b5bdd4dfd6e2", + "39e5447a-d1f8-4b34-973d-a684004c1193", + "a02ba22a-8a3c-45c4-8242-4afff2f7ec37", + "566df18c-9ca5-4ef4-a85d-eec5f4846bda", + "89a755bc-3d42-47ec-9eb9-bff0558e6851", + "9dab8eee-bd26-4826-81a4-e141780b3796", + "46db5db4-39fe-4cfb-a700-ba614bdb95ec", + "7e8eae58-0d3f-4b12-87e7-77e9c52025ca", + "938512fc-b252-49b8-9620-0ae8a29e6d0f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11999" ], "x-ms-request-id": [ - "9d9b9a7f-7dfe-4924-ade8-8d78ee59653f" + "2cebce08-d123-4fcc-bcde-55e4f00a84c8" ], "x-ms-correlation-request-id": [ - "9d9b9a7f-7dfe-4924-ade8-8d78ee59653f" + "2cebce08-d123-4fcc-bcde-55e4f00a84c8" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T033018Z:9d9b9a7f-7dfe-4924-ade8-8d78ee59653f" + "WESTUS2:20221006T061711Z:2cebce08-d123-4fcc-bcde-55e4f00a84c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1203,7 +1128,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:30:18 GMT" + "Thu, 06 Oct 2022 06:17:11 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1212,31 +1137,31 @@ "-1" ], "Content-Length": [ - "8766" + "8798" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"a3697492-d56a-490e-be64-4c0d14820ddc\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg/providers/Microsoft.EventGrid/systemTopics/kalsrg-b2678b2e-0938-4243-9fc5-823489b1b2bf\",\r\n \"name\": \"kalsrg-b2678b2e-0938-4243-9fc5-823489b1b2bf\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps530/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps2827\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"29d2a45b-e60a-435d-9666-6e72daa360b4\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps530/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps3084\",\r\n \"name\": \"PSTestTopic-ps3084\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup/providers/microsoft.storage/storageaccounts/egstrglocalwestus20\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"69e819bb-0136-4ac3-a921-b46ae94ba476\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup/providers/Microsoft.EventGrid/systemTopics/egstrglocalwestus20-2558a314-664c-4739-946d-9a2b8960c9b2\",\r\n \"name\": \"egstrglocalwestus20-2558a314-664c-4739-946d-9a2b8960c9b2\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.Storage/storageAccounts/kishpteststg\",\r\n \"topicType\": \"Microsoft.Storage.StorageAccounts\",\r\n \"metricResourceId\": \"80a7f69a-eb55-47db-83ef-dca84ad2808b\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"b3c998fc-b500-44dd-81b5-bdd7d18b99f7\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.EventGrid/systemTopics/kishpegstgsystopic\",\r\n \"name\": \"kishpegstgsystopic\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.Storage/storageAccounts/kishpteststgwestus\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"afde3958-60e6-4e8a-9d2a-e7a596e43805\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.EventGrid/systemTopics/kishpteststgwestus-fcc7adcc-b037-4ef1-8feb-5484902b2b0a\",\r\n \"name\": \"kishpteststgwestus-fcc7adcc-b037-4ef1-8feb-5484902b2b0a\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrgstorage/providers/Microsoft.Storage/storageAccounts/teststoragezrs\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"0175af6e-c4bc-41a0-91ad-f5989d487f53\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"australiaeast\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrgstorage/providers/Microsoft.EventGrid/systemTopics/teststoragezrs-c0068ed8-f5ee-4c7f-a23f-ed8dc0f6b153\",\r\n \"name\": \"teststoragezrs-c0068ed8-f5ee-4c7f-a23f-ed8dc0f6b153\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/ahsdk/providers/Microsoft.Storage/storageAccounts/ahtestreprostg\",\r\n \"topicType\": \"Microsoft.Storage.StorageAccounts\",\r\n \"metricResourceId\": \"eddaba60-0327-4309-96d5-3911dea245a3\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westeurope\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/ahsdk/providers/Microsoft.EventGrid/systemTopics/any1\",\r\n \"name\": \"any1\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.Storage/storageAccounts/msitest5\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"5deccc33-df76-467e-8cdb-4d564e972534\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a23acb3a-4580-4384-85d2-d1e309e540cd\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/systemTopics/systemtopic2storage3\",\r\n \"name\": \"systemtopic2storage3\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newregionsrg/providers/microsoft.storage/storageaccounts/stgsouthafricanorth\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"10c4929e-6c45-48e2-94f5-4f4cb480e31c\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"southafricanorth\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newregionsrg/providers/Microsoft.EventGrid/systemTopics/stgsouthafricanorth-34dfd305-9c83-4c12-a86e-a3035e831a28\",\r\n \"name\": \"stgsouthafricanorth-34dfd305-9c83-4c12-a86e-a3035e831a28\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted/providers/Microsoft.Storage/storageAccounts/trackedsource2stg\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"a8e801b6-10bd-4173-badf-51ad1277988b\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9130/providers/Microsoft.EventGrid/systemTopics/sdk-SystemTopic-7607\",\r\n \"name\": \"sdk-SystemTopic-7607\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.ApiManagement/service/kishpapimanagement\",\r\n \"topicType\": \"Microsoft.ApiManagement.Service\",\r\n \"metricResourceId\": \"965c8c7d-1ff5-443b-ae14-0fab7645a9a7\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/systemTopics/kishpegapisystopic\",\r\n \"name\": \"kishpegapisystopic\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newregionsrg/providers/microsoft.storage/storageaccounts/stgsafwestdelete\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"6c34d61a-1799-4e66-bcac-4ded3483c2f1\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"southafricawest\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newregionsrg/providers/Microsoft.EventGrid/systemTopics/stgsafwestdelete-ebe613dd-73c6-4ec2-928a-1fb6d91573c9\",\r\n \"name\": \"stgsafwestdelete-ebe613dd-73c6-4ec2-928a-1fb6d91573c9\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/systemTopics?api-version=2021-12-01&%24top=1&%24skiptoken=3VZdb6pAEP0vpvbpWhVEsElzM8CKK6DyVet946sr9cJaQKU2%2fe93sWruc6Mvkg0Mm5OBnTNnZj4bWVyVRpKtisbjZ0MzpjIYjcfGsizXxWO7nfqZT%2bI0zsoHf7%2fJ44eQpu1iExRhnqzLhGZFWwh6QV%2foxC1OCgatnjjotALeD1pRFESSFImcGPba65xukyjOi7aZhDkt6Gv5gLbMrZYnUbv4KMo4dek6CYvf%2fjppbRmSOX%2fiOly31eVane79XbFiX6SrOHtqCkFTDJocd3hlzybv13cusLFa22I8eCUejPX9nKwwnK8mH9WL422XwbrMcG3laGHnmVnMCY%2fRlFl9QRBqxHBWI4AgMHewATAAhp4FCge4J8eEKDKiMF2O5qrck1%2bIPB%2f1cWoR07FhoZbEGoFFYAlzUJrcK10oMlGX2oeMKow0lch61ucUhvSWlg%2fYCgM5CRUwN6IOBFJdeiXv7FwMAXu2oWfkdAb2pyE7dO5nJD6G4BCTNMn%2bi8gRlfrVeXM4rE0xqpcQ3d%2bVdP3UbfxqzJHjKmji2mB4zg2kAKkkFQxD3oCTDi3pmASn8P0oBaSZutNA9587ltcDOPm6ChWew90ACeHLZAVTlsFvL2DxZyGeQ%2fcjGsAE0ECNIcMU%2fVVBAaQfkvrCikDguDchhUrsJWC6GoKJN4PLSMF%2b2ykwdCSbYODf6aGuXkkIN6ADZ8OiNVbiAVHGubW4RDHyR0uqAE7LEWPgD5auw8C5IyAPZrdARDmMYbZdmKALpmVdgghLX7ISZKQVqqVA0Zw16j%2fUXjFyfF1je2MDxUDUqKgkBXRWDEu8w8DGgT7OgCidxKEIZvp7RRfXIfG7kHE3QiHPs6EKc0UKTrBnw9X3dWrGP%2boob4ZjMn1uJmMLw3TslUBk92qz1tfXPw%3d%3d\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"a3697492-d56a-490e-be64-4c0d14820ddc\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg/providers/Microsoft.EventGrid/systemTopics/kalsrg-b2678b2e-0938-4243-9fc5-823489b1b2bf\",\r\n \"name\": \"kalsrg-b2678b2e-0938-4243-9fc5-823489b1b2bf\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps530/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps2827\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"29d2a45b-e60a-435d-9666-6e72daa360b4\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps530/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps3084\",\r\n \"name\": \"PSTestTopic-ps3084\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup/providers/microsoft.storage/storageaccounts/egstrglocalwestus20\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"69e819bb-0136-4ac3-a921-b46ae94ba476\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup/providers/Microsoft.EventGrid/systemTopics/egstrglocalwestus20-2558a314-664c-4739-946d-9a2b8960c9b2\",\r\n \"name\": \"egstrglocalwestus20-2558a314-664c-4739-946d-9a2b8960c9b2\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.Storage/storageAccounts/kishpteststg\",\r\n \"topicType\": \"Microsoft.Storage.StorageAccounts\",\r\n \"metricResourceId\": \"80a7f69a-eb55-47db-83ef-dca84ad2808b\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"b3c998fc-b500-44dd-81b5-bdd7d18b99f7\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.EventGrid/systemTopics/kishpegstgsystopic\",\r\n \"name\": \"kishpegstgsystopic\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.Storage/storageAccounts/kishpteststgwestus\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"afde3958-60e6-4e8a-9d2a-e7a596e43805\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.EventGrid/systemTopics/kishpteststgwestus-fcc7adcc-b037-4ef1-8feb-5484902b2b0a\",\r\n \"name\": \"kishpteststgwestus-fcc7adcc-b037-4ef1-8feb-5484902b2b0a\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrgstorage/providers/Microsoft.Storage/storageAccounts/teststoragezrs\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"0175af6e-c4bc-41a0-91ad-f5989d487f53\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"australiaeast\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrgstorage/providers/Microsoft.EventGrid/systemTopics/teststoragezrs-c0068ed8-f5ee-4c7f-a23f-ed8dc0f6b153\",\r\n \"name\": \"teststoragezrs-c0068ed8-f5ee-4c7f-a23f-ed8dc0f6b153\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/ahsdk/providers/Microsoft.Storage/storageAccounts/ahtestreprostg\",\r\n \"topicType\": \"Microsoft.Storage.StorageAccounts\",\r\n \"metricResourceId\": \"eddaba60-0327-4309-96d5-3911dea245a3\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westeurope\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/ahsdk/providers/Microsoft.EventGrid/systemTopics/any1\",\r\n \"name\": \"any1\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.Storage/storageAccounts/msitest5\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"5deccc33-df76-467e-8cdb-4d564e972534\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a23acb3a-4580-4384-85d2-d1e309e540cd\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/systemTopics/systemtopic2storage3\",\r\n \"name\": \"systemtopic2storage3\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newregionsrg/providers/microsoft.storage/storageaccounts/stgsouthafricanorth\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"10c4929e-6c45-48e2-94f5-4f4cb480e31c\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"southafricanorth\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newregionsrg/providers/Microsoft.EventGrid/systemTopics/stgsouthafricanorth-34dfd305-9c83-4c12-a86e-a3035e831a28\",\r\n \"name\": \"stgsouthafricanorth-34dfd305-9c83-4c12-a86e-a3035e831a28\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted/providers/Microsoft.Storage/storageAccounts/trackedsource2stg\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"a8e801b6-10bd-4173-badf-51ad1277988b\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9130/providers/Microsoft.EventGrid/systemTopics/sdk-SystemTopic-7607\",\r\n \"name\": \"sdk-SystemTopic-7607\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.ApiManagement/service/kishpapimanagement\",\r\n \"topicType\": \"Microsoft.ApiManagement.Service\",\r\n \"metricResourceId\": \"965c8c7d-1ff5-443b-ae14-0fab7645a9a7\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/systemTopics/kishpegapisystopic\",\r\n \"name\": \"kishpegapisystopic\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newregionsrg/providers/microsoft.storage/storageaccounts/stgsafwestdelete\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"6c34d61a-1799-4e66-bcac-4ded3483c2f1\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"southafricawest\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newregionsrg/providers/Microsoft.EventGrid/systemTopics/stgsafwestdelete-ebe613dd-73c6-4ec2-928a-1fb6d91573c9\",\r\n \"name\": \"stgsafwestdelete-ebe613dd-73c6-4ec2-928a-1fb6d91573c9\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/systemTopics?api-version=2022-06-15&%24top=1&%24skiptoken=3ZZZb%2bIwEMe%2fS1T6VArNAaFStZqchITDOUrhLYdrApujSTirfvd1WBbtBwgvRFYytkaOxz%2f%2fx%2fPNpPhQWXG6KZnXb0a3phJYzCuzqqq8fO10Ej%2f1CU5wWj37p22Bn8Ms6ZTboAyLOK%2fiLC07QsAHPaGL26wYDNp8f9BtB5wftKMoiEQx6rP9kO%2fkRbaLI1yUnXEcFlmZfVbP6o5Oqxdx1CmPZYUTN8vjsPzl53F7Rz3p5G9sl2Xb3V77RXh8KDf0j9kGp28tIWj1gxbLnrv02%2bL8%2bs0GtqHUdh8PPokHI%2fM0JxsDrk%2bLi%2brGcrZL3V6o4dryxTKcd2rRSThDnVKrJwhC7YFkjfZEammz2heICtM9%2bAAWgOYhkFkweAkTIktqBtOVgZVoEXkp6ADEAGFZ6hKRzLTHyrCAFIhibY9Eh1G8O%2fFIIspYBvjC070BNIJcPK%2bQriOkIRV%2bSvAlwHPESZz%2bF%2b%2fFK%2fEP10FNq81%2bVDchenyosvzthXli5qrjyurEtcHynDsATA6iApYlbcFJNCReEDcEWETu3gTTfzfQkoAWS6zxLkkA0hDBsN7fG8DxHPYOsIQfkw1M6TlefwDirsKDhsDAGKisFAypkam%2fFZBBNc8HvmEgKjjuXcjk0OdjGLu6ChNvBk3LxF3vZdAc0aZ5jvvKp0CkXkX%2bsb6RTO5AJc6W7ttIxgMijwq0aDZ5%2bfYqk8FIqiGlsjQGOqUS3pDK9VZRPZjdA5xKwzDbLcZgCmOEmoWDrBVNWlZyUGvJZOocCCwze0OB%2baZOx0aWimmJEJVHWhbMaCKNTToqfmUFxTjPj10Z5GPPIggUc%2bCsbye2vymQvROoHIeGYLBlAk5wQqRZqOuxQ2GNthMLGeAJ%2fA6I3E1clebGOd94ufDzxPhFAoQUmPgVjty6Jqa6A3vM%2fPwB\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/systemTopics?api-version=2021-12-01&%24top=1&%24skiptoken=3VZdb6pAEP0vpvbpWhVEsElzM8CKK6DyVet946sr9cJaQKU2%2fe93sWruc6Mvkg0Mm5OBnTNnZj4bWVyVRpKtisbjZ0MzpjIYjcfGsizXxWO7nfqZT%2bI0zsoHf7%2fJ44eQpu1iExRhnqzLhGZFWwh6QV%2foxC1OCgatnjjotALeD1pRFESSFImcGPba65xukyjOi7aZhDkt6Gv5gLbMrZYnUbv4KMo4dek6CYvf%2fjppbRmSOX%2fiOly31eVane79XbFiX6SrOHtqCkFTDJocd3hlzybv13cusLFa22I8eCUejPX9nKwwnK8mH9WL422XwbrMcG3laGHnmVnMCY%2fRlFl9QRBqxHBWI4AgMHewATAAhp4FCge4J8eEKDKiMF2O5qrck1%2bIPB%2f1cWoR07FhoZbEGoFFYAlzUJrcK10oMlGX2oeMKow0lch61ucUhvSWlg%2fYCgM5CRUwN6IOBFJdeiXv7FwMAXu2oWfkdAb2pyE7dO5nJD6G4BCTNMn%2bi8gRlfrVeXM4rE0xqpcQ3d%2bVdP3UbfxqzJHjKmji2mB4zg2kAKkkFQxD3oCTDi3pmASn8P0oBaSZutNA9587ltcDOPm6ChWew90ACeHLZAVTlsFvL2DxZyGeQ%2fcjGsAE0ECNIcMU%2fVVBAaQfkvrCikDguDchhUrsJWC6GoKJN4PLSMF%2b2ykwdCSbYODf6aGuXkkIN6ADZ8OiNVbiAVHGubW4RDHyR0uqAE7LEWPgD5auw8C5IyAPZrdARDmMYbZdmKALpmVdgghLX7ISZKQVqqVA0Zw16j%2fUXjFyfF1je2MDxUDUqKgkBXRWDEu8w8DGgT7OgCidxKEIZvp7RRfXIfG7kHE3QiHPs6EKc0UKTrBnw9X3dWrGP%2boob4ZjMn1uJmMLw3TslUBk92qz1tfXPw%3d%3d", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3N5c3RlbVRvcGljcz9hcGktdmVyc2lvbj0yMDIxLTEyLTAxJiUyNHRvcD0xJiUyNHNraXB0b2tlbj0zVlpkYjZwQUVQMHZwdmJwV2hWRXNFbHpNOENLSzZEeVZldDk0NnNyOWNKYVFLVTIlMmZlOTNzV3J1YzZNdmtnME1tNU9CblROblpqNGJXVnlWUnBLdGlzYmpaME16cGpJWWpjZkdzaXpYeFdPN25mcVpUJTJiSTB6c29IZjclMmZKNDRlUXB1MWlFeFJobnF6TGhHWkZXd2g2UVYlMmZveEMxT0NnYXRuampvdEFMZUQxcFJGRVNTRkltY0dQYmE2NXh1a3lqT2k3YVpoRGt0Nkd2NWdMYk1yWlluVWJ2NEtNbzRkZWs2Q1l2ZiUyZmpwcGJSbVNPWCUyZmlPbHkzMWVWYW5lNzlYYkZpWDZTck9IdHFDa0ZUREpvY2QzaGx6eWJ2MTNjdXNMRmEyMkk4ZUNVZWpQWDluS3d3bks4bUg5V0w0MjJYd2JyTWNHM2xhR0hubVZuTUNZJTJmUmxGbDlRUkJxeEhCV0k0QWdNSGV3QVRBQWhwNEZDZ2U0SjhlRUtES2lNRjJPNXFyY2sxJTJiSVBCJTJmMWNXb1IwN0Zob1piRUdvRkZZQWx6VUpyY0sxMG9NbEdYMm9lTUtvdzBsY2g2MXVjVWh2U1dsZyUyZllDZ001Q1JVd042SU9CRkpkZWlYdjdGd01BWHUyb1dma2RBYjJweUU3ZE81bkpENkc0QkNUTk1uJTJiaThnUmxmclZlWE00ckUweHFwY1EzZCUyYlZkUDNVYmZ4cXpKSGpLbWppMm1CNHpnMmtBS2trRlF4RDNvQ1REaTNwbUFTbjhQMG9CYVNadXROQTk1ODdsdGNET1BtNkNoV2V3OTBBQ2VITFpBVlRsc0Z2TDJEeFp5R2VRJTJmY2pHc0FFMEVDTkljTVUlMmZWVkJBYVFma3ZyQ2lrRGd1RGNoaFVyc0pXQzZHb0tKTjRQTFNNRiUyYjJ5a3dkQ1NiWU9EZjZhR3VYa2tJTjZBRFo4T2lOVmJpQVZIR3ViVzRSREh5UjB1cUFFN0xFV1BnRDVhdXc4QzVJeUFQWnJkQVJEbU1ZYlpkbUtBTHBtVmRnZ2hMWDdJU1pLUVZxcVZBMFp3MTZqJTJmVVhqRnlmRjFqZTJNRHhVRFVxS2drQlhSV0RFdTh3OERHZ1Q3T2dDaWR4S0VJWnZwN1JSZlhJZkc3a0hFM1FpSFBzNkVLYzBVS1RyQm53OVgzZFdyR1AlMmJvb2I0WmpNbjF1Sm1NTHczVHNsVUJrOTJxejF0ZlhQdyUzZCUzZA==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/systemTopics?api-version=2022-06-15&$top=1", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3N5c3RlbVRvcGljcz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1JiR0b3A9MQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6011b71e-5b7d-4bbb-9522-fde5b936d402" + "ef75e13c-d5e8-49eb-8465-11158718839d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1245,25 +1170,31 @@ "no-cache" ], "x-ms-original-request-ids": [ - "5b280833-18ff-4f2c-b93f-d3f059ddbad2", - "d7713703-be11-4ec4-b17f-4f507d315d30", - "46495d1d-0797-4124-bbb7-568096fc6af2", - "23c3e229-75f9-4040-bbf3-747343c80f73", - "a886da8c-e4ad-48f0-afb1-26b1f92d7dac", - "ed53613d-6b67-427f-ad83-c097895288a5", - "078b29b5-3a90-4615-8597-0a14c1a27814" + "4098481d-8ece-4ae7-92bd-40d280635ff8", + "97514b96-dc97-434b-9346-a53778d108e0", + "ed22d9ae-b2b4-43be-98c9-8bdc7f7af1cb", + "f43b2866-135b-41c3-9cc1-1a57b8f56676", + "67127b0a-3c05-44a0-9eb7-8ad919e401b7", + "480dc65e-cdc1-4014-980e-662b9b3d0556", + "046cb602-4a51-43e4-bebd-2ebd14392606", + "3c62c043-9016-4304-a369-6f4613ea120d", + "7ffd7194-3471-4211-8f89-986f35705f52", + "b7f3cc67-258e-429b-80f4-dac4b8f6dbb4", + "ec1b01ce-6240-413a-b700-8878d2867f36", + "f27c89c1-e5e3-46f0-8765-e5dc4a67b543", + "b536e2db-b667-4c47-98ec-a21808ea531f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11999" ], "x-ms-request-id": [ - "8666e7c0-470f-4c66-abb3-e23604b2a77c" + "d22f6263-b8b4-4cc3-90ca-b34326d90ff3" ], "x-ms-correlation-request-id": [ - "8666e7c0-470f-4c66-abb3-e23604b2a77c" + "d22f6263-b8b4-4cc3-90ca-b34326d90ff3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T033018Z:8666e7c0-470f-4c66-abb3-e23604b2a77c" + "WESTUS2:20221006T061714Z:d22f6263-b8b4-4cc3-90ca-b34326d90ff3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1272,7 +1203,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:30:17 GMT" + "Thu, 06 Oct 2022 06:17:14 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1281,31 +1212,31 @@ "-1" ], "Content-Length": [ - "5556" + "8798" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/gridresourcegroup\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"38009702-c09d-455c-9118-c0693d6607dd\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/gridresourcegroup/providers/Microsoft.EventGrid/systemTopics/gridresourcegroup-edcdfbd3-569d-4466-b60c-deece0f27d32\",\r\n \"name\": \"gridresourcegroup-edcdfbd3-569d-4466-b60c-deece0f27d32\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3656/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps9713\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"e132094e-5b0a-4cfa-b43e-17a21ff9749b\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3656/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps3064\",\r\n \"name\": \"PSTestTopic-ps3064\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup/providers/microsoft.storage/storageaccounts/egstrgltncypublocalusw2\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"c38ee92e-3e77-4e6b-b8e6-5c901176a307\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup/providers/Microsoft.EventGrid/systemTopics/egstrgltncypublocalusw2-11c0cdb5-fccc-4c63-9450-8ed98cd4dc77\",\r\n \"name\": \"egstrgltncypublocalusw2-11c0cdb5-fccc-4c63-9450-8ed98cd4dc77\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/brandon-test/providers/Microsoft.Storage/StorageAccounts/brandonneffstorage\",\r\n \"topicType\": \"Microsoft.Storage.StorageAccounts\",\r\n \"metricResourceId\": \"d412952f-8f59-46e8-ac73-3ca5834018db\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/brandon-test/providers/Microsoft.EventGrid/systemTopics/storage-systemtopic\",\r\n \"name\": \"storage-systemtopic\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/StorageAccounts/cs410037ffea5a817ac\",\r\n \"topicType\": \"Microsoft.Storage.StorageAccounts\",\r\n \"metricResourceId\": \"e4925f91-1af6-4993-9b10-3eaeff9cc67b\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.EventGrid/systemTopics/systemtopictest\",\r\n \"name\": \"systemtopictest\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.Storage/storageAccounts/msitestwithsa\",\r\n \"topicType\": \"Microsoft.Storage.StorageAccounts\",\r\n \"metricResourceId\": \"7ac9627d-7767-4350-b4d9-4c8bcfd3e91c\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.EventGrid/systemTopics/test2\",\r\n \"name\": \"test2\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clieventgridrgszokfxjsgw2dwsuyx2ta6ulpeximrzfezvnyxrqtqc2nn4kkqclln7k7uyqio/providers/microsoft.storage/storageaccounts/clieventgridrxr5a3hxxtcf\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"a171d258-a598-47d7-8ff3-39510f1a8bd1\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clieventgridrgszokfxjsgw2dwsuyx2ta6ulpeximrzfezvnyxrqtqc2nn4kkqclln7k7uyqio/providers/Microsoft.EventGrid/systemTopics/clieventgridrxr5a3hxxtcf-7f7da20e-1d0b-42b2-9e7a-390bfd1fe7d7\",\r\n \"name\": \"clieventgridrxr5a3hxxtcf-7f7da20e-1d0b-42b2-9e7a-390bfd1fe7d7\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/systemTopics?api-version=2021-12-01&%24top=1&%24skiptoken=3VXbcqJAEP0XKuZpCcpFTKpSWz0DIgFURGLcN24OLAsYBm9J5d8zJJrKc9Ynp6ag6TrTMH3OGV65Mtk3dlbmlLt75Qx7gsDm7ri0adb0ThCKoAxIUiRlcxO8bOrkJqoKgW5CGtXZusmqkgpKKId9pZvw4iC85WX1tsuHUhDycRzGg0GsimokC%2bu62mZxUlPByaK6otWqudG3rKxRZ7FAD7RJinm1ziL6O1hn%2fJYhWfF7sSv2%2bJ7Id3vXVzRnb6zypLzvKGFHDTui%2bPHI7h0paK9iODO1NlaT2xXx4cF6WZDcgq%2fRkeJ2itJszmBsgTSf4WNkeo%2bnSJ%2bwqK8oSo8hhtMWAUQHZwcbABtg6LqARTBllBCCkV7BJB0tNCSjJ4IWo75ZuMTxZrDUGuKOwCWQwgJwR1xVS4yIlhoHpO9N3dAIssq%2biBnST90ATDcKURZhcDaqBQQKa7Aiz2xfDAEvLGGV5LQH9vUR23QdlCQ5tuCjJ0VWfuvIEVUE%2b6%2fkcNiGatxOJb6%2baqr1fY%2f7xS10b4718XwGtu9dgATIfqCBbaMNeJqxGxxFcGrfDySwdEJt91kmndHpt4Kt9s5Phu%2bJF0BD9DTOYcI0%2fPcJ5hEmJzP%2bBxGtFwF0GB8s9ODugCCcuqd6Z6fiyxO6D9MLIMRrhglMt0sH7ISwk%2bxznNr3A18Q3bNSE8O4j4bEBCPQ%2fwDBRpZWGLC3H7GcFDorltvWnoNhysSQPexMaMz8GYF2eKaB0Z5JZ%2faQDt6ceehCaJMk9isxRVqAKz%2b6%2bTlo%2b2d7PgYte7RdE3xFbjVwbhre3t4B\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"a3697492-d56a-490e-be64-4c0d14820ddc\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg/providers/Microsoft.EventGrid/systemTopics/kalsrg-b2678b2e-0938-4243-9fc5-823489b1b2bf\",\r\n \"name\": \"kalsrg-b2678b2e-0938-4243-9fc5-823489b1b2bf\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps530/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps2827\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"29d2a45b-e60a-435d-9666-6e72daa360b4\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps530/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps3084\",\r\n \"name\": \"PSTestTopic-ps3084\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup/providers/microsoft.storage/storageaccounts/egstrglocalwestus20\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"69e819bb-0136-4ac3-a921-b46ae94ba476\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup/providers/Microsoft.EventGrid/systemTopics/egstrglocalwestus20-2558a314-664c-4739-946d-9a2b8960c9b2\",\r\n \"name\": \"egstrglocalwestus20-2558a314-664c-4739-946d-9a2b8960c9b2\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.Storage/storageAccounts/kishpteststg\",\r\n \"topicType\": \"Microsoft.Storage.StorageAccounts\",\r\n \"metricResourceId\": \"80a7f69a-eb55-47db-83ef-dca84ad2808b\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"b3c998fc-b500-44dd-81b5-bdd7d18b99f7\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.EventGrid/systemTopics/kishpegstgsystopic\",\r\n \"name\": \"kishpegstgsystopic\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.Storage/storageAccounts/kishpteststgwestus\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"afde3958-60e6-4e8a-9d2a-e7a596e43805\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.EventGrid/systemTopics/kishpteststgwestus-fcc7adcc-b037-4ef1-8feb-5484902b2b0a\",\r\n \"name\": \"kishpteststgwestus-fcc7adcc-b037-4ef1-8feb-5484902b2b0a\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrgstorage/providers/Microsoft.Storage/storageAccounts/teststoragezrs\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"0175af6e-c4bc-41a0-91ad-f5989d487f53\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"australiaeast\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrgstorage/providers/Microsoft.EventGrid/systemTopics/teststoragezrs-c0068ed8-f5ee-4c7f-a23f-ed8dc0f6b153\",\r\n \"name\": \"teststoragezrs-c0068ed8-f5ee-4c7f-a23f-ed8dc0f6b153\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/ahsdk/providers/Microsoft.Storage/storageAccounts/ahtestreprostg\",\r\n \"topicType\": \"Microsoft.Storage.StorageAccounts\",\r\n \"metricResourceId\": \"eddaba60-0327-4309-96d5-3911dea245a3\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westeurope\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/ahsdk/providers/Microsoft.EventGrid/systemTopics/any1\",\r\n \"name\": \"any1\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.Storage/storageAccounts/msitest5\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"5deccc33-df76-467e-8cdb-4d564e972534\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a23acb3a-4580-4384-85d2-d1e309e540cd\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/systemTopics/systemtopic2storage3\",\r\n \"name\": \"systemtopic2storage3\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newregionsrg/providers/microsoft.storage/storageaccounts/stgsouthafricanorth\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"10c4929e-6c45-48e2-94f5-4f4cb480e31c\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"southafricanorth\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newregionsrg/providers/Microsoft.EventGrid/systemTopics/stgsouthafricanorth-34dfd305-9c83-4c12-a86e-a3035e831a28\",\r\n \"name\": \"stgsouthafricanorth-34dfd305-9c83-4c12-a86e-a3035e831a28\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted/providers/Microsoft.Storage/storageAccounts/trackedsource2stg\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"a8e801b6-10bd-4173-badf-51ad1277988b\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9130/providers/Microsoft.EventGrid/systemTopics/sdk-SystemTopic-7607\",\r\n \"name\": \"sdk-SystemTopic-7607\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.ApiManagement/service/kishpapimanagement\",\r\n \"topicType\": \"Microsoft.ApiManagement.Service\",\r\n \"metricResourceId\": \"965c8c7d-1ff5-443b-ae14-0fab7645a9a7\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/systemTopics/kishpegapisystopic\",\r\n \"name\": \"kishpegapisystopic\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newregionsrg/providers/microsoft.storage/storageaccounts/stgsafwestdelete\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"6c34d61a-1799-4e66-bcac-4ded3483c2f1\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"southafricawest\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newregionsrg/providers/Microsoft.EventGrid/systemTopics/stgsafwestdelete-ebe613dd-73c6-4ec2-928a-1fb6d91573c9\",\r\n \"name\": \"stgsafwestdelete-ebe613dd-73c6-4ec2-928a-1fb6d91573c9\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/systemTopics?api-version=2022-06-15&%24top=1&%24skiptoken=3ZZZb%2bIwEMe%2fS1T6VArNAaFStZqchITDOUrhLYdrApujSTirfvd1WBbtBwgvRFYytkaOxz%2f%2fx%2fPNpPhQWXG6KZnXb0a3phJYzCuzqqq8fO10Ej%2f1CU5wWj37p22Bn8Ms6ZTboAyLOK%2fiLC07QsAHPaGL26wYDNp8f9BtB5wftKMoiEQx6rP9kO%2fkRbaLI1yUnXEcFlmZfVbP6o5Oqxdx1CmPZYUTN8vjsPzl53F7Rz3p5G9sl2Xb3V77RXh8KDf0j9kGp28tIWj1gxbLnrv02%2bL8%2bs0GtqHUdh8PPokHI%2fM0JxsDrk%2bLi%2brGcrZL3V6o4dryxTKcd2rRSThDnVKrJwhC7YFkjfZEammz2heICtM9%2bAAWgOYhkFkweAkTIktqBtOVgZVoEXkp6ADEAGFZ6hKRzLTHyrCAFIhibY9Eh1G8O%2fFIIspYBvjC070BNIJcPK%2bQriOkIRV%2bSvAlwHPESZz%2bF%2b%2fFK%2fEP10FNq81%2bVDchenyosvzthXli5qrjyurEtcHynDsATA6iApYlbcFJNCReEDcEWETu3gTTfzfQkoAWS6zxLkkA0hDBsN7fG8DxHPYOsIQfkw1M6TlefwDirsKDhsDAGKisFAypkam%2fFZBBNc8HvmEgKjjuXcjk0OdjGLu6ChNvBk3LxF3vZdAc0aZ5jvvKp0CkXkX%2bsb6RTO5AJc6W7ttIxgMijwq0aDZ5%2bfYqk8FIqiGlsjQGOqUS3pDK9VZRPZjdA5xKwzDbLcZgCmOEmoWDrBVNWlZyUGvJZOocCCwze0OB%2baZOx0aWimmJEJVHWhbMaCKNTToqfmUFxTjPj10Z5GPPIggUc%2bCsbye2vymQvROoHIeGYLBlAk5wQqRZqOuxQ2GNthMLGeAJ%2fA6I3E1clebGOd94ufDzxPhFAoQUmPgVjty6Jqa6A3vM%2fPwB\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/systemTopics?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3N5c3RlbVRvcGljcz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/systemTopics?api-version=2022-06-15&%24top=1&%24skiptoken=3ZZZb%2bIwEMe%2fS1T6VArNAaFStZqchITDOUrhLYdrApujSTirfvd1WBbtBwgvRFYytkaOxz%2f%2fx%2fPNpPhQWXG6KZnXb0a3phJYzCuzqqq8fO10Ej%2f1CU5wWj37p22Bn8Ms6ZTboAyLOK%2fiLC07QsAHPaGL26wYDNp8f9BtB5wftKMoiEQx6rP9kO%2fkRbaLI1yUnXEcFlmZfVbP6o5Oqxdx1CmPZYUTN8vjsPzl53F7Rz3p5G9sl2Xb3V77RXh8KDf0j9kGp28tIWj1gxbLnrv02%2bL8%2bs0GtqHUdh8PPokHI%2fM0JxsDrk%2bLi%2brGcrZL3V6o4dryxTKcd2rRSThDnVKrJwhC7YFkjfZEammz2heICtM9%2bAAWgOYhkFkweAkTIktqBtOVgZVoEXkp6ADEAGFZ6hKRzLTHyrCAFIhibY9Eh1G8O%2fFIIspYBvjC070BNIJcPK%2bQriOkIRV%2bSvAlwHPESZz%2bF%2b%2fFK%2fEP10FNq81%2bVDchenyosvzthXli5qrjyurEtcHynDsATA6iApYlbcFJNCReEDcEWETu3gTTfzfQkoAWS6zxLkkA0hDBsN7fG8DxHPYOsIQfkw1M6TlefwDirsKDhsDAGKisFAypkam%2fFZBBNc8HvmEgKjjuXcjk0OdjGLu6ChNvBk3LxF3vZdAc0aZ5jvvKp0CkXkX%2bsb6RTO5AJc6W7ttIxgMijwq0aDZ5%2bfYqk8FIqiGlsjQGOqUS3pDK9VZRPZjdA5xKwzDbLcZgCmOEmoWDrBVNWlZyUGvJZOocCCwze0OB%2baZOx0aWimmJEJVHWhbMaCKNTToqfmUFxTjPj10Z5GPPIggUc%2bCsbye2vymQvROoHIeGYLBlAk5wQqRZqOuxQ2GNthMLGeAJ%2fA6I3E1clebGOd94ufDzxPhFAoQUmPgVjty6Jqa6A3vM%2fPwB", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3N5c3RlbVRvcGljcz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1JiUyNHRvcD0xJiUyNHNraXB0b2tlbj0zWlpaYiUyYkl3RU1lJTJmUzFUNlZBck5BYUZTdFpxY2hJVERPVXJoTFlkckFwdWpTVGlyZnZkMVdCYnRCd2d2UkZZeXRrYU94eiUyZiUyZnglMmZQTnBQaFFXWEc2S1puWGIwYTNwaEpZekN1enFxcThmTzEwRWolMmYxQ1U1d1dqMzdwMjJCbjhNczZaVGJvQXlMT0slMmZpTEMwN1FzQUhQYUdMMjZ3WUROcDhmOUJ0QjV3ZnRLTW9pRVF4NnJQOWtPJTJma1JiYUxJMXlVblhFY0ZsbVpmVmJQNm81T3F4ZHgxQ21QWllVVE44dmpzUHpsNTNGN1J6M3A1RzlzbDJYYjNWNzdSWGg4S0RmMGo5a0dwMjh0SVdqMWd4YkxucnYwMiUyYkw4JTJiczBHdHFIVWRoOFBQb2tISSUyZk0wSnhzRHJrJTJiTGklMmJyR2NyWkwzVjZvNGRyeXhUS2NkMnJSU1RoRG5WS3JKd2hDN1lGa2pmWkVhbW16MmhlSUN0TTklMmJBQVdnT1loa0Zrd2VBa1RJa3RxQnRPVmdaVm9FWGtwNkFERUFHRlo2aEtSekxUSHlyQ0FGSWhpYlk5RWgxRzhPJTJmRklJc3BZQnZqQzA3MEJOSUpjUEslMmJRcmlPa0lSViUyYlN2QWx3SFBFU1p6JTJiRiUyYiUyZkZLJTJmRVAxMEZOcTgxJTJiVkRjaGVueW9zdnp0aFhsaTVxcmp5dXJFdGNIeW5Ec0FUQTZpQXBZbGJjRkpOQ1JlRURjRVdFVHUzZ1RUZnpmUWtvQVdTNnp4TGtrQTBoREJzTjdmRzhEeEhQWU9zSVFma3cxTTZUbGVmd0RpcnNLRGhzREFHS2lzRkF5cGthbSUyZkZaQkJOYzhIdm1FZ0tqanVYY2prME9kakdMdTZDaE52QmszTHhGM3ZaZEFjMGFaNWp2dktwMENrWGtYJTJic2I2UlRPNUFKYzZXN3R0SXhnTWlqd3EwYURaNSUyYmZZcWs4RklxaUdsc2pRR09xVVMzcERLOVZaUlBaamRBNXhLd3pEYkxjWmdDbU9FbW9XRHJCVk5XbFp5VUd2SlpPb2NDQ3d6ZTBPQiUyYmFaT3gwYVdpbW1KRUpWSFdoYk1hQ0tOVFRvcWZtVUZ4VGpQajEwWjVHUFBJZ2dVYyUyYkNzYnllMnZ5bVF2Uk9vSEllR1lMQmxBazV3UXFSWnFPdXhRMkdOdGhNTEdlQUolMmZBNkkzRTFjbGViR09kOTR1ZkR6eFBoRkFvUVVtUGdWanR5NkpxYTZBM3ZNJTJmUHdC", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb13b46c-ad1e-481c-8d31-d0e34bcebc6d" + "69034f6c-6805-46b3-b997-b6eec7e08f95" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1314,31 +1245,25 @@ "no-cache" ], "x-ms-original-request-ids": [ - "0233d5c4-4784-437e-ad8e-f388d87e5608", - "09d22da4-05bb-4544-b2cd-fc4663a53fa3", - "2b43ac73-65b5-4b43-8aa3-4d3d4137ce54", - "29fa593c-c787-487e-b002-0afbbe96c314", - "5d328740-971d-41bb-8098-6e0cedabc6b7", - "cd485139-bd92-416b-8f5b-b0c24e8948c4", - "571136fb-259f-48c6-930f-d4f02ce2fa3f", - "4d883ec4-be84-4e19-bd8b-144aca64e961", - "7752372a-665e-420a-a3be-1e7908f6d46f", - "aac1bcdf-b42e-4756-a9c6-fdeb20d9c7ae", - "eb0b39b7-2381-490b-806a-4d7a28d637c4", - "ec3d396e-a271-40a7-be7f-b2981e69798a", - "2c200623-692b-4107-beb4-8013dfb4c481" + "31592327-a19f-49eb-b38e-aa04a81d3a3b", + "b33698c0-ce23-476c-821b-0c7ceab7f1c4", + "5189d512-6eb4-421b-9984-8088a6823919", + "8cde5252-3ad6-4c3c-a9a3-e0056470509f", + "4b1afb24-6cf6-48c0-a5de-e5692683a428", + "dc44e09f-d8cf-40f7-8760-566a45ffffba", + "5b886038-d914-47d9-8a7a-2f7a7ddebb56" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11999" ], "x-ms-request-id": [ - "80790584-cdf7-43c5-b105-839605b0e745" + "f96ba4b6-815a-48e7-91b5-84550bbea93b" ], "x-ms-correlation-request-id": [ - "80790584-cdf7-43c5-b105-839605b0e745" + "f96ba4b6-815a-48e7-91b5-84550bbea93b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T033019Z:80790584-cdf7-43c5-b105-839605b0e745" + "WESTUS2:20221006T061712Z:f96ba4b6-815a-48e7-91b5-84550bbea93b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1347,7 +1272,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:30:18 GMT" + "Thu, 06 Oct 2022 06:17:12 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1356,31 +1281,31 @@ "-1" ], "Content-Length": [ - "33996" + "5469" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"a3697492-d56a-490e-be64-4c0d14820ddc\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg/providers/Microsoft.EventGrid/systemTopics/kalsrg-b2678b2e-0938-4243-9fc5-823489b1b2bf\",\r\n \"name\": \"kalsrg-b2678b2e-0938-4243-9fc5-823489b1b2bf\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/gridresourcegroup\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"38009702-c09d-455c-9118-c0693d6607dd\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/gridresourcegroup/providers/Microsoft.EventGrid/systemTopics/gridresourcegroup-edcdfbd3-569d-4466-b60c-deece0f27d32\",\r\n \"name\": \"gridresourcegroup-edcdfbd3-569d-4466-b60c-deece0f27d32\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-EventHub-EASTUS2EUAP\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"ef909605-9149-4ff0-91f3-8d6199250048\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-EventHub-EASTUS2EUAP/providers/Microsoft.EventGrid/systemTopics/Default-EventHub-EASTUS2EUAP-0bf8841b-1321-4093-a799-52b37f943a72\",\r\n \"name\": \"Default-EventHub-EASTUS2EUAP-0bf8841b-1321-4093-a799-52b37f943a72\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/egprodtestingrg\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"278a836f-6ccd-450e-9120-0ec85299e167\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/egprodtestingrg/providers/Microsoft.EventGrid/systemTopics/egprodtestingrg-364b3f76-7806-4a7c-b14d-e324df16dded\",\r\n \"name\": \"egprodtestingrg-364b3f76-7806-4a7c-b14d-e324df16dded\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cesartopics\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"513ef6ab-ecf1-4ffc-8d4e-5559887c30b4\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cesartopics/providers/Microsoft.EventGrid/systemTopics/cesartopics-591ef1ff-849d-46ac-8354-f6fcabbcee54\",\r\n \"name\": \"cesartopics-591ef1ff-849d-46ac-8354-f6fcabbcee54\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/snorop\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"b4a7c272-cd4e-4d54-b03a-aebd457bfd4c\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/snorop/providers/Microsoft.EventGrid/systemTopics/snorop-e3b5ad25-01d5-4dff-a985-3773ffaf7808\",\r\n \"name\": \"snorop-e3b5ad25-01d5-4dff-a985-3773ffaf7808\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"20e5059c-6f3f-49ca-af2c-b1c4f7ea3034\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg/providers/Microsoft.EventGrid/systemTopics/examplerg-da5fb1ee-d4e7-46e3-a756-ebbbbbe0309e\",\r\n \"name\": \"examplerg-da5fb1ee-d4e7-46e3-a756-ebbbbbe0309e\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"b9a9a686-83a3-4a51-a7e7-a937b0670e13\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup/providers/Microsoft.EventGrid/systemTopics/eventgridrunnertestresourcegroup-2eda2957-2ed4-42bb-ad01-60af9f8244e4\",\r\n \"name\": \"eventgridrunnertestresourcegroup-2eda2957-2ed4-42bb-ad01-60af9f8244e4\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/demo-devopsautomation\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"9b578516-49bc-47d5-ac77-3d023458ade0\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/demo-devopsautomation/providers/Microsoft.EventGrid/systemTopics/demo-devopsautomation-7edd4cc1-9de0-416e-9a12-d7f90c174a2b\",\r\n \"name\": \"demo-devopsautomation-7edd4cc1-9de0-416e-9a12-d7f90c174a2b\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/contosovms\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"f70a33cc-6dd4-4ea1-ad5b-48bd5b310b9f\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/contosovms/providers/Microsoft.EventGrid/systemTopics/contosovms-17cd840b-362a-4464-be48-b60c9099ba7f\",\r\n \"name\": \"contosovms-17cd840b-362a-4464-be48-b60c9099ba7f\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/FrancosResources\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"aca07792-8724-43cd-8955-8c37658d5a3c\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/FrancosResources/providers/Microsoft.EventGrid/systemTopics/FrancosResources-bc9f864b-f76a-4255-8615-4879e4f877c8\",\r\n \"name\": \"FrancosResources-bc9f864b-f76a-4255-8615-4879e4f877c8\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgdyoajzoke3lbxojr7omt6m6oasvyr7zsho5fidxigg36zbgvesajzqx4fzlyrltzi\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"579df591-307b-4ce4-bc25-513203d2e123\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgdyoajzoke3lbxojr7omt6m6oasvyr7zsho5fidxigg36zbgvesajzqx4fzlyrltzi/providers/Microsoft.EventGrid/systemTopics/clitest-rgdyoajzoke3lbxojr7omt6m6oasvyr7zsho5fidxigg36zbgvesajzqx4fzlyrltzi-c189356e-f1ae-48db-88cc-549c5308b4fa\",\r\n \"name\": \"clitest-rgdyoajzoke3lbxojr7omt6m6oasvyr7zsho5fidxigg36zbgvesajzqx4fzlyrltzi-c189356e-f1ae-48db-88cc-549c5308b4fa\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalstest\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"4300b169-3f53-4a65-8e98-ecab212cbad4\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalstest/providers/Microsoft.EventGrid/systemTopics/kalstest-62c55410-de25-4c26-abfd-69346d5a6993\",\r\n \"name\": \"kalstest-62c55410-de25-4c26-abfd-69346d5a6993\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgggqagcer44su5icztostiufuauqsivdligimbgtoufsw5t24uauwgtqvks5eucndv\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"d27ef4b0-f32d-405e-9f16-6aabef6a8311\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgggqagcer44su5icztostiufuauqsivdligimbgtoufsw5t24uauwgtqvks5eucndv/providers/Microsoft.EventGrid/systemTopics/clitest-rgggqagcer44su5icztostiufuauqsivdligimbgtoufsw5t24uauwgtqvks5eucndv-61f4f63e-a2b4-45d2-bc61-ffdff39f929c\",\r\n \"name\": \"clitest-rgggqagcer44su5icztostiufuauqsivdligimbgtoufsw5t24uauwgtqvks5eucndv-61f4f63e-a2b4-45d2-bc61-ffdff39f929c\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testpsrg\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"c669b891-8bfb-425e-baad-c569ecb4977c\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testpsrg/providers/Microsoft.EventGrid/systemTopics/testpsrg-2adb34a5-c420-4aa4-88d8-ae827d7dcc45\",\r\n \"name\": \"testpsrg-2adb34a5-c420-4aa4-88d8-ae827d7dcc45\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgnekak4bfydypjqukzgxjt4gl6oajnbxrkdwnuxzner4nbwa3bl62udrdrieg5timj\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"2a258819-1612-41e6-b83c-6bd0956cda7a\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgnekak4bfydypjqukzgxjt4gl6oajnbxrkdwnuxzner4nbwa3bl62udrdrieg5timj/providers/Microsoft.EventGrid/systemTopics/clitest-rgnekak4bfydypjqukzgxjt4gl6oajnbxrkdwnuxzner4nbwa3bl62udrdrieg5timj-ca0ba149-2f59-4631-a8f1-ed99bbc9f91b\",\r\n \"name\": \"clitest-rgnekak4bfydypjqukzgxjt4gl6oajnbxrkdwnuxzner4nbwa3bl62udrdrieg5timj-ca0ba149-2f59-4631-a8f1-ed99bbc9f91b\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgb2lttd5wuitcf4ja4j2tqhzvpy5wpdw6qidzrjje2nji4nhdhgnms7vpn7a6kolqq\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"887675a9-d665-4530-83e4-e428273a15ce\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgb2lttd5wuitcf4ja4j2tqhzvpy5wpdw6qidzrjje2nji4nhdhgnms7vpn7a6kolqq/providers/Microsoft.EventGrid/systemTopics/clitest-rgb2lttd5wuitcf4ja4j2tqhzvpy5wpdw6qidzrjje2nji4nhdhgnms7vpn7a6kolqq-c31ceb31-5286-4a31-a1f5-07848e451ecc\",\r\n \"name\": \"clitest-rgb2lttd5wuitcf4ja4j2tqhzvpy5wpdw6qidzrjje2nji4nhdhgnms7vpn7a6kolqq-c31ceb31-5286-4a31-a1f5-07848e451ecc\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/serverlessdevops\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"38bafb27-61fc-4419-8cc9-67e78201ab97\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/serverlessdevops/providers/Microsoft.EventGrid/systemTopics/serverlessdevops-7220c661-2a0b-442d-b647-8612db846241\",\r\n \"name\": \"serverlessdevops-7220c661-2a0b-442d-b647-8612db846241\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"35e97d5c-f997-4ddc-90d4-1d7543b8f878\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/systemTopics/amh-465ec538-5ac1-43ec-a486-9a800240c40d\",\r\n \"name\": \"amh-465ec538-5ac1-43ec-a486-9a800240c40d\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rg74y2zekmuezgdxxvu5o6xw7noral7kktz6kdzii7nfantnybh5b4542bptb3ynnif\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"3dd9f293-9dbc-4edf-b418-1984d00eb909\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rg74y2zekmuezgdxxvu5o6xw7noral7kktz6kdzii7nfantnybh5b4542bptb3ynnif/providers/Microsoft.EventGrid/systemTopics/clitest-rg74y2zekmuezgdxxvu5o6xw7noral7kktz6kdzii7nfantnybh5b4542bptb3ynnif-94a6e39d-06ea-4380-bdf6-dd7d6184eba5\",\r\n \"name\": \"clitest-rg74y2zekmuezgdxxvu5o6xw7noral7kktz6kdzii7nfantnybh5b4542bptb3ynnif-94a6e39d-06ea-4380-bdf6-dd7d6184eba5\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps530/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps2827\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"29d2a45b-e60a-435d-9666-6e72daa360b4\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps530/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps3084\",\r\n \"name\": \"PSTestTopic-ps3084\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3656/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps9713\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"e132094e-5b0a-4cfa-b43e-17a21ff9749b\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3656/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps3064\",\r\n \"name\": \"PSTestTopic-ps3064\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9970/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps3425\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"cc31c8af-cb62-4bef-875c-92e713da85c0\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9970/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4268\",\r\n \"name\": \"PSTestTopic-ps4268\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9970/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps8670\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"5ef52ba1-404b-44f7-b17a-e96d0d8e6f3a\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9970/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps9327\",\r\n \"name\": \"PSTestTopic-ps9327\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup/providers/microsoft.storage/storageaccounts/egstrglocalwestus20\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"69e819bb-0136-4ac3-a921-b46ae94ba476\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup/providers/Microsoft.EventGrid/systemTopics/egstrglocalwestus20-2558a314-664c-4739-946d-9a2b8960c9b2\",\r\n \"name\": \"egstrglocalwestus20-2558a314-664c-4739-946d-9a2b8960c9b2\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup/providers/microsoft.storage/storageaccounts/egstrgltncypublocalusw2\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"c38ee92e-3e77-4e6b-b8e6-5c901176a307\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup/providers/Microsoft.EventGrid/systemTopics/egstrgltncypublocalusw2-11c0cdb5-fccc-4c63-9450-8ed98cd4dc77\",\r\n \"name\": \"egstrgltncypublocalusw2-11c0cdb5-fccc-4c63-9450-8ed98cd4dc77\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup/providers/microsoft.storage/storageaccounts/egstrgltncypublclwstus2\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"3ac3db93-53dc-4d9a-9d71-c39d4348c3a6\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup/providers/Microsoft.EventGrid/systemTopics/egstrgltncypublclwstus2-80af3677-5d75-424c-8822-bddb30f8a1e3\",\r\n \"name\": \"egstrgltncypublclwstus2-80af3677-5d75-424c-8822-bddb30f8a1e3\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rg1/providers/Microsoft.Storage/storageAccounts/kishpstg\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"6b7bd8cf-1ae7-4f38-aab8-3af977e85e5a\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"3b38141a-c2a5-4342-9625-08cd4a574598\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rg1/providers/Microsoft.EventGrid/systemTopics/systemtopic1\",\r\n \"name\": \"systemtopic1\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.Storage/storageAccounts/kishpteststg\",\r\n \"topicType\": \"Microsoft.Storage.StorageAccounts\",\r\n \"metricResourceId\": \"80a7f69a-eb55-47db-83ef-dca84ad2808b\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"b3c998fc-b500-44dd-81b5-bdd7d18b99f7\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.EventGrid/systemTopics/kishpegstgsystopic\",\r\n \"name\": \"kishpegstgsystopic\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/brandon-test/providers/Microsoft.Storage/StorageAccounts/brandonneffstorage\",\r\n \"topicType\": \"Microsoft.Storage.StorageAccounts\",\r\n \"metricResourceId\": \"d412952f-8f59-46e8-ac73-3ca5834018db\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/brandon-test/providers/Microsoft.EventGrid/systemTopics/storage-systemtopic\",\r\n \"name\": \"storage-systemtopic\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.Storage/storageAccounts/kishpteststgwestus\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"afde3958-60e6-4e8a-9d2a-e7a596e43805\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.EventGrid/systemTopics/kishpteststgwestus-fcc7adcc-b037-4ef1-8feb-5484902b2b0a\",\r\n \"name\": \"kishpteststgwestus-fcc7adcc-b037-4ef1-8feb-5484902b2b0a\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/StorageAccounts/cs410037ffea5a817ac\",\r\n \"topicType\": \"Microsoft.Storage.StorageAccounts\",\r\n \"metricResourceId\": \"e4925f91-1af6-4993-9b10-3eaeff9cc67b\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.EventGrid/systemTopics/systemtopictest\",\r\n \"name\": \"systemtopictest\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrgstorage/providers/Microsoft.Storage/storageAccounts/teststoragezrs\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"0175af6e-c4bc-41a0-91ad-f5989d487f53\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"australiaeast\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrgstorage/providers/Microsoft.EventGrid/systemTopics/teststoragezrs-c0068ed8-f5ee-4c7f-a23f-ed8dc0f6b153\",\r\n \"name\": \"teststoragezrs-c0068ed8-f5ee-4c7f-a23f-ed8dc0f6b153\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/ahsdk/providers/Microsoft.Storage/storageAccounts/ahtestreprostg\",\r\n \"topicType\": \"Microsoft.Storage.StorageAccounts\",\r\n \"metricResourceId\": \"eddaba60-0327-4309-96d5-3911dea245a3\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westeurope\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/ahsdk/providers/Microsoft.EventGrid/systemTopics/any1\",\r\n \"name\": \"any1\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.Storage/storageAccounts/msitest5\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"5deccc33-df76-467e-8cdb-4d564e972534\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a23acb3a-4580-4384-85d2-d1e309e540cd\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/systemTopics/systemtopic2storage3\",\r\n \"name\": \"systemtopic2storage3\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newregionsrg/providers/microsoft.storage/storageaccounts/stgsouthafricanorth\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"10c4929e-6c45-48e2-94f5-4f4cb480e31c\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"southafricanorth\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newregionsrg/providers/Microsoft.EventGrid/systemTopics/stgsouthafricanorth-34dfd305-9c83-4c12-a86e-a3035e831a28\",\r\n \"name\": \"stgsouthafricanorth-34dfd305-9c83-4c12-a86e-a3035e831a28\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted/providers/Microsoft.Storage/storageAccounts/trackedsource2stg\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"a8e801b6-10bd-4173-badf-51ad1277988b\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9130/providers/Microsoft.EventGrid/systemTopics/sdk-SystemTopic-7607\",\r\n \"name\": \"sdk-SystemTopic-7607\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.Storage/storageAccounts/msitestwithsa\",\r\n \"topicType\": \"Microsoft.Storage.StorageAccounts\",\r\n \"metricResourceId\": \"7ac9627d-7767-4350-b4d9-4c8bcfd3e91c\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.EventGrid/systemTopics/test2\",\r\n \"name\": \"test2\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.Storage/storageAccounts/msisystemtopicstorage\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"d0744dfb-c6f0-4517-8860-6b69a35095ba\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"102ddd90-55b1-47a1-9861-df58f8720ae7\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/systemTopics/systemtopicstorage\",\r\n \"name\": \"systemtopicstorage\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.Storage/storageAccounts/msitest4\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"1b162dd4-0af0-4f55-905b-abee6cafe610\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"bda533aa-967e-4d77-86a5-172b9744b923\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/systemTopics/systemtopic2storage2\",\r\n \"name\": \"systemtopic2storage2\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbashnew/providers/microsoft.storage/storageaccounts/testonestg\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"4ddf4a30-df59-4ddc-af42-4ac975c81739\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbashnew/providers/Microsoft.EventGrid/systemTopics/testonestg-2730ba1f-0dfb-4258-be49-e10f0ccf464e\",\r\n \"name\": \"testonestg-2730ba1f-0dfb-4258-be49-e10f0ccf464e\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.Storage/storageAccounts/testrgjobsched\",\r\n \"topicType\": \"Microsoft.Storage.storageAccounts\",\r\n \"metricResourceId\": \"7933f1e2-e1e7-45c0-800d-eb04ff40c86a\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/systemTopics/testing2\",\r\n \"name\": \"testing2\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clieventgridrguko55vmps6ovbkdwmiiyn2nrggur4jrk7ki5hgm4dxecm3dhj25fzrehd7rjv/providers/microsoft.storage/storageaccounts/clieventgridm6357yov44mv\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"2759e744-de1c-4aab-b29b-ba3faf6140f5\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clieventgridrguko55vmps6ovbkdwmiiyn2nrggur4jrk7ki5hgm4dxecm3dhj25fzrehd7rjv/providers/Microsoft.EventGrid/systemTopics/clieventgridm6357yov44mv-5fba613a-3270-40ec-968e-d6d5dfc95660\",\r\n \"name\": \"clieventgridm6357yov44mv-5fba613a-3270-40ec-968e-d6d5dfc95660\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.Storage/StorageAccounts/msitest6\",\r\n \"topicType\": \"Microsoft.Storage.StorageAccounts\",\r\n \"metricResourceId\": \"9ce76ec7-bc41-4d38-8959-2531ee3a1b95\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"e88d14c0-e2b0-4caf-8ec3-1cb59b5832f0\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/systemTopics/msitest6systemtop\",\r\n \"name\": \"msitest6systemtop\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/brandonneff-canary/providers/Microsoft.Storage/StorageAccounts/brandonstorage411\",\r\n \"topicType\": \"Microsoft.Storage.StorageAccounts\",\r\n \"metricResourceId\": \"d3f27f67-cc35-41f9-9a71-908d171e42a5\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/brandonneff-canary/providers/Microsoft.EventGrid/systemTopics/bneff-systemtopic\",\r\n \"name\": \"bneff-systemtopic\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRgcentraluseuap/providers/Microsoft.Eventhub/Namespaces/eggseh3centraluseuap\",\r\n \"topicType\": \"Microsoft.Eventhub.Namespaces\",\r\n \"metricResourceId\": \"fe2d0faa-4bc6-4ce1-bf66-c954cfe46234\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRgcentraluseuap/providers/Microsoft.EventGrid/systemTopics/testsystemtopic\",\r\n \"name\": \"testsystemtopic\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete/providers/Microsoft.Storage/StorageAccounts/kevinendpointstest\",\r\n \"topicType\": \"Microsoft.Storage.StorageAccounts\",\r\n \"metricResourceId\": \"1067ba10-22f9-40d8-9f3d-35092e34fd63\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete/providers/Microsoft.EventGrid/systemTopics/kevinendpointstest\",\r\n \"name\": \"kevinendpointstest\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.ApiManagement/service/kishpapimanagement\",\r\n \"topicType\": \"Microsoft.ApiManagement.Service\",\r\n \"metricResourceId\": \"965c8c7d-1ff5-443b-ae14-0fab7645a9a7\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/systemTopics/kishpegapisystopic\",\r\n \"name\": \"kishpegapisystopic\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clieventgridrgszokfxjsgw2dwsuyx2ta6ulpeximrzfezvnyxrqtqc2nn4kkqclln7k7uyqio/providers/microsoft.storage/storageaccounts/clieventgridrxr5a3hxxtcf\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"a171d258-a598-47d7-8ff3-39510f1a8bd1\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clieventgridrgszokfxjsgw2dwsuyx2ta6ulpeximrzfezvnyxrqtqc2nn4kkqclln7k7uyqio/providers/Microsoft.EventGrid/systemTopics/clieventgridrxr5a3hxxtcf-7f7da20e-1d0b-42b2-9e7a-390bfd1fe7d7\",\r\n \"name\": \"clieventgridrxr5a3hxxtcf-7f7da20e-1d0b-42b2-9e7a-390bfd1fe7d7\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted/providers/Microsoft.Storage/storageAccounts/testcanaryeast2kish\",\r\n \"topicType\": \"Microsoft.Storage.StorageAccounts\",\r\n \"metricResourceId\": \"71e3e000-b067-4b2e-86d8-03e819e232d4\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted/providers/Microsoft.EventGrid/systemTopics/testsystemtopic1\",\r\n \"name\": \"testsystemtopic1\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newregionsrg/providers/microsoft.storage/storageaccounts/stgsafwestdelete\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"6c34d61a-1799-4e66-bcac-4ded3483c2f1\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"southafricawest\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newregionsrg/providers/Microsoft.EventGrid/systemTopics/stgsafwestdelete-ebe613dd-73c6-4ec2-928a-1fb6d91573c9\",\r\n \"name\": \"stgsafwestdelete-ebe613dd-73c6-4ec2-928a-1fb6d91573c9\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/systemTopics?api-version=2021-12-01&%24skiptoken=LZDbjoIwEIbfhYh3CFYRNTGbgkBwRdfD7sZLSis2Boot6zG%2b%2b06NzWT6TfvPTKcPo2LXZs6rozLGDyOeL308N8bGoWlqNbbtMquygpWsajrZ%2fU%2byTi5KW%2f0RlUteN1xUynZJnwxch1loSEZW3xs5FullxKKU0OGQesjL%2b3YtxZlTJpWd8lwKJfZNJzxD2Vhyaqubali5FTXP1UdWc%2bsMSig%2bQQ7qWl1kOd12Sx2hoziyamK6xPSIidArhN3sZdojsk6mmj022hffePZ5%2fy3KRbrC72X2qDbUW29B1gXYrgMg5AAmmx%2bNmsIl0MB1XS2JvrQEFyFOLzjFCbri3A9wEPo7PIeehyKJ8TIkSbgNi9VuicPTXu4Sv1hsIl%2fgg39V8eyS4JunBKTt5BWSAtkHxTQNMD6x19tz8DKrilekZ9ADlrzSl%2b%2fx4G1aVWZQ4X0YRRo9qs2l7VYjavg04%2fn8Bw%3d%3d\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/gridresourcegroup\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"38009702-c09d-455c-9118-c0693d6607dd\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/gridresourcegroup/providers/Microsoft.EventGrid/systemTopics/gridresourcegroup-edcdfbd3-569d-4466-b60c-deece0f27d32\",\r\n \"name\": \"gridresourcegroup-edcdfbd3-569d-4466-b60c-deece0f27d32\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9481/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps4656\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"2ffad336-162e-44bc-aecc-c69304c39da5\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9481/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4809\",\r\n \"name\": \"PSTestTopic-ps4809\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup/providers/microsoft.storage/storageaccounts/egstrgltncypublocalusw2\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"c38ee92e-3e77-4e6b-b8e6-5c901176a307\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup/providers/Microsoft.EventGrid/systemTopics/egstrgltncypublocalusw2-11c0cdb5-fccc-4c63-9450-8ed98cd4dc77\",\r\n \"name\": \"egstrgltncypublocalusw2-11c0cdb5-fccc-4c63-9450-8ed98cd4dc77\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/brandon-test/providers/Microsoft.Storage/StorageAccounts/brandonneffstorage\",\r\n \"topicType\": \"Microsoft.Storage.StorageAccounts\",\r\n \"metricResourceId\": \"d412952f-8f59-46e8-ac73-3ca5834018db\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/brandon-test/providers/Microsoft.EventGrid/systemTopics/storage-systemtopic\",\r\n \"name\": \"storage-systemtopic\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/StorageAccounts/cs410037ffea5a817ac\",\r\n \"topicType\": \"Microsoft.Storage.StorageAccounts\",\r\n \"metricResourceId\": \"e4925f91-1af6-4993-9b10-3eaeff9cc67b\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.EventGrid/systemTopics/systemtopictest\",\r\n \"name\": \"systemtopictest\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.Storage/storageAccounts/msitestwithsa\",\r\n \"topicType\": \"Microsoft.Storage.StorageAccounts\",\r\n \"metricResourceId\": \"7ac9627d-7767-4350-b4d9-4c8bcfd3e91c\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.EventGrid/systemTopics/test2\",\r\n \"name\": \"test2\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted/providers/Microsoft.Storage/storageAccounts/testcanaryeast2kish\",\r\n \"topicType\": \"Microsoft.Storage.StorageAccounts\",\r\n \"metricResourceId\": \"71e3e000-b067-4b2e-86d8-03e819e232d4\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted/providers/Microsoft.EventGrid/systemTopics/testsystemtopic1\",\r\n \"name\": \"testsystemtopic1\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/systemTopics?api-version=2022-06-15&%24top=1&%24skiptoken=3ZZbc6owEMe%2fC1P7VKsNoNiZzpklAkVB5aLVvnFJI2UAJXhrp9%2f9BI92znvti5kMbDJLkuWX%2fSefQk72lZXkKRMePwXDGqtgCY%2fCsqpW7LHVyoI8oCQjeXUffGxKch8VWYttQhaVyapKipy15FAKO3KbNJES9ppSt9duhmIQNuM4jBUl7qJuJLVWZbFNYlKylp1EZcGKt%2bpe2%2fJhjTKJW%2bzAKpL5xSqJ2J9glTS33JMP%2foTaCDXbneaDfHvDUj5jkZL8qSGHjW7YQOjY5O%2bGGNRPFLpmv7a7pPdGpzAYfrzQdAjfpSHGdUWi63M3%2foHou%2fhkmd7sbGljbnVkWX7gHg7WeUvhlj6pfYFqMN5BAGAB6I4DGIEpqYRSrGoFjJcm6ceLeJqDAUBNkF%2bZoVJ1mHcQhgXkQPvW5kANGCTbD8lRad%2fGAGsy3pnAI1gpxxXytUU8pDLIKTkFeIw4S%2fL%2f4j15ZcH%2bu1PXa7Mb11WOb2%2bqYvX0INwJL5rnY23ku2BNvSsATPdKHyxL3YA%2fM3bKCfGFACuOz2mMtHAB6oLGCcfsALhtUHfnGX4F0NRDV4Ammo9SGPO9%2fD4HP8L0nH7nX%2ffT7LMBNBgdhurA2QFV8dI5j3xxKBp4%2flWky74rJWD7hgYTsl5qF00X3fDTBYZRZ%2b1zvSPlosZRy%2fHlFewqWHibHYYBJj2qpu%2b76KIsNOIuJQyGN3E5i7n1Syy%2bTxJtCpMrkCyv0glMtgsbLEJrrT%2bWs6z8ULA8a2nW6aHqHIkRaK9AsZEsCwzY2z%2fzPjG03%2fm1oIHeioT3TobrIT9%2bZuuoAgpsk0g8Xw%2fbaSH9TmL9Ezl0JShF0XkGE7EMXH9O2WVRVrbXxqCPicUBVYN0z8%2bf2QbOG%2bXCmvd1JwRlBpSWhAYVif369suzDVxb%2bPoL\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/systemTopics?api-version=2021-12-01&%24skiptoken=LZDbjoIwEIbfhYh3CFYRNTGbgkBwRdfD7sZLSis2Boot6zG%2b%2b06NzWT6TfvPTKcPo2LXZs6rozLGDyOeL308N8bGoWlqNbbtMquygpWsajrZ%2fU%2byTi5KW%2f0RlUteN1xUynZJnwxch1loSEZW3xs5FullxKKU0OGQesjL%2b3YtxZlTJpWd8lwKJfZNJzxD2Vhyaqubali5FTXP1UdWc%2bsMSig%2bQQ7qWl1kOd12Sx2hoziyamK6xPSIidArhN3sZdojsk6mmj022hffePZ5%2fy3KRbrC72X2qDbUW29B1gXYrgMg5AAmmx%2bNmsIl0MB1XS2JvrQEFyFOLzjFCbri3A9wEPo7PIeehyKJ8TIkSbgNi9VuicPTXu4Sv1hsIl%2fgg39V8eyS4JunBKTt5BWSAtkHxTQNMD6x19tz8DKrilekZ9ADlrzSl%2b%2fx4G1aVWZQ4X0YRRo9qs2l7VYjavg04%2fn8Bw%3d%3d", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3N5c3RlbVRvcGljcz9hcGktdmVyc2lvbj0yMDIxLTEyLTAxJiUyNHNraXB0b2tlbj1MWkRiam9Jd0VJYmZoWWgzQ0ZZUk5UR2Jna0J3UmRmRDdzWkxTaXMyQm9vdDZ6RyUyYiUyYjA2TnpXVDZUZnZQVEtjUG8yTFhaczZyb3pMR0R5T2VMMzA4TjhiR29XbHFOYmJ0TXF1eWdwV3NhanJaJTJmVSUyYnlUaTVLVyUyZjBSbFV0ZU4xeFV5blpKbnd4Y2gxbG9TRVpXM3hzNUZ1bGx4S0tVME9HUWVzakwlMmIzWXR4WmxUSnBXZDhsd0tKZlpOSnp4RDJWaHlhcXViYWxpNUZUWFAxVWRXYyUyYnNNU2lnJTJiUVE3cVdsMWtPZDEyU3gyaG96aXlhbUs2eFBTSWlkQXJoTjNzWmRvanNrNm1tajAyMmhmZmVQWjUlMmZ5M0tSYnJDNzJYMnFEYlVXMjlCMWdYWXJnTWc1QUFtbXglMmJObXNJbDBNQjFYUzJKdnJRRUZ5Rk9MempGQ2JyaTNBOXdFUG83UEllZWh5S0o4VElrU2JnTmk5VnVpY1BUWHU0U3YxaHNJbCUyZmdnMzlWOGV5UzRKdW5CS1R0NUJXU0F0a0h4VFFOTUQ2eDE5dHo4REtyaWxla1o5QURscnpTbCUyYiUyZng0RzFhVldaUTRYMFlSUm85cXMybDdWWWphdmcwNCUyZm44QnclM2QlM2Q=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/systemTopics?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3N5c3RlbVRvcGljcz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb13b46c-ad1e-481c-8d31-d0e34bcebc6d" + "de8d4aeb-ad1e-48aa-bd74-3f745116d26e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1389,19 +1314,31 @@ "no-cache" ], "x-ms-original-request-ids": [ - "04a20ce4-3b0f-4bbc-a47d-d6bb19bffdd7" + "bbcc18a7-bb20-4ad4-ab00-d4650eb15898", + "ea6776d4-cb46-4bbc-8a7d-be469956be41", + "1f73da9a-7e1e-474d-bc6a-f32f81bbc52d", + "faffe996-cab0-4093-b2de-d6dd8c35ca0b", + "3f06e4e8-a2da-424d-bb79-9d6fe2f9d41a", + "9913cf17-b30f-4b82-8085-69a8ff49318c", + "3e22230c-ed55-44ac-abaa-f036b5355da3", + "b19a6279-e09c-43f5-9894-0dbf66f428cf", + "401263b6-1fc4-4eb8-a066-a6f46cc08d3d", + "4b03365a-1003-4ff1-8e8b-183c66991477", + "7da1a0c8-98c9-4ef8-9023-5372aabdcdb5", + "be738a4e-8bc3-40c6-8a0b-4a2cf1ad9fb2", + "99394c26-1bc0-4ed9-bfb6-635d9742b2e6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11999" ], "x-ms-request-id": [ - "e01afe20-09d8-4a74-9d49-b71e0ec2fa92" + "5b977137-4030-4010-893f-0ac126be2ad4" ], "x-ms-correlation-request-id": [ - "e01afe20-09d8-4a74-9d49-b71e0ec2fa92" + "5b977137-4030-4010-893f-0ac126be2ad4" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T033019Z:e01afe20-09d8-4a74-9d49-b71e0ec2fa92" + "WESTUS2:20221006T061717Z:5b977137-4030-4010-893f-0ac126be2ad4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1410,7 +1347,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:30:18 GMT" + "Thu, 06 Oct 2022 06:17:16 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1419,31 +1356,31 @@ "-1" ], "Content-Length": [ - "16202" + "37638" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgvhw2gbrofn2qxabjqukojmpfvu2c6ppkwrshlbht6j4tlb7zwgci6o3m2vt4vhvvc\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"6189592a-b6ae-4456-a4f2-05dcf97963f4\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgvhw2gbrofn2qxabjqukojmpfvu2c6ppkwrshlbht6j4tlb7zwgci6o3m2vt4vhvvc/providers/Microsoft.EventGrid/systemTopics/clitest-rgvhw2gbrofn2qxabjqukojmpfvu2c6ppkwrshlbht6j4tlb7zwgci6o3m2vt4vhvvc-5e467ef3-3ee2-4794-a347-46c5b7e75558\",\r\n \"name\": \"clitest-rgvhw2gbrofn2qxabjqukojmpfvu2c6ppkwrshlbht6j4tlb7zwgci6o3m2vt4vhvvc-5e467ef3-3ee2-4794-a347-46c5b7e75558\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgy6k3wf2huzlkvq6ji2yppns5t7bd4jcnyrhry3rl3berje3it76xf3mrsvceehtqi\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"2b039d7f-6f59-4115-8bf0-868b63604dcc\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgy6k3wf2huzlkvq6ji2yppns5t7bd4jcnyrhry3rl3berje3it76xf3mrsvceehtqi/providers/Microsoft.EventGrid/systemTopics/clitest-rgy6k3wf2huzlkvq6ji2yppns5t7bd4jcnyrhry3rl3berje3it76xf3mrsvceehtqi-e9b941a2-db1f-4faa-b027-6b0e618ece10\",\r\n \"name\": \"clitest-rgy6k3wf2huzlkvq6ji2yppns5t7bd4jcnyrhry3rl3berje3it76xf3mrsvceehtqi-e9b941a2-db1f-4faa-b027-6b0e618ece10\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgwtsmk2x74lq5ucz23le446fmndtllskbag7b4cl33bobnkwb452lax3k2dyv4zs5l\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"98b2a4d3-3c24-424d-b510-059dee9391df\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgwtsmk2x74lq5ucz23le446fmndtllskbag7b4cl33bobnkwb452lax3k2dyv4zs5l/providers/Microsoft.EventGrid/systemTopics/clitest-rgwtsmk2x74lq5ucz23le446fmndtllskbag7b4cl33bobnkwb452lax3k2dyv4zs5l-af96272b-c59b-48bc-9f21-98c7f6c6e54b\",\r\n \"name\": \"clitest-rgwtsmk2x74lq5ucz23le446fmndtllskbag7b4cl33bobnkwb452lax3k2dyv4zs5l-af96272b-c59b-48bc-9f21-98c7f6c6e54b\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgfftva5fki4yts7dqyuie2d25ojzese5hvuxefdhm37mmsh473opiullf2svyxzpcy\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"ce0692d4-1929-4865-98e2-fc30b81f5de9\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgfftva5fki4yts7dqyuie2d25ojzese5hvuxefdhm37mmsh473opiullf2svyxzpcy/providers/Microsoft.EventGrid/systemTopics/clitest-rgfftva5fki4yts7dqyuie2d25ojzese5hvuxefdhm37mmsh473opiullf2svyxzpcy-4a36b07f-a7ce-4fdd-9100-105c571476cf\",\r\n \"name\": \"clitest-rgfftva5fki4yts7dqyuie2d25ojzese5hvuxefdhm37mmsh473opiullf2svyxzpcy-4a36b07f-a7ce-4fdd-9100-105c571476cf\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgk2nqhsv4yqjhh63oe7ysznuc7noe2u2s6xiwty2su66vmcbbnx6cwn6xccjhzexvp\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"a6eee212-24b9-4d40-9ea2-d1f08eebbcb9\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgk2nqhsv4yqjhh63oe7ysznuc7noe2u2s6xiwty2su66vmcbbnx6cwn6xccjhzexvp/providers/Microsoft.EventGrid/systemTopics/clitest-rgk2nqhsv4yqjhh63oe7ysznuc7noe2u2s6xiwty2su66vmcbbnx6cwn6xccjhzexvp-ccf49503-af7f-43c8-bac8-e07f9287dd00\",\r\n \"name\": \"clitest-rgk2nqhsv4yqjhh63oe7ysznuc7noe2u2s6xiwty2su66vmcbbnx6cwn6xccjhzexvp-ccf49503-af7f-43c8-bac8-e07f9287dd00\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgjhoug6n3blyjwbza3pjaqllge43n3vzn6tprw3hs7ig2puwjkwxm2m6z34tbcnfni\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"ff2824eb-8ab6-41d6-acd4-475dbe752f1c\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgjhoug6n3blyjwbza3pjaqllge43n3vzn6tprw3hs7ig2puwjkwxm2m6z34tbcnfni/providers/Microsoft.EventGrid/systemTopics/clitest-rgjhoug6n3blyjwbza3pjaqllge43n3vzn6tprw3hs7ig2puwjkwxm2m6z34tbcnfni-9de94722-add5-48ff-9e5d-4c86bc7b652f\",\r\n \"name\": \"clitest-rgjhoug6n3blyjwbza3pjaqllge43n3vzn6tprw3hs7ig2puwjkwxm2m6z34tbcnfni-9de94722-add5-48ff-9e5d-4c86bc7b652f\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/test1\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"f74f0c39-83d1-4757-aee4-ed682693f74b\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/test1/providers/Microsoft.EventGrid/systemTopics/test1-9ee5f0fa-0ba7-4b43-93d3-4383befaf5be\",\r\n \"name\": \"test1-9ee5f0fa-0ba7-4b43-93d3-4383befaf5be\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgugwoshphzozagzimymgwgvjnxmvzqp5ocopvh4ub7q73mqn7mqwyjbyndb5nktvnf\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"54d0ccd4-7642-43d0-90ca-d18bfece0883\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgugwoshphzozagzimymgwgvjnxmvzqp5ocopvh4ub7q73mqn7mqwyjbyndb5nktvnf/providers/Microsoft.EventGrid/systemTopics/clitest-rgugwoshphzozagzimymgwgvjnxmvzqp5ocopvh4ub7q73mqn7mqwyjbyndb5nktvnf-e8a365a7-d5d0-4b61-a272-b8049cf7f26d\",\r\n \"name\": \"clitest-rgugwoshphzozagzimymgwgvjnxmvzqp5ocopvh4ub7q73mqn7mqwyjbyndb5nktvnf-e8a365a7-d5d0-4b61-a272-b8049cf7f26d\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgrspxro5j5byy6snwchqdopfyeicquub4wrl634l7wztbfzcl6z444qgmetrcz22wz\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"1a22f8cc-709e-4564-8ab7-728db3f73665\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgrspxro5j5byy6snwchqdopfyeicquub4wrl634l7wztbfzcl6z444qgmetrcz22wz/providers/Microsoft.EventGrid/systemTopics/clitest-rgrspxro5j5byy6snwchqdopfyeicquub4wrl634l7wztbfzcl6z444qgmetrcz22wz-e2f5a09b-9561-406c-b20e-5e422c5ef843\",\r\n \"name\": \"clitest-rgrspxro5j5byy6snwchqdopfyeicquub4wrl634l7wztbfzcl6z444qgmetrcz22wz-e2f5a09b-9561-406c-b20e-5e422c5ef843\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rguifwywhuf62tpj3ax6e3kqu4ebf5zhhhgjdkvhkgur2kzsui6bravtrgh3tlyyniu\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"d8a26679-a751-44ad-8a98-8da1305c9ff0\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rguifwywhuf62tpj3ax6e3kqu4ebf5zhhhgjdkvhkgur2kzsui6bravtrgh3tlyyniu/providers/Microsoft.EventGrid/systemTopics/clitest-rguifwywhuf62tpj3ax6e3kqu4ebf5zhhhgjdkvhkgur2kzsui6bravtrgh3tlyyniu-c041d1fc-1562-405c-93b9-78905e153078\",\r\n \"name\": \"clitest-rguifwywhuf62tpj3ax6e3kqu4ebf5zhhhgjdkvhkgur2kzsui6bravtrgh3tlyyniu-c041d1fc-1562-405c-93b9-78905e153078\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps7238\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"c161ae58-32be-4f85-a314-b2fcdf7696ea\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps7238/providers/Microsoft.EventGrid/systemTopics/rgname-ps7238-8f2ca7e2-c5cd-4ae6-ae06-8e9b53bbced4\",\r\n \"name\": \"rgname-ps7238-8f2ca7e2-c5cd-4ae6-ae06-8e9b53bbced4\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2395\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"a7ad83f7-4186-404a-a8d1-d749a34c1d68\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2395/providers/Microsoft.EventGrid/systemTopics/rgname-ps2395-e4090dde-7192-49c8-a0ec-9400895a8a00\",\r\n \"name\": \"rgname-ps2395-e4090dde-7192-49c8-a0ec-9400895a8a00\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2089\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"4b6461f9-47b9-4ec1-9a11-f7a84af3c867\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2089/providers/Microsoft.EventGrid/systemTopics/rgname-ps2089-e4c03fcd-7d2e-4611-aa15-0a08805e23e9\",\r\n \"name\": \"rgname-ps2089-e4c03fcd-7d2e-4611-aa15-0a08805e23e9\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgbmkajelng45muwemcbenm4vwwex3zicdp4ih3gg3ngztiy7iy4ptgbamcerlf52k5\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"0a59351b-fbad-4a6f-bb4a-81e0c05a5dfa\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgbmkajelng45muwemcbenm4vwwex3zicdp4ih3gg3ngztiy7iy4ptgbamcerlf52k5/providers/Microsoft.EventGrid/systemTopics/clitest-rgbmkajelng45muwemcbenm4vwwex3zicdp4ih3gg3ngztiy7iy4ptgbamcerlf52k5-80e2a8e1-1da9-4048-aecf-151af7480b90\",\r\n \"name\": \"clitest-rgbmkajelng45muwemcbenm4vwwex3zicdp4ih3gg3ngztiy7iy4ptgbamcerlf52k5-80e2a8e1-1da9-4048-aecf-151af7480b90\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rghws7xajkhx3pjjk7tu3prfirukcwtyxvbkxhydc4bdtsl4fjuiufohsg5o6vok7mi\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"addc53ad-5bda-4c04-8d04-ea86ccd71686\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rghws7xajkhx3pjjk7tu3prfirukcwtyxvbkxhydc4bdtsl4fjuiufohsg5o6vok7mi/providers/Microsoft.EventGrid/systemTopics/clitest-rghws7xajkhx3pjjk7tu3prfirukcwtyxvbkxhydc4bdtsl4fjuiufohsg5o6vok7mi-eec37c45-87f5-448e-9d33-ccb2f9074371\",\r\n \"name\": \"clitest-rghws7xajkhx3pjjk7tu3prfirukcwtyxvbkxhydc4bdtsl4fjuiufohsg5o6vok7mi-eec37c45-87f5-448e-9d33-ccb2f9074371\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgrgsowriy7z3xmcopkjvo2vgwfgop34f4qguqozphrnazibjpyxb5qr76im4brdsbo\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"d7d65c38-8ba3-4727-897f-387cd30452ce\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgrgsowriy7z3xmcopkjvo2vgwfgop34f4qguqozphrnazibjpyxb5qr76im4brdsbo/providers/Microsoft.EventGrid/systemTopics/clitest-rgrgsowriy7z3xmcopkjvo2vgwfgop34f4qguqozphrnazibjpyxb5qr76im4brdsbo-c04c1481-f550-41d2-9a4f-1f6a7aa401f5\",\r\n \"name\": \"clitest-rgrgsowriy7z3xmcopkjvo2vgwfgop34f4qguqozphrnazibjpyxb5qr76im4brdsbo-c04c1481-f550-41d2-9a4f-1f6a7aa401f5\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgkhl4spsq65s3jryi63y2ebprwaavpa7mth3723q4wyc7dxjumpyiehr4y2q3mlpk7\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"5949cdc6-ec7e-403b-81c9-4615db07bf96\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgkhl4spsq65s3jryi63y2ebprwaavpa7mth3723q4wyc7dxjumpyiehr4y2q3mlpk7/providers/Microsoft.EventGrid/systemTopics/clitest-rgkhl4spsq65s3jryi63y2ebprwaavpa7mth3723q4wyc7dxjumpyiehr4y2q3mlpk7-a2a420c4-33fc-4993-8a0f-02c5dbc57ba3\",\r\n \"name\": \"clitest-rgkhl4spsq65s3jryi63y2ebprwaavpa7mth3723q4wyc7dxjumpyiehr4y2q3mlpk7-a2a420c4-33fc-4993-8a0f-02c5dbc57ba3\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rg7ns2ya23i7sb56d65h7whit6ftnnwahn34levwd37eijjrabesohhknemuhzamd6n\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"2af12741-847f-4e20-bab7-5437362a7c32\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rg7ns2ya23i7sb56d65h7whit6ftnnwahn34levwd37eijjrabesohhknemuhzamd6n/providers/Microsoft.EventGrid/systemTopics/clitest-rg7ns2ya23i7sb56d65h7whit6ftnnwahn34levwd37eijjrabesohhknemuhzamd6n-1b3dca70-c75f-4f73-9c87-be72ea84697c\",\r\n \"name\": \"clitest-rg7ns2ya23i7sb56d65h7whit6ftnnwahn34levwd37eijjrabesohhknemuhzamd6n-1b3dca70-c75f-4f73-9c87-be72ea84697c\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgji7mk3pmpcj4aq3x65fbeuiquxgr5htg56bljplug7o5lwbwpyk6sgcd2dxjq557b\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"644a8eab-3be1-4de9-9de3-ce2ed375641e\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgji7mk3pmpcj4aq3x65fbeuiquxgr5htg56bljplug7o5lwbwpyk6sgcd2dxjq557b/providers/Microsoft.EventGrid/systemTopics/clitest-rgji7mk3pmpcj4aq3x65fbeuiquxgr5htg56bljplug7o5lwbwpyk6sgcd2dxjq557b-8391dcfd-7e2b-4f4a-b3ce-602f062bbed1\",\r\n \"name\": \"clitest-rgji7mk3pmpcj4aq3x65fbeuiquxgr5htg56bljplug7o5lwbwpyk6sgcd2dxjq557b-8391dcfd-7e2b-4f4a-b3ce-602f062bbed1\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgpdtpzyvohfkwaar2vxuhy6vaijkjjk46ft46ra2p2cmn7cjorzkvbnuwbvilgkke7\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"d8d73fdb-634e-44d8-89ec-e97da9d37adf\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgpdtpzyvohfkwaar2vxuhy6vaijkjjk46ft46ra2p2cmn7cjorzkvbnuwbvilgkke7/providers/Microsoft.EventGrid/systemTopics/clitest-rgpdtpzyvohfkwaar2vxuhy6vaijkjjk46ft46ra2p2cmn7cjorzkvbnuwbvilgkke7-86d0b04e-5359-4021-bf3d-b24894bb2ebe\",\r\n \"name\": \"clitest-rgpdtpzyvohfkwaar2vxuhy6vaijkjjk46ft46ra2p2cmn7cjorzkvbnuwbvilgkke7-86d0b04e-5359-4021-bf3d-b24894bb2ebe\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/systemTopics?api-version=2021-12-01&%24skiptoken=TVBdb4IwFP0vRHxDoICoiVk6RYbDuDi3xUdKa9cQWtJW%2fIr%2ffcWZZc3N7bknp%2bee9GpxctI545WyJlcrzdfPMLcm1rfWjZq4bl3wgpKacD0oLgdJBqWoXXVAqpSs0Uxw5UYoRMPIIw4YobETxmPPQUGBHIwRHo1wDOIydBspWoaJVO6KlVIosdeDpDW2qWTYVWelSb0VDSvVU9EwpzVKYz4FHvAdHzie3%2b%2bpymwUFeFTO0J2jGwA7qO57aDoOkCbbN7hmIz39AMuXy9ftGrkMYG%2fxw5wVyDYbI3MPAi2m5lBoWdg9v75ILNkbdAwiiLf8Iu3TgJpkq6OuwTOkhbCHYd0nh%2fONINL1r6Ery2lKVwdMzhrwvsKY16aTLLglDwS3iPXjP8L%2fFDVxemPXCw6GOOuItzvadGYb7Butx8%3d\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"a3697492-d56a-490e-be64-4c0d14820ddc\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg/providers/Microsoft.EventGrid/systemTopics/kalsrg-b2678b2e-0938-4243-9fc5-823489b1b2bf\",\r\n \"name\": \"kalsrg-b2678b2e-0938-4243-9fc5-823489b1b2bf\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/gridresourcegroup\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"38009702-c09d-455c-9118-c0693d6607dd\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/gridresourcegroup/providers/Microsoft.EventGrid/systemTopics/gridresourcegroup-edcdfbd3-569d-4466-b60c-deece0f27d32\",\r\n \"name\": \"gridresourcegroup-edcdfbd3-569d-4466-b60c-deece0f27d32\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-EventHub-EASTUS2EUAP\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"ef909605-9149-4ff0-91f3-8d6199250048\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-EventHub-EASTUS2EUAP/providers/Microsoft.EventGrid/systemTopics/Default-EventHub-EASTUS2EUAP-0bf8841b-1321-4093-a799-52b37f943a72\",\r\n \"name\": \"Default-EventHub-EASTUS2EUAP-0bf8841b-1321-4093-a799-52b37f943a72\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/egprodtestingrg\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"278a836f-6ccd-450e-9120-0ec85299e167\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/egprodtestingrg/providers/Microsoft.EventGrid/systemTopics/egprodtestingrg-364b3f76-7806-4a7c-b14d-e324df16dded\",\r\n \"name\": \"egprodtestingrg-364b3f76-7806-4a7c-b14d-e324df16dded\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cesartopics\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"513ef6ab-ecf1-4ffc-8d4e-5559887c30b4\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cesartopics/providers/Microsoft.EventGrid/systemTopics/cesartopics-591ef1ff-849d-46ac-8354-f6fcabbcee54\",\r\n \"name\": \"cesartopics-591ef1ff-849d-46ac-8354-f6fcabbcee54\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/snorop\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"b4a7c272-cd4e-4d54-b03a-aebd457bfd4c\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/snorop/providers/Microsoft.EventGrid/systemTopics/snorop-e3b5ad25-01d5-4dff-a985-3773ffaf7808\",\r\n \"name\": \"snorop-e3b5ad25-01d5-4dff-a985-3773ffaf7808\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"20e5059c-6f3f-49ca-af2c-b1c4f7ea3034\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg/providers/Microsoft.EventGrid/systemTopics/examplerg-da5fb1ee-d4e7-46e3-a756-ebbbbbe0309e\",\r\n \"name\": \"examplerg-da5fb1ee-d4e7-46e3-a756-ebbbbbe0309e\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"b9a9a686-83a3-4a51-a7e7-a937b0670e13\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup/providers/Microsoft.EventGrid/systemTopics/eventgridrunnertestresourcegroup-2eda2957-2ed4-42bb-ad01-60af9f8244e4\",\r\n \"name\": \"eventgridrunnertestresourcegroup-2eda2957-2ed4-42bb-ad01-60af9f8244e4\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/demo-devopsautomation\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"9b578516-49bc-47d5-ac77-3d023458ade0\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/demo-devopsautomation/providers/Microsoft.EventGrid/systemTopics/demo-devopsautomation-7edd4cc1-9de0-416e-9a12-d7f90c174a2b\",\r\n \"name\": \"demo-devopsautomation-7edd4cc1-9de0-416e-9a12-d7f90c174a2b\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/contosovms\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"f70a33cc-6dd4-4ea1-ad5b-48bd5b310b9f\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/contosovms/providers/Microsoft.EventGrid/systemTopics/contosovms-17cd840b-362a-4464-be48-b60c9099ba7f\",\r\n \"name\": \"contosovms-17cd840b-362a-4464-be48-b60c9099ba7f\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/FrancosResources\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"aca07792-8724-43cd-8955-8c37658d5a3c\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/FrancosResources/providers/Microsoft.EventGrid/systemTopics/FrancosResources-bc9f864b-f76a-4255-8615-4879e4f877c8\",\r\n \"name\": \"FrancosResources-bc9f864b-f76a-4255-8615-4879e4f877c8\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalstest\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"4300b169-3f53-4a65-8e98-ecab212cbad4\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalstest/providers/Microsoft.EventGrid/systemTopics/kalstest-62c55410-de25-4c26-abfd-69346d5a6993\",\r\n \"name\": \"kalstest-62c55410-de25-4c26-abfd-69346d5a6993\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testpsrg\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"c669b891-8bfb-425e-baad-c569ecb4977c\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testpsrg/providers/Microsoft.EventGrid/systemTopics/testpsrg-2adb34a5-c420-4aa4-88d8-ae827d7dcc45\",\r\n \"name\": \"testpsrg-2adb34a5-c420-4aa4-88d8-ae827d7dcc45\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/serverlessdevops\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"38bafb27-61fc-4419-8cc9-67e78201ab97\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/serverlessdevops/providers/Microsoft.EventGrid/systemTopics/serverlessdevops-7220c661-2a0b-442d-b647-8612db846241\",\r\n \"name\": \"serverlessdevops-7220c661-2a0b-442d-b647-8612db846241\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"35e97d5c-f997-4ddc-90d4-1d7543b8f878\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/systemTopics/amh-465ec538-5ac1-43ec-a486-9a800240c40d\",\r\n \"name\": \"amh-465ec538-5ac1-43ec-a486-9a800240c40d\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/test1\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"f74f0c39-83d1-4757-aee4-ed682693f74b\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/test1/providers/Microsoft.EventGrid/systemTopics/test1-9ee5f0fa-0ba7-4b43-93d3-4383befaf5be\",\r\n \"name\": \"test1-9ee5f0fa-0ba7-4b43-93d3-4383befaf5be\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps7238\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"c161ae58-32be-4f85-a314-b2fcdf7696ea\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps7238/providers/Microsoft.EventGrid/systemTopics/rgname-ps7238-8f2ca7e2-c5cd-4ae6-ae06-8e9b53bbced4\",\r\n \"name\": \"rgname-ps7238-8f2ca7e2-c5cd-4ae6-ae06-8e9b53bbced4\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2395\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"a7ad83f7-4186-404a-a8d1-d749a34c1d68\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2395/providers/Microsoft.EventGrid/systemTopics/rgname-ps2395-e4090dde-7192-49c8-a0ec-9400895a8a00\",\r\n \"name\": \"rgname-ps2395-e4090dde-7192-49c8-a0ec-9400895a8a00\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2089\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"4b6461f9-47b9-4ec1-9a11-f7a84af3c867\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2089/providers/Microsoft.EventGrid/systemTopics/rgname-ps2089-e4c03fcd-7d2e-4611-aa15-0a08805e23e9\",\r\n \"name\": \"rgname-ps2089-e4c03fcd-7d2e-4611-aa15-0a08805e23e9\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msiglobal\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"a48fdce6-0c95-4c0e-89b2-9794d2adbaff\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/userassignedmsitest1\": {\r\n \"principalId\": \"a2f990d8-2f0b-4266-a334-c57cf3bb51b7\",\r\n \"clientId\": \"4b0f3242-b99d-4632-87ae-939e9754ae24\"\r\n }\r\n }\r\n },\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msiglobal/providers/Microsoft.EventGrid/systemTopics/useridentitytopic1\",\r\n \"name\": \"useridentitytopic1\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps530/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps2827\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"29d2a45b-e60a-435d-9666-6e72daa360b4\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps530/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps3084\",\r\n \"name\": \"PSTestTopic-ps3084\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9481/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps4656\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"2ffad336-162e-44bc-aecc-c69304c39da5\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9481/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4809\",\r\n \"name\": \"PSTestTopic-ps4809\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2266/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps3353\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"fcd3d949-bb9e-4b56-8025-a73a9002fa07\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2266/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps108\",\r\n \"name\": \"PSTestTopic-ps108\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8154/providers/Microsoft.Storage/storageAccounts/storagenameps7454\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"b831fc19-11b8-4aeb-b6ec-d4fb979dc3ff\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8154/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps9626\",\r\n \"name\": \"PSTestTopic-ps9626\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8466/providers/Microsoft.Storage/storageAccounts/storagenameps8390\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"44b87c8d-2b7a-45d4-9494-859c21a76950\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8466/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps7193\",\r\n \"name\": \"PSTestTopic-ps7193\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps821/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps4151\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"83dc3504-37ce-4bd0-9d73-3c5f9d07fa02\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps821/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps1000\",\r\n \"name\": \"PSTestTopic-ps1000\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6020/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps5889\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"d7cbbafe-c627-4a86-96c1-8b6dde3ba46b\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Dept\": \"IT\",\r\n \"Environment\": \"Test\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6020/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4213\",\r\n \"name\": \"PSTestTopic-ps4213\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6020/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps2144\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"82c6e882-69ab-420c-af88-bf64449cb15e\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6020/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps7340\",\r\n \"name\": \"PSTestTopic-ps7340\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup/providers/microsoft.storage/storageaccounts/egstrglocalwestus20\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"69e819bb-0136-4ac3-a921-b46ae94ba476\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup/providers/Microsoft.EventGrid/systemTopics/egstrglocalwestus20-2558a314-664c-4739-946d-9a2b8960c9b2\",\r\n \"name\": \"egstrglocalwestus20-2558a314-664c-4739-946d-9a2b8960c9b2\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup/providers/microsoft.storage/storageaccounts/egstrgltncypublocalusw2\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"c38ee92e-3e77-4e6b-b8e6-5c901176a307\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup/providers/Microsoft.EventGrid/systemTopics/egstrgltncypublocalusw2-11c0cdb5-fccc-4c63-9450-8ed98cd4dc77\",\r\n \"name\": \"egstrgltncypublocalusw2-11c0cdb5-fccc-4c63-9450-8ed98cd4dc77\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup/providers/microsoft.storage/storageaccounts/egstrgltncypublclwstus2\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"3ac3db93-53dc-4d9a-9d71-c39d4348c3a6\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup/providers/Microsoft.EventGrid/systemTopics/egstrgltncypublclwstus2-80af3677-5d75-424c-8822-bddb30f8a1e3\",\r\n \"name\": \"egstrgltncypublclwstus2-80af3677-5d75-424c-8822-bddb30f8a1e3\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rg1/providers/Microsoft.Storage/storageAccounts/kishpstg\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"6b7bd8cf-1ae7-4f38-aab8-3af977e85e5a\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"3b38141a-c2a5-4342-9625-08cd4a574598\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rg1/providers/Microsoft.EventGrid/systemTopics/systemtopic1\",\r\n \"name\": \"systemtopic1\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.Storage/storageAccounts/kishpteststg\",\r\n \"topicType\": \"Microsoft.Storage.StorageAccounts\",\r\n \"metricResourceId\": \"80a7f69a-eb55-47db-83ef-dca84ad2808b\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"b3c998fc-b500-44dd-81b5-bdd7d18b99f7\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.EventGrid/systemTopics/kishpegstgsystopic\",\r\n \"name\": \"kishpegstgsystopic\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/brandon-test/providers/Microsoft.Storage/StorageAccounts/brandonneffstorage\",\r\n \"topicType\": \"Microsoft.Storage.StorageAccounts\",\r\n \"metricResourceId\": \"d412952f-8f59-46e8-ac73-3ca5834018db\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/brandon-test/providers/Microsoft.EventGrid/systemTopics/storage-systemtopic\",\r\n \"name\": \"storage-systemtopic\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventhubbigeventlatency/providers/Microsoft.Eventhub/Namespaces/eventhubbigeventlatency1partition\",\r\n \"topicType\": \"Microsoft.Eventhub.Namespaces\",\r\n \"metricResourceId\": \"52840ce1-1c51-4aad-adb1-05bb336d04fe\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventhubbigeventlatency/providers/Microsoft.EventGrid/systemTopics/test\",\r\n \"name\": \"test\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.Storage/storageAccounts/kishpteststgwestus\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"afde3958-60e6-4e8a-9d2a-e7a596e43805\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.EventGrid/systemTopics/kishpteststgwestus-fcc7adcc-b037-4ef1-8feb-5484902b2b0a\",\r\n \"name\": \"kishpteststgwestus-fcc7adcc-b037-4ef1-8feb-5484902b2b0a\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/StorageAccounts/cs410037ffea5a817ac\",\r\n \"topicType\": \"Microsoft.Storage.StorageAccounts\",\r\n \"metricResourceId\": \"e4925f91-1af6-4993-9b10-3eaeff9cc67b\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.EventGrid/systemTopics/systemtopictest\",\r\n \"name\": \"systemtopictest\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.Storage/storageAccounts/kishptesacc2twestus\",\r\n \"topicType\": \"Microsoft.Storage.StorageAccounts\",\r\n \"metricResourceId\": \"f5dad07b-ebcb-473d-b4ca-683cdb07ebb3\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.EventGrid/systemTopics/mysystemtopic\",\r\n \"name\": \"mysystemtopic\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrgstorage/providers/Microsoft.Storage/storageAccounts/teststoragezrs\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"0175af6e-c4bc-41a0-91ad-f5989d487f53\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"australiaeast\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrgstorage/providers/Microsoft.EventGrid/systemTopics/teststoragezrs-c0068ed8-f5ee-4c7f-a23f-ed8dc0f6b153\",\r\n \"name\": \"teststoragezrs-c0068ed8-f5ee-4c7f-a23f-ed8dc0f6b153\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/ahsdk/providers/Microsoft.Storage/storageAccounts/ahtestreprostg\",\r\n \"topicType\": \"Microsoft.Storage.StorageAccounts\",\r\n \"metricResourceId\": \"eddaba60-0327-4309-96d5-3911dea245a3\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westeurope\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/ahsdk/providers/Microsoft.EventGrid/systemTopics/any1\",\r\n \"name\": \"any1\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.Storage/storageAccounts/msitest5\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"5deccc33-df76-467e-8cdb-4d564e972534\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a23acb3a-4580-4384-85d2-d1e309e540cd\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/systemTopics/systemtopic2storage3\",\r\n \"name\": \"systemtopic2storage3\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newregionsrg/providers/microsoft.storage/storageaccounts/stgsouthafricanorth\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"10c4929e-6c45-48e2-94f5-4f4cb480e31c\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"southafricanorth\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newregionsrg/providers/Microsoft.EventGrid/systemTopics/stgsouthafricanorth-34dfd305-9c83-4c12-a86e-a3035e831a28\",\r\n \"name\": \"stgsouthafricanorth-34dfd305-9c83-4c12-a86e-a3035e831a28\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted/providers/Microsoft.Storage/storageAccounts/trackedsource2stg\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"a8e801b6-10bd-4173-badf-51ad1277988b\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9130/providers/Microsoft.EventGrid/systemTopics/sdk-SystemTopic-7607\",\r\n \"name\": \"sdk-SystemTopic-7607\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.Storage/storageAccounts/msitestwithsa\",\r\n \"topicType\": \"Microsoft.Storage.StorageAccounts\",\r\n \"metricResourceId\": \"7ac9627d-7767-4350-b4d9-4c8bcfd3e91c\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.EventGrid/systemTopics/test2\",\r\n \"name\": \"test2\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.Storage/storageAccounts/msisystemtopicstorage\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"d0744dfb-c6f0-4517-8860-6b69a35095ba\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"102ddd90-55b1-47a1-9861-df58f8720ae7\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/systemTopics/systemtopicstorage\",\r\n \"name\": \"systemtopicstorage\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.Storage/storageAccounts/msitest4\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"1b162dd4-0af0-4f55-905b-abee6cafe610\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"bda533aa-967e-4d77-86a5-172b9744b923\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/systemTopics/systemtopic2storage2\",\r\n \"name\": \"systemtopic2storage2\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbashnew/providers/microsoft.storage/storageaccounts/testonestg\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"4ddf4a30-df59-4ddc-af42-4ac975c81739\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbashnew/providers/Microsoft.EventGrid/systemTopics/testonestg-2730ba1f-0dfb-4258-be49-e10f0ccf464e\",\r\n \"name\": \"testonestg-2730ba1f-0dfb-4258-be49-e10f0ccf464e\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.Storage/storageAccounts/testrgjobsched\",\r\n \"topicType\": \"Microsoft.Storage.storageAccounts\",\r\n \"metricResourceId\": \"7933f1e2-e1e7-45c0-800d-eb04ff40c86a\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/systemTopics/testing2\",\r\n \"name\": \"testing2\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.Storage/StorageAccounts/msitest6\",\r\n \"topicType\": \"Microsoft.Storage.StorageAccounts\",\r\n \"metricResourceId\": \"9ce76ec7-bc41-4d38-8959-2531ee3a1b95\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"e88d14c0-e2b0-4caf-8ec3-1cb59b5832f0\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/systemTopics/msitest6systemtop\",\r\n \"name\": \"msitest6systemtop\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRgcentraluseuap/providers/Microsoft.Eventhub/Namespaces/eggseh3centraluseuap\",\r\n \"topicType\": \"Microsoft.Eventhub.Namespaces\",\r\n \"metricResourceId\": \"fe2d0faa-4bc6-4ce1-bf66-c954cfe46234\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRgcentraluseuap/providers/Microsoft.EventGrid/systemTopics/testsystemtopic\",\r\n \"name\": \"testsystemtopic\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Eventhub/Namespaces/devexpeh\",\r\n \"topicType\": \"Microsoft.Eventhub.Namespaces\",\r\n \"metricResourceId\": \"557edbe2-e8ac-41a7-8bf6-3be705499a92\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"key1\": \"2022-05-24T18:14:22.242Z\",\r\n \"key2\": \"2023-11-14T18:14:22.211Z\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.EventGrid/systemTopics/testTag123\",\r\n \"name\": \"testTag123\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/brandonneff-canary/providers/Microsoft.Storage/StorageAccounts/brandonstorage411\",\r\n \"topicType\": \"Microsoft.Storage.StorageAccounts\",\r\n \"metricResourceId\": \"b6f5a3f6-69c6-4201-9883-c9e68d75426a\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/brandonneff-canary/providers/Microsoft.EventGrid/systemTopics/brandonneff-systemtopic-canary\",\r\n \"name\": \"brandonneff-systemtopic-canary\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kevin/providers/Microsoft.Storage/StorageAccounts/testpublisher\",\r\n \"topicType\": \"Microsoft.Storage.StorageAccounts\",\r\n \"metricResourceId\": \"c4aab69f-750d-4d76-898f-54066bd551d1\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kevin/providers/Microsoft.EventGrid/systemTopics/storagesystemtopic\",\r\n \"name\": \"storagesystemtopic\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.Storage/storageAccounts/mystgcentraleuapkishp\",\r\n \"topicType\": \"Microsoft.Storage.StorageAccounts\",\r\n \"metricResourceId\": \"173a11ec-de72-48d9-8f23-66e874308066\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/systemTopics/mystgcentraleuapkishp-systemtopic\",\r\n \"name\": \"mystgcentraleuapkishp-systemtopic\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.ApiManagement/service/kishpapimanagement\",\r\n \"topicType\": \"Microsoft.ApiManagement.Service\",\r\n \"metricResourceId\": \"965c8c7d-1ff5-443b-ae14-0fab7645a9a7\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/systemTopics/kishpegapisystopic\",\r\n \"name\": \"kishpegapisystopic\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted/providers/Microsoft.Storage/storageAccounts/testcanaryeast2kish\",\r\n \"topicType\": \"Microsoft.Storage.StorageAccounts\",\r\n \"metricResourceId\": \"71e3e000-b067-4b2e-86d8-03e819e232d4\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted/providers/Microsoft.EventGrid/systemTopics/testsystemtopic1\",\r\n \"name\": \"testsystemtopic1\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.Storage/StorageAccounts/mykisheasteuap\",\r\n \"topicType\": \"Microsoft.Storage.StorageAccounts\",\r\n \"metricResourceId\": \"ac7aafbe-8dcc-431e-8ce3-55483aa6e7a8\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/systemTopics/testtopiceuapstg\",\r\n \"name\": \"testtopiceuapstg\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/kishprg/providers/Microsoft.Storage/storageAccounts/mykishpeastus2euap\",\r\n \"topicType\": \"Microsoft.Storage.StorageAccounts\",\r\n \"metricResourceId\": \"969f493b-68e7-420b-9bc6-3ae120d082b6\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/systemTopics/mykishpeastus2euap-systopic\",\r\n \"name\": \"mykishpeastus2euap-systopic\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newregionsrg/providers/microsoft.storage/storageaccounts/stgsafwestdelete\",\r\n \"topicType\": \"microsoft.storage.storageaccounts\",\r\n \"metricResourceId\": \"6c34d61a-1799-4e66-bcac-4ded3483c2f1\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"southafricawest\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newregionsrg/providers/Microsoft.EventGrid/systemTopics/stgsafwestdelete-ebe613dd-73c6-4ec2-928a-1fb6d91573c9\",\r\n \"name\": \"stgsafwestdelete-ebe613dd-73c6-4ec2-928a-1fb6d91573c9\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/systemTopics?api-version=2022-06-15&%24skiptoken=TZFva8IwEMa%2fS7G%2bWm2N1qogI3MqTkXXdRt7mTQxBmlakvgfv%2fsuzo2FI%2fnd8XD3cLl4ih%2ftXKqt8foXbzJfPuG51%2fc21lamH4YFUUTwgivbIOed5o28LEKzoybXsrKyVCaMaZt24ogHqEt7QTvpRQFtERowRlm3yxKU5O2w0uVeMq5NuJC5Lk25to3RHtpOtGShORnLi6ysZG4eSSWDPSih%2bQBFCAVRJ2jG9ZrZwsRyy9XAj6mfUB%2bhWwqv3yLuRjSdPjtOeG8t3vHL7Pwp1Bzqhy3%2bOX6LuUCtNANhEyBLh0AoApy%2bfTh0NFoCdeI4dpLX4RiyLtB45cRYjNTylA%2fxYpfM8BcuZj5arzZ4gheHKR5W7QSL5446%2fA6Djjn400QJfnd7s19I9c%2f8XVWQ419xPHaYMBcxq9dsWcFKvOuDR3SBhdBcEMtZ5rYCn4bThXf9Bg%3d%3d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/systemTopics?api-version=2021-12-01&%24skiptoken=TVBdb4IwFP0vRHxDoICoiVk6RYbDuDi3xUdKa9cQWtJW%2fIr%2ffcWZZc3N7bknp%2bee9GpxctI545WyJlcrzdfPMLcm1rfWjZq4bl3wgpKacD0oLgdJBqWoXXVAqpSs0Uxw5UYoRMPIIw4YobETxmPPQUGBHIwRHo1wDOIydBspWoaJVO6KlVIosdeDpDW2qWTYVWelSb0VDSvVU9EwpzVKYz4FHvAdHzie3%2b%2bpymwUFeFTO0J2jGwA7qO57aDoOkCbbN7hmIz39AMuXy9ftGrkMYG%2fxw5wVyDYbI3MPAi2m5lBoWdg9v75ILNkbdAwiiLf8Iu3TgJpkq6OuwTOkhbCHYd0nh%2fONINL1r6Ery2lKVwdMzhrwvsKY16aTLLglDwS3iPXjP8L%2fFDVxemPXCw6GOOuItzvadGYb7Butx8%3d", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3N5c3RlbVRvcGljcz9hcGktdmVyc2lvbj0yMDIxLTEyLTAxJiUyNHNraXB0b2tlbj1UVkJkYjRJd0ZQMHZSSHhEb0lDb2lWazZSWWJEdURpM3hVZEthOWNRV3RKVyUyZklyJTJmZmNXWlpjM043YmtucCUyYmVlOUdweGN0STU0NVd5SmxjcnpkZlBNTGNtMXJmV2pacTRibDN3Z3BLYWNEMG9MZ2RKQnFXb1hYVkFxcFNzMFV4dzVVWW9STVBJSXc0WW9iRVR4bVBQUVVHQkhJd1JIbzF3RE9JeWRCc3BXb2FKVk82S2xWSW9zZGVEcERXMnFXVFlWV2VsU2IwVkRTdlZVOUV3cHpWS1l6NEZIdkFkSHppZTMlMmIlMmJweW13VUZlRlRPMEoyakd3QTdxTzU3YURvT2tDYmJON2htSXozOUFNdVh5OWZ0R3JrTVlHJTJmeHc1d1Z5RFliSTNNUEFpMm01bEJvV2RnOXY3NUlMTmtiZEF3aWlMZjhJdTNUZ0pwa3E2T3V3VE9raGJDSFlkMG5oJTJmT05JTkwxcjZFcnkybEtWd2RNemhyd3ZzS1kxNmFUTExnbER3UzNpUFhqUDhMJTJmRkRWeGVtUFhDdzZHT091SXR6dmFkR1liN0J1dHg4JTNk", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/systemTopics?api-version=2022-06-15&%24skiptoken=TZFva8IwEMa%2fS7G%2bWm2N1qogI3MqTkXXdRt7mTQxBmlakvgfv%2fsuzo2FI%2fnd8XD3cLl4ih%2ftXKqt8foXbzJfPuG51%2fc21lamH4YFUUTwgivbIOed5o28LEKzoybXsrKyVCaMaZt24ogHqEt7QTvpRQFtERowRlm3yxKU5O2w0uVeMq5NuJC5Lk25to3RHtpOtGShORnLi6ysZG4eSSWDPSih%2bQBFCAVRJ2jG9ZrZwsRyy9XAj6mfUB%2bhWwqv3yLuRjSdPjtOeG8t3vHL7Pwp1Bzqhy3%2bOX6LuUCtNANhEyBLh0AoApy%2bfTh0NFoCdeI4dpLX4RiyLtB45cRYjNTylA%2fxYpfM8BcuZj5arzZ4gheHKR5W7QSL5446%2fA6Djjn400QJfnd7s19I9c%2f8XVWQ419xPHaYMBcxq9dsWcFKvOuDR3SBhdBcEMtZ5rYCn4bThXf9Bg%3d%3d", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3N5c3RlbVRvcGljcz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1JiUyNHNraXB0b2tlbj1UWkZ2YThJd0VNYSUyZlM3RyUyYldtMk4xcW9nSTNNcVRrWFhkUnQ3bVRReEJtbGFrdmdmdiUyZnN1em8yRkklMmZuZDhYRDNjTGw0aWglMmZ0WEtxdDhmb1hiekpmUHVHNTElMmZjMjFsYW1INFlGVVVUd2dpdmJJT2VkNW8yOExFS3pveWJYc3JLeVZDYU1hWnQyNG9nSHFFdDdRVHZwUlFGdEVSb3dSbG0zeXhLVTVPMncwdVZlTXE1TnVKQzVMazI1dG8zUkh0cE90R1NoT1JuTGk2eXNaRzRlU1NXRFBTaWglMmJRQkZDQVZSSjJqRzlaclp3c1J5eTlYQWo2bWZVQiUyYmhXd3F2M3lMdVJqU2RQanRPZUc4dDN2SEw3UHdwMUJ6cWh5MyUyYk9YNkx1VUN0TkFOaEV5QkxoMEFvQXB5JTJiZlRoME5Gb0NkZUk0ZHBMWDRSaXlMdEI0NWNSWWpOVHlsQSUyZnhZcGZNOEJjdVpqNWFyelo0Z2hlSEtSNVc3UVNMNTQ0NiUyZkE2RGpqbjQwMFFKZm5kN3MxOUk5YyUyZjhYVldRNDE5eFBIYVlNQmN4cTlkc1djRkt2T3VEUjNTQmhkQmNFTXRaNXJZQ240YlRoWGY5QmclM2QlM2Q=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb13b46c-ad1e-481c-8d31-d0e34bcebc6d" + "de8d4aeb-ad1e-48aa-bd74-3f745116d26e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1452,19 +1389,19 @@ "no-cache" ], "x-ms-original-request-ids": [ - "4af12152-668a-468f-9440-14a121a42a99" + "fb0f54fd-c40e-4121-99b1-8943c1984f0c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11998" ], "x-ms-request-id": [ - "7afb84b7-10cb-4a78-84e8-46ec9040d142" + "d9acda66-0487-40ce-b306-c5ffb52fd748" ], "x-ms-correlation-request-id": [ - "7afb84b7-10cb-4a78-84e8-46ec9040d142" + "d9acda66-0487-40ce-b306-c5ffb52fd748" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T033019Z:7afb84b7-10cb-4a78-84e8-46ec9040d142" + "WESTUS2:20221006T061717Z:d9acda66-0487-40ce-b306-c5ffb52fd748" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1473,7 +1410,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:30:18 GMT" + "Thu, 06 Oct 2022 06:17:17 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1482,31 +1419,31 @@ "-1" ], "Content-Length": [ - "7016" + "4613" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgajxohel3ydkzph2ksrkxcpnljjyvwnh2g3dc35vf7zpwqczmkivh5qd6kth5hr7xg\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"106db9cd-75a4-4bdf-b750-a2b929605cc5\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgajxohel3ydkzph2ksrkxcpnljjyvwnh2g3dc35vf7zpwqczmkivh5qd6kth5hr7xg/providers/Microsoft.EventGrid/systemTopics/clitest-rgajxohel3ydkzph2ksrkxcpnljjyvwnh2g3dc35vf7zpwqczmkivh5qd6kth5hr7xg-fbb963b0-8329-4709-8fbb-e36ea012863b\",\r\n \"name\": \"clitest-rgajxohel3ydkzph2ksrkxcpnljjyvwnh2g3dc35vf7zpwqczmkivh5qd6kth5hr7xg-fbb963b0-8329-4709-8fbb-e36ea012863b\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msiglobal\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"a48fdce6-0c95-4c0e-89b2-9794d2adbaff\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/userassignedmsitest1\": {\r\n \"principalId\": \"a2f990d8-2f0b-4266-a334-c57cf3bb51b7\",\r\n \"clientId\": \"4b0f3242-b99d-4632-87ae-939e9754ae24\"\r\n }\r\n }\r\n },\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msiglobal/providers/Microsoft.EventGrid/systemTopics/useridentitytopic1\",\r\n \"name\": \"useridentitytopic1\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/TestGlobalMSIRG1013\",\r\n \"topicType\": \"Microsoft.Resources.ResourceGroups\",\r\n \"metricResourceId\": \"af760e46-252d-4e42-81c4-5373bd868495\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"bfe8c2d1-610f-4ab2-8dbf-866268b694c4\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/amh/providers/microsoft.managedidentity/userassignedidentities/testidentity1\": {\r\n \"principalId\": \"0558243c-d498-44a2-a8f9-92cb66e8bd68\",\r\n \"clientId\": \"2ecf32a2-baf0-493c-b3b7-eec5556c5327\"\r\n },\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/amh/providers/microsoft.managedidentity/userassignedidentities/testidentity2\": {\r\n \"principalId\": \"af489b48-907a-4c55-869f-ebd2422b991d\",\r\n \"clientId\": \"4d197160-c000-4d61-b1fd-471dabcbf3d8\"\r\n }\r\n }\r\n },\r\n \"location\": \"global\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/TestGlobalMSIRG1013/providers/Microsoft.EventGrid/systemTopics/TestGlobalRGMSI1013\",\r\n \"name\": \"TestGlobalRGMSI1013\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4\",\r\n \"topicType\": \"Microsoft.PolicyInsights.PolicyStates\",\r\n \"metricResourceId\": \"ddfb91e1-5682-44ee-9a9f-489ca8e9d8ab\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"9f366cfa-b814-4efe-b77b-0ef0ec60acee\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/ppgtest/providers/microsoft.managedidentity/userassignedidentities/testuai0506\": {\r\n \"principalId\": \"406cc555-ce08-485a-a5a6-ef1ccc5e7bec\",\r\n \"clientId\": \"40578752-05e9-4b8b-bdc4-f07e960571e0\"\r\n },\r\n \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/ppgtest/providers/microsoft.managedidentity/userassignedidentities/testuai0412new\": {\r\n \"principalId\": \"2496443e-0c52-4245-84fb-6ee677269b16\",\r\n \"clientId\": \"ec83a3e2-bd7b-4e77-bde9-76ec42eb1d6a\"\r\n }\r\n }\r\n },\r\n \"location\": \"global\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/TestGlobalMSIRG1013/providers/Microsoft.EventGrid/systemTopics/TestPolicyGlobalSysTopic1014\",\r\n \"name\": \"TestPolicyGlobalSysTopic1014\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/TestGlobalMSIRG1013/providers/Microsoft.Communication/CommunicationServices/testCommServices1015\",\r\n \"topicType\": \"Microsoft.Communication.CommunicationServices\",\r\n \"metricResourceId\": \"5aeef6ba-bda2-454f-9bc5-3ec9e9c218c6\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"e9acc511-0ccf-480a-8362-788a0c0c8fc1\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/amh/providers/microsoft.managedidentity/userassignedidentities/testidentity2\": {\r\n \"principalId\": \"af489b48-907a-4c55-869f-ebd2422b991d\",\r\n \"clientId\": \"4d197160-c000-4d61-b1fd-471dabcbf3d8\"\r\n }\r\n }\r\n },\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/TestGlobalMSIRG1013/providers/Microsoft.EventGrid/systemTopics/testCommSerSysT1015\",\r\n \"name\": \"testCommSerSysT1015\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/TestGlobalMSIRG1013/providers/Microsoft.Maps/Accounts/testmapaccount1015\",\r\n \"topicType\": \"Microsoft.Maps.Accounts\",\r\n \"metricResourceId\": \"6f7aed5e-f28c-4d8b-8c20-0388b6608235\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"66359d9d-0df3-40dc-a6ce-8d8148f7837e\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/amh/providers/microsoft.managedidentity/userassignedidentities/testidentity1\": {\r\n \"principalId\": \"0558243c-d498-44a2-a8f9-92cb66e8bd68\",\r\n \"clientId\": \"2ecf32a2-baf0-493c-b3b7-eec5556c5327\"\r\n },\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/amh/providers/microsoft.managedidentity/userassignedidentities/testidentity2\": {\r\n \"principalId\": \"af489b48-907a-4c55-869f-ebd2422b991d\",\r\n \"clientId\": \"4d197160-c000-4d61-b1fd-471dabcbf3d8\"\r\n }\r\n }\r\n },\r\n \"location\": \"global\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/TestGlobalMSIRG1013/providers/Microsoft.EventGrid/systemTopics/TestMASysT1015\",\r\n \"name\": \"TestMASysT1015\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/customeruser1rg1\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"7b39a3ff-712a-4966-81c1-c63cd3de4a36\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/customeruser1rg1/providers/Microsoft.EventGrid/systemTopics/customeruser1rg1-82808c85-1cee-4735-a22e-692c83134b3b\",\r\n \"name\": \"customeruser1rg1-82808c85-1cee-4735-a22e-692c83134b3b\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/TestGlobalMSIRG1013\",\r\n \"topicType\": \"Microsoft.Resources.ResourceGroups\",\r\n \"metricResourceId\": \"af760e46-252d-4e42-81c4-5373bd868495\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"bfe8c2d1-610f-4ab2-8dbf-866268b694c4\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/amh/providers/microsoft.managedidentity/userassignedidentities/testidentity1\": {\r\n \"principalId\": \"0558243c-d498-44a2-a8f9-92cb66e8bd68\",\r\n \"clientId\": \"2ecf32a2-baf0-493c-b3b7-eec5556c5327\"\r\n },\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/amh/providers/microsoft.managedidentity/userassignedidentities/testidentity2\": {\r\n \"principalId\": \"af489b48-907a-4c55-869f-ebd2422b991d\",\r\n \"clientId\": \"4d197160-c000-4d61-b1fd-471dabcbf3d8\"\r\n }\r\n }\r\n },\r\n \"location\": \"global\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/TestGlobalMSIRG1013/providers/Microsoft.EventGrid/systemTopics/TestGlobalRGMSI1013\",\r\n \"name\": \"TestGlobalRGMSI1013\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/TestGlobalMSIRG1013/providers/Microsoft.Communication/CommunicationServices/testCommServices1015\",\r\n \"topicType\": \"Microsoft.Communication.CommunicationServices\",\r\n \"metricResourceId\": \"5aeef6ba-bda2-454f-9bc5-3ec9e9c218c6\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"e9acc511-0ccf-480a-8362-788a0c0c8fc1\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/amh/providers/microsoft.managedidentity/userassignedidentities/testidentity2\": {\r\n \"principalId\": \"af489b48-907a-4c55-869f-ebd2422b991d\",\r\n \"clientId\": \"4d197160-c000-4d61-b1fd-471dabcbf3d8\"\r\n }\r\n }\r\n },\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/TestGlobalMSIRG1013/providers/Microsoft.EventGrid/systemTopics/testCommSerSysT1015\",\r\n \"name\": \"testCommSerSysT1015\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/TestGlobalMSIRG1013/providers/Microsoft.Maps/Accounts/testmapaccount1015\",\r\n \"topicType\": \"Microsoft.Maps.Accounts\",\r\n \"metricResourceId\": \"6f7aed5e-f28c-4d8b-8c20-0388b6608235\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"66359d9d-0df3-40dc-a6ce-8d8148f7837e\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/amh/providers/microsoft.managedidentity/userassignedidentities/testidentity1\": {\r\n \"principalId\": \"0558243c-d498-44a2-a8f9-92cb66e8bd68\",\r\n \"clientId\": \"2ecf32a2-baf0-493c-b3b7-eec5556c5327\"\r\n },\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/amh/providers/microsoft.managedidentity/userassignedidentities/testidentity2\": {\r\n \"principalId\": \"af489b48-907a-4c55-869f-ebd2422b991d\",\r\n \"clientId\": \"4d197160-c000-4d61-b1fd-471dabcbf3d8\"\r\n }\r\n }\r\n },\r\n \"location\": \"global\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/TestGlobalMSIRG1013/providers/Microsoft.EventGrid/systemTopics/TestMASysT1015\",\r\n \"name\": \"TestMASysT1015\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/customeruser1rg1\",\r\n \"topicType\": \"microsoft.resources.resourcegroups\",\r\n \"metricResourceId\": \"7b39a3ff-712a-4966-81c1-c63cd3de4a36\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/customeruser1rg1/providers/Microsoft.EventGrid/systemTopics/customeruser1rg1-82808c85-1cee-4735-a22e-692c83134b3b\",\r\n \"name\": \"customeruser1rg1-82808c85-1cee-4735-a22e-692c83134b3b\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kevin\",\r\n \"topicType\": \"Microsoft.Resources.ResourceGroups\",\r\n \"metricResourceId\": \"a292f3fa-0500-4172-ab52-340934b2da12\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"global\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kevin/providers/Microsoft.EventGrid/systemTopics/kevinsystemtopic\",\r\n \"name\": \"kevinsystemtopic\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3656/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps3064?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczM2NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzMzA2ND9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps821/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps1000?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczgyMS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9zeXN0ZW1Ub3BpY3MvUFNUZXN0VG9waWMtcHMxMDAwP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6816693a-a346-4cd6-8355-db07e6025e61" + "ccb42a1d-1a8c-4777-8547-b41d177848a5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1515,7 +1452,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/56CF5CB3-E167-4000-8350-42C6EFF44A07?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/AC94F84E-DE2D-4B7A-BE23-5DEA5AC7A5C0?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -1524,7 +1461,7 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/56CF5CB3-E167-4000-8350-42C6EFF44A07?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/AC94F84E-DE2D-4B7A-BE23-5DEA5AC7A5C0?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1533,19 +1470,19 @@ "14999" ], "x-ms-request-id": [ - "c3dac12f-f546-4801-8b55-9bd27fa155d3" + "99a6243d-e6d8-44bb-b843-72be12e02cf8" ], "x-ms-correlation-request-id": [ - "c3dac12f-f546-4801-8b55-9bd27fa155d3" + "99a6243d-e6d8-44bb-b843-72be12e02cf8" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T033020Z:c3dac12f-f546-4801-8b55-9bd27fa155d3" + "WESTUS2:20221006T061718Z:99a6243d-e6d8-44bb-b843-72be12e02cf8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:30:19 GMT" + "Thu, 06 Oct 2022 06:17:18 GMT" ], "Expires": [ "-1" @@ -1558,21 +1495,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/56CF5CB3-E167-4000-8350-42C6EFF44A07?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNTZDRjVDQjMtRTE2Ny00MDAwLTgzNTAtNDJDNkVGRjQ0QTA3P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/AC94F84E-DE2D-4B7A-BE23-5DEA5AC7A5C0?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvQUM5NEY4NEUtREUyRC00QjdBLUJFMjMtNURFQTVBQzdBNUMwP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6816693a-a346-4cd6-8355-db07e6025e61" + "ccb42a1d-1a8c-4777-8547-b41d177848a5" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1584,25 +1521,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "929b93dd-9f8a-4b8e-be48-ff64c30108e5" + "f3fbae79-3998-42aa-99e3-462e4e07ef27" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11999" ], "x-ms-correlation-request-id": [ - "f90634ab-67b0-44fe-a678-4251f4e63aac" + "09672385-d604-43ab-9061-c91c6c2ca27b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T033030Z:f90634ab-67b0-44fe-a678-4251f4e63aac" + "WESTUS2:20221006T061728Z:09672385-d604-43ab-9061-c91c6c2ca27b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:30:29 GMT" + "Thu, 06 Oct 2022 06:17:28 GMT" ], "Content-Length": [ "286" @@ -1614,25 +1551,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/56CF5CB3-E167-4000-8350-42C6EFF44A07?api-version=2021-12-01\",\r\n \"name\": \"56cf5cb3-e167-4000-8350-42c6eff44a07\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/AC94F84E-DE2D-4B7A-BE23-5DEA5AC7A5C0?api-version=2022-06-15\",\r\n \"name\": \"ac94f84e-de2d-4b7a-be23-5dea5ac7a5c0\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/56CF5CB3-E167-4000-8350-42C6EFF44A07?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNTZDRjVDQjMtRTE2Ny00MDAwLTgzNTAtNDJDNkVGRjQ0QTA3P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/AC94F84E-DE2D-4B7A-BE23-5DEA5AC7A5C0?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvQUM5NEY4NEUtREUyRC00QjdBLUJFMjMtNURFQTVBQzdBNUMwP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6816693a-a346-4cd6-8355-db07e6025e61" + "ccb42a1d-1a8c-4777-8547-b41d177848a5" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1644,25 +1581,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c500f85b-0f3f-4877-b89f-a1376dc89055" + "6c42300c-51a5-4939-aac8-4b640701bea8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11998" ], "x-ms-correlation-request-id": [ - "92705556-a862-4116-93db-22291716fdab" + "c21af3f1-5dc1-4c0b-a70c-ad4196b0f5c9" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T033030Z:92705556-a862-4116-93db-22291716fdab" + "WESTUS2:20221006T061728Z:c21af3f1-5dc1-4c0b-a70c-ad4196b0f5c9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:30:29 GMT" + "Thu, 06 Oct 2022 06:17:28 GMT" ], "Expires": [ "-1" @@ -1675,24 +1612,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9970/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4268?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczk5NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNDI2OD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6020/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps4213?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczYwMjAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNDIxMz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8deea961-738c-4f8b-8743-dad9b044ec1f" + "afb70553-6810-495c-9702-f11daf043db6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1701,7 +1638,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/1877874C-9DBF-4DA9-BF9D-B12144BF7EA9?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/57639301-971B-459E-87F1-C7299DCD9A2A?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -1710,28 +1647,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/1877874C-9DBF-4DA9-BF9D-B12144BF7EA9?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/57639301-971B-459E-87F1-C7299DCD9A2A?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-request-id": [ - "470c074f-6aa1-43ea-8f4b-c357665e161e" + "5e9b705c-b8c6-4d87-9202-c99d8326151f" ], "x-ms-correlation-request-id": [ - "470c074f-6aa1-43ea-8f4b-c357665e161e" + "5e9b705c-b8c6-4d87-9202-c99d8326151f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T033030Z:470c074f-6aa1-43ea-8f4b-c357665e161e" + "WESTUS2:20221006T061729Z:5e9b705c-b8c6-4d87-9202-c99d8326151f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:30:29 GMT" + "Thu, 06 Oct 2022 06:17:29 GMT" ], "Expires": [ "-1" @@ -1744,21 +1681,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/1877874C-9DBF-4DA9-BF9D-B12144BF7EA9?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMTg3Nzg3NEMtOURCRi00REE5LUJGOUQtQjEyMTQ0QkY3RUE5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/57639301-971B-459E-87F1-C7299DCD9A2A?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNTc2MzkzMDEtOTcxQi00NTlFLTg3RjEtQzcyOTlEQ0Q5QTJBP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8deea961-738c-4f8b-8743-dad9b044ec1f" + "afb70553-6810-495c-9702-f11daf043db6" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1770,25 +1707,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "18f27ad7-5520-4bab-b9af-5c7de4a99273" + "2d3a8932-818c-45e5-b8a0-b0fea2c12516" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11999" ], "x-ms-correlation-request-id": [ - "76d7bc6f-4d9d-480c-9a64-f00676a49e07" + "c9f7a1ad-f8d6-460d-8752-858339463b46" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T033040Z:76d7bc6f-4d9d-480c-9a64-f00676a49e07" + "WESTUS2:20221006T061740Z:c9f7a1ad-f8d6-460d-8752-858339463b46" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:30:40 GMT" + "Thu, 06 Oct 2022 06:17:40 GMT" ], "Content-Length": [ "286" @@ -1800,25 +1737,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/1877874C-9DBF-4DA9-BF9D-B12144BF7EA9?api-version=2021-12-01\",\r\n \"name\": \"1877874c-9dbf-4da9-bf9d-b12144bf7ea9\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/57639301-971B-459E-87F1-C7299DCD9A2A?api-version=2022-06-15\",\r\n \"name\": \"57639301-971b-459e-87f1-c7299dcd9a2a\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/1877874C-9DBF-4DA9-BF9D-B12144BF7EA9?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMTg3Nzg3NEMtOURCRi00REE5LUJGOUQtQjEyMTQ0QkY3RUE5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/57639301-971B-459E-87F1-C7299DCD9A2A?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNTc2MzkzMDEtOTcxQi00NTlFLTg3RjEtQzcyOTlEQ0Q5QTJBP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8deea961-738c-4f8b-8743-dad9b044ec1f" + "afb70553-6810-495c-9702-f11daf043db6" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1830,25 +1767,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "587f393e-100c-4a8b-983c-eb16a6394b70" + "680f5205-6050-40a6-868e-bf8627c9ee2e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11998" ], "x-ms-correlation-request-id": [ - "82de8428-a05b-4852-a7a7-f67484b2c457" + "2a6a4be9-033f-44cd-bf86-09cfa3cae097" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T033040Z:82de8428-a05b-4852-a7a7-f67484b2c457" + "WESTUS2:20221006T061740Z:2a6a4be9-033f-44cd-bf86-09cfa3cae097" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:30:40 GMT" + "Thu, 06 Oct 2022 06:17:40 GMT" ], "Expires": [ "-1" @@ -1861,24 +1798,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9970/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps9327?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczk5NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzOTMyNz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6020/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps7340?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczYwMjAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzNzM0MD9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "748b0f06-b829-492b-ac70-d54e19effda3" + "de6ae49b-cf5a-4efa-964a-7d8cbfb60021" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1887,7 +1824,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/915F3337-45CF-4F46-9108-6250E6F40C02?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/E9B0C5BE-0BFF-4BF3-BA41-3CC40FCDA0EA?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -1896,28 +1833,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/915F3337-45CF-4F46-9108-6250E6F40C02?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E9B0C5BE-0BFF-4BF3-BA41-3CC40FCDA0EA?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-request-id": [ - "fe7cc6c1-fdd5-4dcf-8f35-34cdb687dd54" + "7d9478b2-4157-4d4b-8f15-20f0669855b0" ], "x-ms-correlation-request-id": [ - "fe7cc6c1-fdd5-4dcf-8f35-34cdb687dd54" + "7d9478b2-4157-4d4b-8f15-20f0669855b0" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T033041Z:fe7cc6c1-fdd5-4dcf-8f35-34cdb687dd54" + "WESTUS2:20221006T061741Z:7d9478b2-4157-4d4b-8f15-20f0669855b0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:30:41 GMT" + "Thu, 06 Oct 2022 06:17:41 GMT" ], "Expires": [ "-1" @@ -1930,21 +1867,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/915F3337-45CF-4F46-9108-6250E6F40C02?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvOTE1RjMzMzctNDVDRi00RjQ2LTkxMDgtNjI1MEU2RjQwQzAyP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E9B0C5BE-0BFF-4BF3-BA41-3CC40FCDA0EA?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRTlCMEM1QkUtMEJGRi00QkYzLUJBNDEtM0NDNDBGQ0RBMEVBP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "748b0f06-b829-492b-ac70-d54e19effda3" + "de6ae49b-cf5a-4efa-964a-7d8cbfb60021" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1956,25 +1893,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4e0e9f71-7b6f-480a-a680-a3db92e710ab" + "6df54eb8-6775-4a5f-b5a1-db904b918059" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11992" ], "x-ms-correlation-request-id": [ - "31cd7c0a-7de8-406b-963c-f455ee144b51" + "f5ded3b4-b2a7-4145-8bd7-b2a0ed98d122" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T033051Z:31cd7c0a-7de8-406b-963c-f455ee144b51" + "WESTUS2:20221006T061751Z:f5ded3b4-b2a7-4145-8bd7-b2a0ed98d122" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:30:51 GMT" + "Thu, 06 Oct 2022 06:17:51 GMT" ], "Content-Length": [ "286" @@ -1986,25 +1923,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/915F3337-45CF-4F46-9108-6250E6F40C02?api-version=2021-12-01\",\r\n \"name\": \"915f3337-45cf-4f46-9108-6250e6f40c02\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E9B0C5BE-0BFF-4BF3-BA41-3CC40FCDA0EA?api-version=2022-06-15\",\r\n \"name\": \"e9b0c5be-0bff-4bf3-ba41-3cc40fcda0ea\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/915F3337-45CF-4F46-9108-6250E6F40C02?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvOTE1RjMzMzctNDVDRi00RjQ2LTkxMDgtNjI1MEU2RjQwQzAyP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/E9B0C5BE-0BFF-4BF3-BA41-3CC40FCDA0EA?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvRTlCMEM1QkUtMEJGRi00QkYzLUJBNDEtM0NDNDBGQ0RBMEVBP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "748b0f06-b829-492b-ac70-d54e19effda3" + "de6ae49b-cf5a-4efa-964a-7d8cbfb60021" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2016,25 +1953,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1b18d273-2646-4c9e-835a-c09e95fadee0" + "76ccf374-61c2-4fe4-9858-db6472cab7ff" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11991" ], "x-ms-correlation-request-id": [ - "37ed0229-0d57-4d95-9b57-f15032b1e7e3" + "e290299f-fbf7-43fa-bd81-1db60a616ceb" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T033051Z:37ed0229-0d57-4d95-9b57-f15032b1e7e3" + "WESTUS2:20221006T061751Z:e290299f-fbf7-43fa-bd81-1db60a616ceb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:30:51 GMT" + "Thu, 06 Oct 2022 06:17:51 GMT" ], "Expires": [ "-1" @@ -2047,24 +1984,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps3656?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczM2NTY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps821?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczgyMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b9b249d-71dd-4217-83ed-870b097fa8b5" + "2c8e283b-78ec-4235-b960-b7988b631e53" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2073,7 +2010,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzM2NTYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzgyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2082,13 +2019,13 @@ "14999" ], "x-ms-request-id": [ - "4b45f074-4472-4aa1-bd25-eb289ea23a37" + "0305ba37-2e88-44b3-bc6f-22d622c542e7" ], "x-ms-correlation-request-id": [ - "4b45f074-4472-4aa1-bd25-eb289ea23a37" + "0305ba37-2e88-44b3-bc6f-22d622c542e7" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T033051Z:4b45f074-4472-4aa1-bd25-eb289ea23a37" + "WESTUS2:20221006T061805Z:0305ba37-2e88-44b3-bc6f-22d622c542e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2097,7 +2034,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:30:51 GMT" + "Thu, 06 Oct 2022 06:18:05 GMT" ], "Expires": [ "-1" @@ -2110,18 +2047,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzM2NTYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpNMk5UWXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzgyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpneU1TMVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2130,22 +2067,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzM2NTYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzgyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11999" ], "x-ms-request-id": [ - "41d9a95a-a0da-460f-9156-ab23683918f9" + "384be44b-2144-4a92-b00b-9a7c3c858926" ], "x-ms-correlation-request-id": [ - "41d9a95a-a0da-460f-9156-ab23683918f9" + "384be44b-2144-4a92-b00b-9a7c3c858926" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T033106Z:41d9a95a-a0da-460f-9156-ab23683918f9" + "WESTUS2:20221006T061821Z:384be44b-2144-4a92-b00b-9a7c3c858926" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2154,7 +2091,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:31:06 GMT" + "Thu, 06 Oct 2022 06:18:20 GMT" ], "Expires": [ "-1" @@ -2167,18 +2104,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzM2NTYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpNMk5UWXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzgyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpneU1TMVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2187,22 +2124,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzM2NTYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzgyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11998" ], "x-ms-request-id": [ - "7961d497-5871-444f-b79a-bc50eb50d7fc" + "3762494f-8a2c-4bf9-b04e-d8877481332c" ], "x-ms-correlation-request-id": [ - "7961d497-5871-444f-b79a-bc50eb50d7fc" + "3762494f-8a2c-4bf9-b04e-d8877481332c" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T033121Z:7961d497-5871-444f-b79a-bc50eb50d7fc" + "WESTUS2:20221006T061836Z:3762494f-8a2c-4bf9-b04e-d8877481332c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2211,7 +2148,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:31:21 GMT" + "Thu, 06 Oct 2022 06:18:35 GMT" ], "Expires": [ "-1" @@ -2224,18 +2161,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzM2NTYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpNMk5UWXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzgyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpneU1TMVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2244,22 +2181,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzM2NTYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzgyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11997" ], "x-ms-request-id": [ - "64cc1450-09d0-4f91-a1c3-f2c0df5ed171" + "546d3257-5a2d-48ed-9fce-49768090449f" ], "x-ms-correlation-request-id": [ - "64cc1450-09d0-4f91-a1c3-f2c0df5ed171" + "546d3257-5a2d-48ed-9fce-49768090449f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T033136Z:64cc1450-09d0-4f91-a1c3-f2c0df5ed171" + "WESTUS2:20221006T061851Z:546d3257-5a2d-48ed-9fce-49768090449f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2268,7 +2205,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:31:36 GMT" + "Thu, 06 Oct 2022 06:18:51 GMT" ], "Expires": [ "-1" @@ -2281,18 +2218,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzM2NTYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpNMk5UWXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzgyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpneU1TMVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2301,22 +2238,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzM2NTYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzgyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11996" ], "x-ms-request-id": [ - "0bbb4932-667c-420d-902f-54fc405a1577" + "ba44d429-36a5-4019-9142-bc07865c0df5" ], "x-ms-correlation-request-id": [ - "0bbb4932-667c-420d-902f-54fc405a1577" + "ba44d429-36a5-4019-9142-bc07865c0df5" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T033151Z:0bbb4932-667c-420d-902f-54fc405a1577" + "WESTUS2:20221006T061906Z:ba44d429-36a5-4019-9142-bc07865c0df5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2325,7 +2262,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:31:51 GMT" + "Thu, 06 Oct 2022 06:19:06 GMT" ], "Expires": [ "-1" @@ -2338,18 +2275,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzM2NTYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpNMk5UWXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzgyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpneU1TMVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2358,16 +2295,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11995" ], "x-ms-request-id": [ - "9d43ceef-d43b-4705-8826-26e650f23f8f" + "c6364fe8-a277-4473-9188-d2502156a8f6" ], "x-ms-correlation-request-id": [ - "9d43ceef-d43b-4705-8826-26e650f23f8f" + "c6364fe8-a277-4473-9188-d2502156a8f6" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T033206Z:9d43ceef-d43b-4705-8826-26e650f23f8f" + "WESTUS2:20221006T061921Z:c6364fe8-a277-4473-9188-d2502156a8f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2376,7 +2313,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:32:06 GMT" + "Thu, 06 Oct 2022 06:19:21 GMT" ], "Expires": [ "-1" @@ -2389,18 +2326,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzM2NTYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpNMk5UWXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzgyMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpneU1TMVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2409,16 +2346,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11994" ], "x-ms-request-id": [ - "f1f471d3-8513-4351-9274-5d4a9cdd32e5" + "31e9ec95-7e1b-4053-ad65-f141a7e76110" ], "x-ms-correlation-request-id": [ - "f1f471d3-8513-4351-9274-5d4a9cdd32e5" + "31e9ec95-7e1b-4053-ad65-f141a7e76110" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T033207Z:f1f471d3-8513-4351-9274-5d4a9cdd32e5" + "WESTUS2:20221006T061921Z:31e9ec95-7e1b-4053-ad65-f141a7e76110" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2427,7 +2364,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:32:06 GMT" + "Thu, 06 Oct 2022 06:19:21 GMT" ], "Expires": [ "-1" @@ -2440,24 +2377,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps9970?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczk5NzA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps6020?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczYwMjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b5b0e5bf-acc2-4dbe-a344-980639e4a44b" + "8be6b5d6-af4f-4262-a965-3bdc4e485b19" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2466,22 +2403,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzk5NzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzYwMjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-request-id": [ - "277bc06e-308c-4c76-aecf-496babde812e" + "e1cfa7b5-5840-47e5-95f8-b061f98b72e1" ], "x-ms-correlation-request-id": [ - "277bc06e-308c-4c76-aecf-496babde812e" + "e1cfa7b5-5840-47e5-95f8-b061f98b72e1" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T033207Z:277bc06e-308c-4c76-aecf-496babde812e" + "WESTUS2:20221006T061922Z:e1cfa7b5-5840-47e5-95f8-b061f98b72e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2490,7 +2427,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:32:07 GMT" + "Thu, 06 Oct 2022 06:19:22 GMT" ], "Expires": [ "-1" @@ -2503,18 +2440,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzk5NzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXprNU56QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzYwMjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpZd01qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2523,22 +2460,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzk5NzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzYwMjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11999" ], "x-ms-request-id": [ - "a5ffe97e-a990-40b5-99d2-bc008fc3f730" + "95289d8d-8ed1-4caa-8a0a-bc5aad0009d3" ], "x-ms-correlation-request-id": [ - "a5ffe97e-a990-40b5-99d2-bc008fc3f730" + "95289d8d-8ed1-4caa-8a0a-bc5aad0009d3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T033222Z:a5ffe97e-a990-40b5-99d2-bc008fc3f730" + "WESTUS2:20221006T061938Z:95289d8d-8ed1-4caa-8a0a-bc5aad0009d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2547,7 +2484,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:32:21 GMT" + "Thu, 06 Oct 2022 06:19:37 GMT" ], "Expires": [ "-1" @@ -2560,18 +2497,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzk5NzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXprNU56QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzYwMjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpZd01qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2580,22 +2517,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzk5NzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzYwMjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11998" ], "x-ms-request-id": [ - "805ae973-2433-4453-8443-a1e26228606a" + "2569ea06-eb5a-4749-be0f-a1ef970d9eba" ], "x-ms-correlation-request-id": [ - "805ae973-2433-4453-8443-a1e26228606a" + "2569ea06-eb5a-4749-be0f-a1ef970d9eba" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T033237Z:805ae973-2433-4453-8443-a1e26228606a" + "WESTUS2:20221006T061953Z:2569ea06-eb5a-4749-be0f-a1ef970d9eba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2604,7 +2541,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:32:36 GMT" + "Thu, 06 Oct 2022 06:19:52 GMT" ], "Expires": [ "-1" @@ -2617,18 +2554,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzk5NzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXprNU56QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzYwMjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpZd01qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2637,22 +2574,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzk5NzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzYwMjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11997" ], "x-ms-request-id": [ - "28fb64dc-4e90-424c-a92e-413a09f65ca4" + "391cdd69-e7f6-460b-861e-1dc3cc3a21fd" ], "x-ms-correlation-request-id": [ - "28fb64dc-4e90-424c-a92e-413a09f65ca4" + "391cdd69-e7f6-460b-861e-1dc3cc3a21fd" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T033252Z:28fb64dc-4e90-424c-a92e-413a09f65ca4" + "WESTUS2:20221006T062008Z:391cdd69-e7f6-460b-861e-1dc3cc3a21fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2661,7 +2598,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:32:51 GMT" + "Thu, 06 Oct 2022 06:20:08 GMT" ], "Expires": [ "-1" @@ -2674,18 +2611,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzk5NzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXprNU56QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzYwMjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpZd01qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2694,22 +2631,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzk5NzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzYwMjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11996" ], "x-ms-request-id": [ - "da3f4ff4-7154-45b4-987c-731ff9c905d5" + "9441750f-cf3f-4c95-baf6-36389c8300cc" ], "x-ms-correlation-request-id": [ - "da3f4ff4-7154-45b4-987c-731ff9c905d5" + "9441750f-cf3f-4c95-baf6-36389c8300cc" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T033307Z:da3f4ff4-7154-45b4-987c-731ff9c905d5" + "WESTUS2:20221006T062023Z:9441750f-cf3f-4c95-baf6-36389c8300cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2718,7 +2655,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:33:07 GMT" + "Thu, 06 Oct 2022 06:20:23 GMT" ], "Expires": [ "-1" @@ -2731,18 +2668,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzk5NzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXprNU56QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzYwMjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpZd01qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2751,16 +2688,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11995" ], "x-ms-request-id": [ - "4f15c7c5-8674-44e1-ac28-e56384ced3f1" + "068967d6-a008-45de-92d7-a33d03dc7f86" ], "x-ms-correlation-request-id": [ - "4f15c7c5-8674-44e1-ac28-e56384ced3f1" + "068967d6-a008-45de-92d7-a33d03dc7f86" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T033322Z:4f15c7c5-8674-44e1-ac28-e56384ced3f1" + "WESTUS2:20221006T062038Z:068967d6-a008-45de-92d7-a33d03dc7f86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2769,7 +2706,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:33:22 GMT" + "Thu, 06 Oct 2022 06:20:38 GMT" ], "Expires": [ "-1" @@ -2782,18 +2719,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzk5NzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXprNU56QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzYwMjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpZd01qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2802,16 +2739,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11994" ], "x-ms-request-id": [ - "1cac6cf5-d848-471f-9829-934db48ead97" + "b915af24-824d-470f-8eff-08874d08337f" ], "x-ms-correlation-request-id": [ - "1cac6cf5-d848-471f-9829-934db48ead97" + "b915af24-824d-470f-8eff-08874d08337f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T033322Z:1cac6cf5-d848-471f-9829-934db48ead97" + "WESTUS2:20221006T062038Z:b915af24-824d-470f-8eff-08874d08337f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2820,7 +2757,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:33:22 GMT" + "Thu, 06 Oct 2022 06:20:38 GMT" ], "Expires": [ "-1" @@ -2835,17 +2772,17 @@ ], "Names": { "": [ - "ps3064", - "ps4268", - "ps9327", - "ps3065", - "ps3656", - "ps9970", - "ps9713", - "ps3425", - "ps8670", - "ps5026", - "ps559" + "ps1000", + "ps4213", + "ps7340", + "ps3879", + "ps821", + "ps6020", + "ps4151", + "ps5889", + "ps2144", + "ps3399", + "ps6789" ] }, "Variables": { diff --git a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Test.ScenarioTests.SystemTopicTests/EventGrid_SystemTopicsIdentityTests.json b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Test.ScenarioTests.SystemTopicTests/EventGrid_SystemTopicsIdentityTests.json index ceb1448f361b..5c78b329d473 100644 --- a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Test.ScenarioTests.SystemTopicTests/EventGrid_SystemTopicsIdentityTests.json +++ b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Test.ScenarioTests.SystemTopicTests/EventGrid_SystemTopicsIdentityTests.json @@ -1,22 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps1933?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczE5MzM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps9046?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczkwNDY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "59dd3aef-6b55-453d-aaec-3da2cb37d74e" + "b5a89f41-d67b-4e45-9828-9162afbc40c9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,6 +24,7 @@ "35" ] }, + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "0c034da2-50f6-4b74-b866-ca6d82665263" + "c9b72648-5c9d-4653-8a55-1c8ca0e2b7bc" ], "x-ms-correlation-request-id": [ - "0c034da2-50f6-4b74-b866-ca6d82665263" + "c9b72648-5c9d-4653-8a55-1c8ca0e2b7bc" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T032021Z:0c034da2-50f6-4b74-b866-ca6d82665263" + "WESTUS2:20221005T232315Z:c9b72648-5c9d-4653-8a55-1c8ca0e2b7bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:20:20 GMT" + "Wed, 05 Oct 2022 23:23:14 GMT" ], "Content-Length": [ "186" @@ -63,26 +63,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1933\",\r\n \"name\": \"RGName-ps1933\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9046\",\r\n \"name\": \"RGName-ps9046\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps6278?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczYyNzg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps4188?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczQxODg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a28de743-5458-4d1a-9ba8-f27f9ecdaad4" + "886b417f-9328-4de4-bead-c2db5f3cd45f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ], "Content-Type": [ "application/json; charset=utf-8" @@ -91,6 +90,7 @@ "35" ] }, + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "c7800db7-dda0-43f7-aa4c-557a1a2ff02f" + "7cad7b1a-95ef-44f6-a1de-684be99c3346" ], "x-ms-correlation-request-id": [ - "c7800db7-dda0-43f7-aa4c-557a1a2ff02f" + "7cad7b1a-95ef-44f6-a1de-684be99c3346" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T032021Z:c7800db7-dda0-43f7-aa4c-557a1a2ff02f" + "WESTUS2:20221005T232316Z:7cad7b1a-95ef-44f6-a1de-684be99c3346" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,7 +117,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:20:21 GMT" + "Wed, 05 Oct 2022 23:23:16 GMT" ], "Content-Length": [ "186" @@ -129,26 +129,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6278\",\r\n \"name\": \"RGName-ps6278\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4188\",\r\n \"name\": \"RGName-ps4188\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1933/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps2925?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlQnVzL25hbWVzcGFjZXMvc2JuYW1lc3BhY2UtcHMyOTI1P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9046/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps5808?api-version=2022-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczkwNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlQnVzL25hbWVzcGFjZXMvc2JuYW1lc3BhY2UtcHM1ODA4P2FwaS12ZXJzaW9uPTIwMjItMDEtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fcfd3b5d-902d-4616-a371-a907baa890a5" + "8842c701-ccc5-4e90-bf29-5023dea9782b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -157,6 +156,7 @@ "35" ] }, + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -165,7 +165,7 @@ "no-cache" ], "x-ms-request-id": [ - "a16bb520-14af-4b3a-b10b-b3c23c3bbe5f_M1CH3_M1CH3" + "dc45d576-d355-49ef-8749-5e22bbd318bd_M1CH3_M1CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" @@ -178,10 +178,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "304d532a-f4a9-4d18-8d00-ae203063bbb3" + "cd19cabb-103a-45fc-bc22-f6088ae62502" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T032023Z:304d532a-f4a9-4d18-8d00-ae203063bbb3" + "WESTUS2:20221005T232320Z:cd19cabb-103a-45fc-bc22-f6088ae62502" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -190,10 +190,10 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:20:22 GMT" + "Wed, 05 Oct 2022 23:23:19 GMT" ], "Content-Length": [ - "641" + "699" ], "Content-Type": [ "application/json; charset=utf-8" @@ -202,25 +202,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1933/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps2925\",\r\n \"name\": \"sbnamespace-ps2925\",\r\n \"type\": \"Microsoft.ServiceBus/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:sbnamespace-ps2925\",\r\n \"createdAt\": \"2022-05-02T03:20:23.443Z\",\r\n \"updatedAt\": \"2022-05-02T03:20:23.443Z\",\r\n \"serviceBusEndpoint\": \"https://sbnamespace-ps2925.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9046/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps5808\",\r\n \"name\": \"sbnamespace-ps5808\",\r\n \"type\": \"Microsoft.ServiceBus/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:sbnamespace-ps5808\",\r\n \"createdAt\": \"2022-10-05T23:23:19.683Z\",\r\n \"updatedAt\": \"2022-10-05T23:23:19.683Z\",\r\n \"serviceBusEndpoint\": \"https://sbnamespace-ps5808.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1933/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps2925?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlQnVzL25hbWVzcGFjZXMvc2JuYW1lc3BhY2UtcHMyOTI1P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9046/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps5808?api-version=2022-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczkwNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlQnVzL25hbWVzcGFjZXMvc2JuYW1lc3BhY2UtcHM1ODA4P2FwaS12ZXJzaW9uPTIwMjItMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fcfd3b5d-902d-4616-a371-a907baa890a5" + "8842c701-ccc5-4e90-bf29-5023dea9782b" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/5.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -229,7 +229,7 @@ "no-cache" ], "x-ms-request-id": [ - "f27f6228-6832-452c-9df8-e41260d550d1_M9CH3_M9CH3" + "5ca297cd-6365-4095-8ccf-758b3d6cd8e9_M9CH3_M9CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" @@ -242,10 +242,10 @@ "11999" ], "x-ms-correlation-request-id": [ - "340124c3-66e8-4e84-8db7-28a6dec998e3" + "5b2fc588-1883-402b-8893-867447bc3e6e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T032054Z:340124c3-66e8-4e84-8db7-28a6dec998e3" + "WESTUS2:20221005T232350Z:5b2fc588-1883-402b-8893-867447bc3e6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -254,10 +254,10 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:20:53 GMT" + "Wed, 05 Oct 2022 23:23:49 GMT" ], "Content-Length": [ - "641" + "699" ], "Content-Type": [ "application/json; charset=utf-8" @@ -266,25 +266,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1933/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps2925\",\r\n \"name\": \"sbnamespace-ps2925\",\r\n \"type\": \"Microsoft.ServiceBus/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:sbnamespace-ps2925\",\r\n \"createdAt\": \"2022-05-02T03:20:23.443Z\",\r\n \"updatedAt\": \"2022-05-02T03:20:23.443Z\",\r\n \"serviceBusEndpoint\": \"https://sbnamespace-ps2925.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9046/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps5808\",\r\n \"name\": \"sbnamespace-ps5808\",\r\n \"type\": \"Microsoft.ServiceBus/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:sbnamespace-ps5808\",\r\n \"createdAt\": \"2022-10-05T23:23:19.683Z\",\r\n \"updatedAt\": \"2022-10-05T23:23:19.683Z\",\r\n \"serviceBusEndpoint\": \"https://sbnamespace-ps5808.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1933/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps2925?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlQnVzL25hbWVzcGFjZXMvc2JuYW1lc3BhY2UtcHMyOTI1P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9046/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps5808?api-version=2022-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczkwNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlQnVzL25hbWVzcGFjZXMvc2JuYW1lc3BhY2UtcHM1ODA4P2FwaS12ZXJzaW9uPTIwMjItMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fcfd3b5d-902d-4616-a371-a907baa890a5" + "8842c701-ccc5-4e90-bf29-5023dea9782b" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/5.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -293,23 +293,23 @@ "no-cache" ], "x-ms-request-id": [ - "6f51dbc1-0c2b-44b3-85e5-f4c4a325a243_M1CH3_M1CH3" + "26970f6d-09c3-473a-b82e-8a60a1b0d76a_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "f7a4a458-7637-4610-9098-9afa64d32ac8" + "6cfe7a1c-8cdc-4a1b-ae34-777dd62b61a3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T032124Z:f7a4a458-7637-4610-9098-9afa64d32ac8" + "WESTUS2:20221005T232420Z:6cfe7a1c-8cdc-4a1b-ae34-777dd62b61a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -318,10 +318,10 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:21:23 GMT" + "Wed, 05 Oct 2022 23:24:20 GMT" ], "Content-Length": [ - "638" + "696" ], "Content-Type": [ "application/json; charset=utf-8" @@ -330,26 +330,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1933/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps2925\",\r\n \"name\": \"sbnamespace-ps2925\",\r\n \"type\": \"Microsoft.ServiceBus/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:sbnamespace-ps2925\",\r\n \"createdAt\": \"2022-05-02T03:20:23.443Z\",\r\n \"updatedAt\": \"2022-05-02T03:21:05.27Z\",\r\n \"serviceBusEndpoint\": \"https://sbnamespace-ps2925.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9046/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps5808\",\r\n \"name\": \"sbnamespace-ps5808\",\r\n \"type\": \"Microsoft.ServiceBus/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:sbnamespace-ps5808\",\r\n \"createdAt\": \"2022-10-05T23:23:19.683Z\",\r\n \"updatedAt\": \"2022-10-05T23:24:02.38Z\",\r\n \"serviceBusEndpoint\": \"https://sbnamespace-ps5808.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6278/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps5261?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczYyNzgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlQnVzL25hbWVzcGFjZXMvc2JuYW1lc3BhY2UtcHM1MjYxP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4188/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps8812?api-version=2022-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQxODgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlQnVzL25hbWVzcGFjZXMvc2JuYW1lc3BhY2UtcHM4ODEyP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b44c0d4d-bbee-4942-b208-c6a7676b7533" + "209ffaba-f069-4129-863b-0fa72d79f4e3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -358,6 +357,7 @@ "35" ] }, + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -366,7 +366,7 @@ "no-cache" ], "x-ms-request-id": [ - "6d230bff-9e2e-44b3-9cdd-0066250d0fc8_M1CH3_M1CH3" + "4d8bfd0c-83b1-420c-b601-813bd37e8ae8_M10CH3_M10CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" @@ -376,13 +376,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "557ceaac-7842-496e-b1bc-12790e524b17" + "4e31b467-f510-4a12-a84a-431f91bf53a9" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T032124Z:557ceaac-7842-496e-b1bc-12790e524b17" + "WESTUS2:20221005T232424Z:4e31b467-f510-4a12-a84a-431f91bf53a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -391,10 +391,10 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:21:24 GMT" + "Wed, 05 Oct 2022 23:24:23 GMT" ], "Content-Length": [ - "639" + "697" ], "Content-Type": [ "application/json; charset=utf-8" @@ -403,25 +403,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6278/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps5261\",\r\n \"name\": \"sbnamespace-ps5261\",\r\n \"type\": \"Microsoft.ServiceBus/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:sbnamespace-ps5261\",\r\n \"createdAt\": \"2022-05-02T03:21:24.63Z\",\r\n \"updatedAt\": \"2022-05-02T03:21:24.63Z\",\r\n \"serviceBusEndpoint\": \"https://sbnamespace-ps5261.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4188/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps8812\",\r\n \"name\": \"sbnamespace-ps8812\",\r\n \"type\": \"Microsoft.ServiceBus/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:sbnamespace-ps8812\",\r\n \"createdAt\": \"2022-10-05T23:24:23.82Z\",\r\n \"updatedAt\": \"2022-10-05T23:24:23.82Z\",\r\n \"serviceBusEndpoint\": \"https://sbnamespace-ps8812.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6278/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps5261?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczYyNzgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlQnVzL25hbWVzcGFjZXMvc2JuYW1lc3BhY2UtcHM1MjYxP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4188/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps8812?api-version=2022-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQxODgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlQnVzL25hbWVzcGFjZXMvc2JuYW1lc3BhY2UtcHM4ODEyP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b44c0d4d-bbee-4942-b208-c6a7676b7533" + "209ffaba-f069-4129-863b-0fa72d79f4e3" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/5.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -430,7 +430,7 @@ "no-cache" ], "x-ms-request-id": [ - "66298246-2fb0-42f2-a568-84f88375d4cd_M1CH3_M1CH3" + "34d4b442-dca4-4115-9eba-a8b0ceab0db8_M10CH3_M10CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" @@ -443,10 +443,10 @@ "11997" ], "x-ms-correlation-request-id": [ - "2cf55e4c-c312-4092-9829-460cb65fa7c6" + "70faa52e-4485-4e28-a169-d41387c7daca" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T032155Z:2cf55e4c-c312-4092-9829-460cb65fa7c6" + "WESTUS2:20221005T232454Z:70faa52e-4485-4e28-a169-d41387c7daca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -455,10 +455,10 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:21:54 GMT" + "Wed, 05 Oct 2022 23:24:54 GMT" ], "Content-Length": [ - "639" + "697" ], "Content-Type": [ "application/json; charset=utf-8" @@ -467,25 +467,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6278/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps5261\",\r\n \"name\": \"sbnamespace-ps5261\",\r\n \"type\": \"Microsoft.ServiceBus/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:sbnamespace-ps5261\",\r\n \"createdAt\": \"2022-05-02T03:21:24.63Z\",\r\n \"updatedAt\": \"2022-05-02T03:21:24.63Z\",\r\n \"serviceBusEndpoint\": \"https://sbnamespace-ps5261.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4188/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps8812\",\r\n \"name\": \"sbnamespace-ps8812\",\r\n \"type\": \"Microsoft.ServiceBus/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:sbnamespace-ps8812\",\r\n \"createdAt\": \"2022-10-05T23:24:23.82Z\",\r\n \"updatedAt\": \"2022-10-05T23:24:23.82Z\",\r\n \"serviceBusEndpoint\": \"https://sbnamespace-ps8812.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6278/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps5261?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczYyNzgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlQnVzL25hbWVzcGFjZXMvc2JuYW1lc3BhY2UtcHM1MjYxP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4188/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps8812?api-version=2022-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQxODgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlQnVzL25hbWVzcGFjZXMvc2JuYW1lc3BhY2UtcHM4ODEyP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b44c0d4d-bbee-4942-b208-c6a7676b7533" + "209ffaba-f069-4129-863b-0fa72d79f4e3" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/5.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -494,7 +494,7 @@ "no-cache" ], "x-ms-request-id": [ - "e6618fa9-5565-4dcb-86dc-9bbf18734291_M1CH3_M1CH3" + "3d686266-0b9e-477b-83a4-c27c8787578a_M4CH3_M4CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" @@ -507,10 +507,10 @@ "11996" ], "x-ms-correlation-request-id": [ - "3774e7bd-7bb7-4ca3-80c3-804c36e54cc3" + "40d01c34-87fd-492d-8d94-726dc24e6095" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T032225Z:3774e7bd-7bb7-4ca3-80c3-804c36e54cc3" + "WESTUS2:20221005T232525Z:40d01c34-87fd-492d-8d94-726dc24e6095" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -519,10 +519,10 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:22:24 GMT" + "Wed, 05 Oct 2022 23:25:25 GMT" ], "Content-Length": [ - "638" + "696" ], "Content-Type": [ "application/json; charset=utf-8" @@ -531,26 +531,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6278/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps5261\",\r\n \"name\": \"sbnamespace-ps5261\",\r\n \"type\": \"Microsoft.ServiceBus/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:sbnamespace-ps5261\",\r\n \"createdAt\": \"2022-05-02T03:21:24.63Z\",\r\n \"updatedAt\": \"2022-05-02T03:22:11.233Z\",\r\n \"serviceBusEndpoint\": \"https://sbnamespace-ps5261.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4188/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps8812\",\r\n \"name\": \"sbnamespace-ps8812\",\r\n \"type\": \"Microsoft.ServiceBus/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:sbnamespace-ps8812\",\r\n \"createdAt\": \"2022-10-05T23:24:23.82Z\",\r\n \"updatedAt\": \"2022-10-05T23:25:08.063Z\",\r\n \"serviceBusEndpoint\": \"https://sbnamespace-ps8812.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6278/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps8837?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczYyNzgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlQnVzL25hbWVzcGFjZXMvc2JuYW1lc3BhY2UtcHM4ODM3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4188/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps4158?api-version=2022-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQxODgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlQnVzL25hbWVzcGFjZXMvc2JuYW1lc3BhY2UtcHM0MTU4P2FwaS12ZXJzaW9uPTIwMjItMDEtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ebbf02de-e7f0-402f-bb5f-360e1c8f5cf7" + "5642d49a-ecec-4b85-8f60-7dfe87fd578a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -559,6 +558,7 @@ "35" ] }, + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -567,7 +567,7 @@ "no-cache" ], "x-ms-request-id": [ - "a5d2e27e-8a6b-4d2e-a0f8-9b57acc1272c_M1CH3_M1CH3" + "6810a301-aec9-4130-bfc8-4109b50671c2_M4CH3_M4CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" @@ -577,13 +577,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "cef95451-4879-49ef-bd8c-3ab3decb1667" + "9fc16eab-6ec0-454f-87af-c21a942d2478" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T032226Z:cef95451-4879-49ef-bd8c-3ab3decb1667" + "WESTUS2:20221005T232528Z:9fc16eab-6ec0-454f-87af-c21a942d2478" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -592,10 +592,10 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:22:25 GMT" + "Wed, 05 Oct 2022 23:25:28 GMT" ], "Content-Length": [ - "639" + "697" ], "Content-Type": [ "application/json; charset=utf-8" @@ -604,25 +604,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6278/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps8837\",\r\n \"name\": \"sbnamespace-ps8837\",\r\n \"type\": \"Microsoft.ServiceBus/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:sbnamespace-ps8837\",\r\n \"createdAt\": \"2022-05-02T03:22:25.76Z\",\r\n \"updatedAt\": \"2022-05-02T03:22:25.76Z\",\r\n \"serviceBusEndpoint\": \"https://sbnamespace-ps8837.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4188/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps4158\",\r\n \"name\": \"sbnamespace-ps4158\",\r\n \"type\": \"Microsoft.ServiceBus/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:sbnamespace-ps4158\",\r\n \"createdAt\": \"2022-10-05T23:25:28.13Z\",\r\n \"updatedAt\": \"2022-10-05T23:25:28.13Z\",\r\n \"serviceBusEndpoint\": \"https://sbnamespace-ps4158.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6278/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps8837?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczYyNzgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlQnVzL25hbWVzcGFjZXMvc2JuYW1lc3BhY2UtcHM4ODM3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4188/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps4158?api-version=2022-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQxODgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlQnVzL25hbWVzcGFjZXMvc2JuYW1lc3BhY2UtcHM0MTU4P2FwaS12ZXJzaW9uPTIwMjItMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ebbf02de-e7f0-402f-bb5f-360e1c8f5cf7" + "5642d49a-ecec-4b85-8f60-7dfe87fd578a" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/5.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -631,7 +631,7 @@ "no-cache" ], "x-ms-request-id": [ - "ee315ab9-8a50-4e41-a556-bc1be90b78ed_M1CH3_M1CH3" + "d26f6483-a5be-406e-8e86-666020352e1d_M4CH3_M4CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" @@ -641,13 +641,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-correlation-request-id": [ - "c23f4645-c098-4826-9a4c-bdf2c3aa6d68" + "c79fb87f-71a4-449e-afbd-7331e7d2ed40" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T032256Z:c23f4645-c098-4826-9a4c-bdf2c3aa6d68" + "WESTUS2:20221005T232558Z:c79fb87f-71a4-449e-afbd-7331e7d2ed40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -656,10 +656,10 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:22:55 GMT" + "Wed, 05 Oct 2022 23:25:58 GMT" ], "Content-Length": [ - "639" + "697" ], "Content-Type": [ "application/json; charset=utf-8" @@ -668,25 +668,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6278/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps8837\",\r\n \"name\": \"sbnamespace-ps8837\",\r\n \"type\": \"Microsoft.ServiceBus/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:sbnamespace-ps8837\",\r\n \"createdAt\": \"2022-05-02T03:22:25.76Z\",\r\n \"updatedAt\": \"2022-05-02T03:22:25.76Z\",\r\n \"serviceBusEndpoint\": \"https://sbnamespace-ps8837.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4188/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps4158\",\r\n \"name\": \"sbnamespace-ps4158\",\r\n \"type\": \"Microsoft.ServiceBus/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:sbnamespace-ps4158\",\r\n \"createdAt\": \"2022-10-05T23:25:28.13Z\",\r\n \"updatedAt\": \"2022-10-05T23:25:28.13Z\",\r\n \"serviceBusEndpoint\": \"https://sbnamespace-ps4158.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6278/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps8837?api-version=2021-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczYyNzgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlQnVzL25hbWVzcGFjZXMvc2JuYW1lc3BhY2UtcHM4ODM3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4188/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps4158?api-version=2022-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQxODgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlQnVzL25hbWVzcGFjZXMvc2JuYW1lc3BhY2UtcHM0MTU4P2FwaS12ZXJzaW9uPTIwMjItMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ebbf02de-e7f0-402f-bb5f-360e1c8f5cf7" + "5642d49a-ecec-4b85-8f60-7dfe87fd578a" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ServiceBus.ServiceBusManagementClient/5.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -695,23 +695,23 @@ "no-cache" ], "x-ms-request-id": [ - "94897986-4dbf-45bd-ae94-126ac74ec35d_M1CH3_M1CH3" + "53106c1a-1bfa-4b99-bec8-7f26122a1007_M3DM2_M3DM2" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/DM2" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/DM2", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-correlation-request-id": [ - "0e918ece-419e-49b1-af0a-a4f46146a8ab" + "d75e054d-f3ed-40bf-a928-dc66e28bcc10" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T032326Z:0e918ece-419e-49b1-af0a-a4f46146a8ab" + "WESTUS2:20221005T232629Z:d75e054d-f3ed-40bf-a928-dc66e28bcc10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -720,10 +720,10 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:23:25 GMT" + "Wed, 05 Oct 2022 23:26:28 GMT" ], "Content-Length": [ - "638" + "696" ], "Content-Type": [ "application/json; charset=utf-8" @@ -732,26 +732,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6278/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps8837\",\r\n \"name\": \"sbnamespace-ps8837\",\r\n \"type\": \"Microsoft.ServiceBus/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:sbnamespace-ps8837\",\r\n \"createdAt\": \"2022-05-02T03:22:25.76Z\",\r\n \"updatedAt\": \"2022-05-02T03:23:09.737Z\",\r\n \"serviceBusEndpoint\": \"https://sbnamespace-ps8837.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4188/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps4158\",\r\n \"name\": \"sbnamespace-ps4158\",\r\n \"type\": \"Microsoft.ServiceBus/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:sbnamespace-ps4158\",\r\n \"createdAt\": \"2022-10-05T23:25:28.13Z\",\r\n \"updatedAt\": \"2022-10-05T23:26:10.897Z\",\r\n \"serviceBusEndpoint\": \"https://sbnamespace-ps4158.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1933/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps886?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzODg2P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9046/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps2363?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczkwNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzMjM2Mz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1933/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps2925\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5a65a964-468c-4397-8895-65f2faca7ee2" + "b7de82c9-971e-44f2-8382-63c10a2a183e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -760,6 +759,7 @@ "325" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9046/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps5808\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -774,31 +774,31 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/7ADE2EF4-3F32-4EBD-95E7-2AEDED4507F7?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/B5D23466-07E7-4707-8475-2DE5CF696A80?api-version=2022-06-15" ], "x-ms-request-id": [ - "4893369a-bced-4e37-867a-0e0d15131c09" + "cfe64640-f9ff-4c24-bb80-6ac7b054d402" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "173630b7-10b6-48f2-b4ee-064fde8d81b0" + "e30ee2d0-7648-4412-9f2d-c1addb013898" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T032329Z:173630b7-10b6-48f2-b4ee-064fde8d81b0" + "WESTUS2:20221005T232633Z:e30ee2d0-7648-4412-9f2d-c1addb013898" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:23:29 GMT" + "Wed, 05 Oct 2022 23:26:32 GMT" ], "Content-Length": [ - "749" + "751" ], "Content-Type": [ "application/json; charset=utf-8" @@ -807,25 +807,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1933/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps2925\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"922ad02c-b10c-434d-8f92-f32db302be39\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"288851b9-9ed8-4055-bb86-ef4c8ff6564a\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1933/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps886\",\r\n \"name\": \"PSTestTopic-ps886\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9046/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps5808\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"ff71b4a3-675c-46e3-b360-0e97956d5145\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"f2fd3fca-2ccb-4237-8ec5-360aab3c28ed\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9046/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps2363\",\r\n \"name\": \"PSTestTopic-ps2363\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/7ADE2EF4-3F32-4EBD-95E7-2AEDED4507F7?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvN0FERTJFRjQtM0YzMi00RUJELTk1RTctMkFFREVENDUwN0Y3P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/B5D23466-07E7-4707-8475-2DE5CF696A80?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvQjVEMjM0NjYtMDdFNy00NzA3LTg0NzUtMkRFNUNGNjk2QTgwP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a65a964-468c-4397-8895-65f2faca7ee2" + "b7de82c9-971e-44f2-8382-63c10a2a183e" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -837,25 +837,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f7fb7e2a-3e42-4167-8b77-f1b0c854c4b3" + "80044e84-c6b1-42f8-ad23-fb4ad60e95d0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11994" ], "x-ms-correlation-request-id": [ - "1d3cc2b8-95ae-426d-a52e-908f390770bd" + "5b752293-95c8-44f0-b5d9-fe614d499084" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T032339Z:1d3cc2b8-95ae-426d-a52e-908f390770bd" + "WESTUS2:20221005T232643Z:5b752293-95c8-44f0-b5d9-fe614d499084" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:23:39 GMT" + "Wed, 05 Oct 2022 23:26:42 GMT" ], "Content-Length": [ "286" @@ -867,25 +867,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/7ADE2EF4-3F32-4EBD-95E7-2AEDED4507F7?api-version=2021-12-01\",\r\n \"name\": \"7ade2ef4-3f32-4ebd-95e7-2aeded4507f7\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/B5D23466-07E7-4707-8475-2DE5CF696A80?api-version=2022-06-15\",\r\n \"name\": \"b5d23466-07e7-4707-8475-2de5cf696a80\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1933/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps886?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzODg2P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9046/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps2363?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczkwNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzMjM2Mz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a65a964-468c-4397-8895-65f2faca7ee2" + "b7de82c9-971e-44f2-8382-63c10a2a183e" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -897,28 +897,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d6695756-68c1-414a-944e-56b9e3a09b02" + "e203cc91-8550-4281-aa8d-2dace5512b37" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11993" ], "x-ms-correlation-request-id": [ - "19b0eecc-9cf6-4645-bfc4-de8a0133b40a" + "e7eaf298-aa73-48df-8365-a687b3e02bdb" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T032340Z:19b0eecc-9cf6-4645-bfc4-de8a0133b40a" + "WESTUS2:20221005T232643Z:e7eaf298-aa73-48df-8365-a687b3e02bdb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:23:39 GMT" + "Wed, 05 Oct 2022 23:26:43 GMT" ], "Content-Length": [ - "750" + "752" ], "Content-Type": [ "application/json; charset=utf-8" @@ -927,26 +927,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1933/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps2925\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"922ad02c-b10c-434d-8f92-f32db302be39\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"288851b9-9ed8-4055-bb86-ef4c8ff6564a\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1933/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps886\",\r\n \"name\": \"PSTestTopic-ps886\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9046/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps5808\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"ff71b4a3-675c-46e3-b360-0e97956d5145\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"f2fd3fca-2ccb-4237-8ec5-360aab3c28ed\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9046/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps2363\",\r\n \"name\": \"PSTestTopic-ps2363\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6278/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps1485?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczYyNzgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzMTQ4NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4188/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps8231?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQxODgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzODIzMT9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6278/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps5261\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1d57c0c8-07cb-4e58-ab58-6dce4ac6a069" + "e077aaf3-02c4-4118-8ae7-a949123db28c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -955,6 +954,7 @@ "315" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4188/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps8812\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -969,10 +969,10 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/33DC4A6E-6CCE-4064-8A0A-161503A9F114?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/72A9A1AF-0B56-4533-AA02-ACFED1C99BD9?api-version=2022-06-15" ], "x-ms-request-id": [ - "1d4d8e71-f742-44a4-8393-63ca2bb9c0dc" + "bf48036a-9478-4ede-8fe7-720c32826d8d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -981,16 +981,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "37a16781-21af-4cd4-8c8c-4f10dea3f5d4" + "c3aea772-3383-4055-8d38-f0ce3a466873" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T032341Z:37a16781-21af-4cd4-8c8c-4f10dea3f5d4" + "WESTUS2:20221005T232645Z:c3aea772-3383-4055-8d38-f0ce3a466873" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:23:40 GMT" + "Wed, 05 Oct 2022 23:26:45 GMT" ], "Content-Length": [ "673" @@ -1002,25 +1002,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6278/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps5261\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"796b1e65-05f8-4288-9f62-af450ac0fe77\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6278/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps1485\",\r\n \"name\": \"PSTestTopic-ps1485\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4188/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps8812\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"a3cc988f-a76d-4175-8666-d102ade110d7\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4188/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps8231\",\r\n \"name\": \"PSTestTopic-ps8231\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/33DC4A6E-6CCE-4064-8A0A-161503A9F114?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMzNEQzRBNkUtNkNDRS00MDY0LThBMEEtMTYxNTAzQTlGMTE0P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/72A9A1AF-0B56-4533-AA02-ACFED1C99BD9?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNzJBOUExQUYtMEI1Ni00NTMzLUFBMDItQUNGRUQxQzk5QkQ5P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d57c0c8-07cb-4e58-ab58-6dce4ac6a069" + "e077aaf3-02c4-4118-8ae7-a949123db28c" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1032,25 +1032,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "70dbb713-2343-4375-86ea-06bbf8314004" + "9fceef43-be59-480a-b858-579d4453c219" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-correlation-request-id": [ - "f6bd3370-30e7-45da-be9a-040cc6e644e5" + "fa05de16-168b-4bf5-b4e6-4c5df6001d32" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T032351Z:f6bd3370-30e7-45da-be9a-040cc6e644e5" + "WESTUS2:20221005T232656Z:fa05de16-168b-4bf5-b4e6-4c5df6001d32" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:23:50 GMT" + "Wed, 05 Oct 2022 23:26:55 GMT" ], "Content-Length": [ "286" @@ -1062,25 +1062,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/33DC4A6E-6CCE-4064-8A0A-161503A9F114?api-version=2021-12-01\",\r\n \"name\": \"33dc4a6e-6cce-4064-8a0a-161503a9f114\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/72A9A1AF-0B56-4533-AA02-ACFED1C99BD9?api-version=2022-06-15\",\r\n \"name\": \"72a9a1af-0b56-4533-aa02-acfed1c99bd9\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6278/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps1485?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczYyNzgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzMTQ4NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4188/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps8231?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQxODgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzODIzMT9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d57c0c8-07cb-4e58-ab58-6dce4ac6a069" + "e077aaf3-02c4-4118-8ae7-a949123db28c" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1092,25 +1092,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "96e4142c-0330-456d-b939-ea1b37d2435a" + "4e843386-be65-45d2-881c-92928d50d1de" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-correlation-request-id": [ - "3a54ffba-ce8a-472e-9680-763cf76153d6" + "6e924114-a116-42cf-b6e8-a999b8fb1ebc" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T032351Z:3a54ffba-ce8a-472e-9680-763cf76153d6" + "WESTUS2:20221005T232656Z:6e924114-a116-42cf-b6e8-a999b8fb1ebc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:23:50 GMT" + "Wed, 05 Oct 2022 23:26:55 GMT" ], "Content-Length": [ "674" @@ -1122,25 +1122,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6278/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps5261\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"796b1e65-05f8-4288-9f62-af450ac0fe77\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6278/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps1485\",\r\n \"name\": \"PSTestTopic-ps1485\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4188/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps8812\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"a3cc988f-a76d-4175-8666-d102ade110d7\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4188/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps8231\",\r\n \"name\": \"PSTestTopic-ps8231\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6278/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps1485?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczYyNzgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzMTQ4NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4188/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps8231?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQxODgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzODIzMT9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8478f117-d977-4a53-b4ba-8aa01c6fbf42" + "172b8485-8efc-43f5-8532-4d22ab973a0b" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1152,25 +1152,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b27f105f-fbc5-4bbe-9c9c-d7b72e1f0b61" + "e0ef9c23-1193-4fd6-96f2-8c4b730f26c4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11998" ], "x-ms-correlation-request-id": [ - "31bc64ef-dd19-416a-ac27-4320c194966f" + "0866b987-78c1-4609-9883-1a3780774470" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T032402Z:31bc64ef-dd19-416a-ac27-4320c194966f" + "WESTUS2:20221005T232708Z:0866b987-78c1-4609-9883-1a3780774470" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:24:02 GMT" + "Wed, 05 Oct 2022 23:27:07 GMT" ], "Content-Length": [ "930" @@ -1182,26 +1182,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6278/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps5261\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"796b1e65-05f8-4288-9f62-af450ac0fe77\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testIdentity1\": {\r\n \"principalId\": \"0558243c-d498-44a2-a8f9-92cb66e8bd68\",\r\n \"clientId\": \"2ecf32a2-baf0-493c-b3b7-eec5556c5327\"\r\n }\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6278/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps1485\",\r\n \"name\": \"PSTestTopic-ps1485\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4188/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps8812\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"a3cc988f-a76d-4175-8666-d102ade110d7\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testIdentity1\": {\r\n \"principalId\": \"0558243c-d498-44a2-a8f9-92cb66e8bd68\",\r\n \"clientId\": \"2ecf32a2-baf0-493c-b3b7-eec5556c5327\"\r\n }\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4188/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps8231\",\r\n \"name\": \"PSTestTopic-ps8231\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6278/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps1485?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczYyNzgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzMTQ4NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4188/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps8231?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQxODgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzODIzMT9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testIdentity1\": {}\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8478f117-d977-4a53-b4ba-8aa01c6fbf42" + "172b8485-8efc-43f5-8532-4d22ab973a0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1210,6 +1209,7 @@ "252" ] }, + "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testIdentity1\": {}\r\n }\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1224,28 +1224,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/5D95BDB2-7880-4757-A149-312E6C185A15?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/57993E65-C1A7-4CBB-ADE3-BB293FFA1B1F?api-version=2022-06-15" ], "x-ms-request-id": [ - "823fd621-d20e-4a74-b7dd-2dfa1e313394" + "913612ac-77e0-47f1-aa7e-e323c851bc86" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "3e23813c-bcb3-439e-8ba7-9ce5dfa878b9" + "f4df1874-b028-46cd-b47d-abec7f0367e8" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T032352Z:3e23813c-bcb3-439e-8ba7-9ce5dfa878b9" + "WESTUS2:20221005T232658Z:f4df1874-b028-46cd-b47d-abec7f0367e8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:23:51 GMT" + "Wed, 05 Oct 2022 23:26:57 GMT" ], "Content-Length": [ "861" @@ -1257,25 +1257,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6278/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps5261\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"796b1e65-05f8-4288-9f62-af450ac0fe77\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testIdentity1\": {\r\n \"principalId\": null,\r\n \"clientId\": null\r\n }\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6278/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps1485\",\r\n \"name\": \"PSTestTopic-ps1485\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"source\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4188/providers/Microsoft.ServiceBus/namespaces/sbnamespace-ps8812\",\r\n \"topicType\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"metricResourceId\": \"a3cc988f-a76d-4175-8666-d102ade110d7\"\r\n },\r\n \"systemData\": null,\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testIdentity1\": {\r\n \"principalId\": null,\r\n \"clientId\": null\r\n }\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4188/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps8231\",\r\n \"name\": \"PSTestTopic-ps8231\",\r\n \"type\": \"Microsoft.EventGrid/systemTopics\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/5D95BDB2-7880-4757-A149-312E6C185A15?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNUQ5NUJEQjItNzg4MC00NzU3LUExNDktMzEyRTZDMTg1QTE1P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/57993E65-C1A7-4CBB-ADE3-BB293FFA1B1F?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNTc5OTNFNjUtQzFBNy00Q0JCLUFERTMtQkIyOTNGRkExQjFGP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8478f117-d977-4a53-b4ba-8aa01c6fbf42" + "172b8485-8efc-43f5-8532-4d22ab973a0b" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1287,25 +1287,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e38fd11b-f4db-4cd8-abc6-7d3a4470cb11" + "cdd9c13a-c848-4d03-8080-861fbfc13957" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11999" ], "x-ms-correlation-request-id": [ - "7beeb870-0c6c-40cb-82a3-98051dfa5ba9" + "d0428a77-a8d3-483b-a674-121ba5476232" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T032402Z:7beeb870-0c6c-40cb-82a3-98051dfa5ba9" + "WESTUS2:20221005T232708Z:d0428a77-a8d3-483b-a674-121ba5476232" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:24:02 GMT" + "Wed, 05 Oct 2022 23:27:07 GMT" ], "Content-Length": [ "286" @@ -1317,28 +1317,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/5D95BDB2-7880-4757-A149-312E6C185A15?api-version=2021-12-01\",\r\n \"name\": \"5d95bdb2-7880-4757-a149-312e6c185a15\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/57993E65-C1A7-4CBB-ADE3-BB293FFA1B1F?api-version=2022-06-15\",\r\n \"name\": \"57993e65-c1a7-4cbb-ade3-bb293ffa1b1f\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1933/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps886?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzODg2P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9046/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps2363?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczkwNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzMjM2Mz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "06e0b365-30d4-4d3b-b8a4-2aa82265b4c8" + "3c86c52b-e960-400a-a48e-e2c178dd1c6f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1347,7 +1347,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/48B84FEF-8ECB-413B-8D8C-3B0A87FFFCE2?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/D6C416BA-9CC2-4EFD-A128-6D74FB0B34BB?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -1356,7 +1356,7 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/48B84FEF-8ECB-413B-8D8C-3B0A87FFFCE2?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/D6C416BA-9CC2-4EFD-A128-6D74FB0B34BB?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1365,19 +1365,19 @@ "14999" ], "x-ms-request-id": [ - "aca86af5-de6f-4641-9e64-cb1da02af914" + "c73bc571-059e-4f0b-8698-4da5d717a664" ], "x-ms-correlation-request-id": [ - "aca86af5-de6f-4641-9e64-cb1da02af914" + "c73bc571-059e-4f0b-8698-4da5d717a664" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T032403Z:aca86af5-de6f-4641-9e64-cb1da02af914" + "WESTUS2:20221005T232709Z:c73bc571-059e-4f0b-8698-4da5d717a664" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:24:02 GMT" + "Wed, 05 Oct 2022 23:27:08 GMT" ], "Expires": [ "-1" @@ -1390,21 +1390,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/48B84FEF-8ECB-413B-8D8C-3B0A87FFFCE2?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNDhCODRGRUYtOEVDQi00MTNCLThEOEMtM0IwQTg3RkZGQ0UyP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/D6C416BA-9CC2-4EFD-A128-6D74FB0B34BB?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRDZDNDE2QkEtOUNDMi00RUZELUExMjgtNkQ3NEZCMEIzNEJCP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "06e0b365-30d4-4d3b-b8a4-2aa82265b4c8" + "3c86c52b-e960-400a-a48e-e2c178dd1c6f" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1416,25 +1416,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4bf6ab5b-5a91-4188-a5ec-b2601a9229fe" + "4d17f749-66f7-43ba-92a4-d1e32ded9ea1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11999" ], "x-ms-correlation-request-id": [ - "72787729-fbf8-42da-8677-c3a186dabed5" + "9c7220f4-ff6b-4548-b585-2b4b3d1f1f0a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T032413Z:72787729-fbf8-42da-8677-c3a186dabed5" + "WESTUS2:20221005T232719Z:9c7220f4-ff6b-4548-b585-2b4b3d1f1f0a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:24:12 GMT" + "Wed, 05 Oct 2022 23:27:18 GMT" ], "Content-Length": [ "286" @@ -1446,25 +1446,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/48B84FEF-8ECB-413B-8D8C-3B0A87FFFCE2?api-version=2021-12-01\",\r\n \"name\": \"48b84fef-8ecb-413b-8d8c-3b0a87fffce2\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/D6C416BA-9CC2-4EFD-A128-6D74FB0B34BB?api-version=2022-06-15\",\r\n \"name\": \"d6c416ba-9cc2-4efd-a128-6d74fb0b34bb\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/48B84FEF-8ECB-413B-8D8C-3B0A87FFFCE2?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNDhCODRGRUYtOEVDQi00MTNCLThEOEMtM0IwQTg3RkZGQ0UyP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/D6C416BA-9CC2-4EFD-A128-6D74FB0B34BB?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvRDZDNDE2QkEtOUNDMi00RUZELUExMjgtNkQ3NEZCMEIzNEJCP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "06e0b365-30d4-4d3b-b8a4-2aa82265b4c8" + "3c86c52b-e960-400a-a48e-e2c178dd1c6f" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1476,25 +1476,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d7e39af0-7c53-4474-8b5b-182883c60fb2" + "93c584de-a191-4be7-a758-59e3d62520c8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11998" ], "x-ms-correlation-request-id": [ - "dd6fdfaf-6aca-4c60-a714-fc16d0aa968b" + "25f8b159-5454-4498-aafe-fa66fe7cd164" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T032413Z:dd6fdfaf-6aca-4c60-a714-fc16d0aa968b" + "WESTUS2:20221005T232719Z:25f8b159-5454-4498-aafe-fa66fe7cd164" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:24:12 GMT" + "Wed, 05 Oct 2022 23:27:18 GMT" ], "Expires": [ "-1" @@ -1507,24 +1507,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6278/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps1485?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczYyNzgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzMTQ4NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4188/providers/Microsoft.EventGrid/systemTopics/PSTestTopic-ps8231?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQxODgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvc3lzdGVtVG9waWNzL1BTVGVzdFRvcGljLXBzODIzMT9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f64bec9e-5dcb-4f49-b9cd-c9c8a818174a" + "b6bea972-955c-4d44-bd12-6959cf896a62" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1533,7 +1533,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/04FBF784-0644-442D-BF8A-164FAB52BC35?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/BA87A483-0A01-4DF9-AE32-0AAE8492BAAD?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -1542,28 +1542,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/04FBF784-0644-442D-BF8A-164FAB52BC35?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/BA87A483-0A01-4DF9-AE32-0AAE8492BAAD?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-request-id": [ - "fadc800e-8119-4564-9fea-d9fa78c453d3" + "aedad38b-7d1d-41de-a649-d8c705a811a6" ], "x-ms-correlation-request-id": [ - "fadc800e-8119-4564-9fea-d9fa78c453d3" + "aedad38b-7d1d-41de-a649-d8c705a811a6" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T032413Z:fadc800e-8119-4564-9fea-d9fa78c453d3" + "WESTUS2:20221005T232720Z:aedad38b-7d1d-41de-a649-d8c705a811a6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:24:13 GMT" + "Wed, 05 Oct 2022 23:27:20 GMT" ], "Expires": [ "-1" @@ -1576,21 +1576,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/04FBF784-0644-442D-BF8A-164FAB52BC35?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMDRGQkY3ODQtMDY0NC00NDJELUJGOEEtMTY0RkFCNTJCQzM1P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/BA87A483-0A01-4DF9-AE32-0AAE8492BAAD?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvQkE4N0E0ODMtMEEwMS00REY5LUFFMzItMEFBRTg0OTJCQUFEP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f64bec9e-5dcb-4f49-b9cd-c9c8a818174a" + "b6bea972-955c-4d44-bd12-6959cf896a62" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1602,25 +1602,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2c7db6bf-53c8-4b58-8a07-3abc404f0c48" + "250f554d-45f2-406f-ab91-480d3381265d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11999" ], "x-ms-correlation-request-id": [ - "5fb07f37-a105-4619-896a-fc286ec65c66" + "b585c432-a49a-40f0-8c5e-049f80cdf745" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T032423Z:5fb07f37-a105-4619-896a-fc286ec65c66" + "WESTUS2:20221005T232730Z:b585c432-a49a-40f0-8c5e-049f80cdf745" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:24:23 GMT" + "Wed, 05 Oct 2022 23:27:30 GMT" ], "Content-Length": [ "286" @@ -1632,25 +1632,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/04FBF784-0644-442D-BF8A-164FAB52BC35?api-version=2021-12-01\",\r\n \"name\": \"04fbf784-0644-442d-bf8a-164fab52bc35\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/BA87A483-0A01-4DF9-AE32-0AAE8492BAAD?api-version=2022-06-15\",\r\n \"name\": \"ba87a483-0a01-4df9-ae32-0aae8492baad\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/04FBF784-0644-442D-BF8A-164FAB52BC35?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMDRGQkY3ODQtMDY0NC00NDJELUJGOEEtMTY0RkFCNTJCQzM1P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/BA87A483-0A01-4DF9-AE32-0AAE8492BAAD?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvQkE4N0E0ODMtMEEwMS00REY5LUFFMzItMEFBRTg0OTJCQUFEP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f64bec9e-5dcb-4f49-b9cd-c9c8a818174a" + "b6bea972-955c-4d44-bd12-6959cf896a62" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1662,25 +1662,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b1847a14-04ec-48d0-b6a3-2ca255c606fc" + "818a572d-49fc-4c47-979f-c45f2d16670f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11998" ], "x-ms-correlation-request-id": [ - "8559eefc-e305-4afa-8564-1ba0a5b9bd4e" + "aa0b766e-c4e6-4597-a63c-ac63f14f8b33" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T032423Z:8559eefc-e305-4afa-8564-1ba0a5b9bd4e" + "WESTUS2:20221005T232730Z:aa0b766e-c4e6-4597-a63c-ac63f14f8b33" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:24:23 GMT" + "Wed, 05 Oct 2022 23:27:30 GMT" ], "Expires": [ "-1" @@ -1693,24 +1693,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps1933?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczE5MzM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps9046?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczkwNDY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0201bda3-ff89-4674-9d99-0ac6f6e60f23" + "584f54d6-3454-4edb-86db-8078767b65d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1719,7 +1719,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzE5MzMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzkwNDYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1728,13 +1728,13 @@ "14999" ], "x-ms-request-id": [ - "384fc1c9-3062-4910-958d-5cdb080beb1e" + "4d155080-406c-475c-afcf-86137247aebe" ], "x-ms-correlation-request-id": [ - "384fc1c9-3062-4910-958d-5cdb080beb1e" + "4d155080-406c-475c-afcf-86137247aebe" ], "x-ms-routing-request-id": [ - "WESTUS:20220502T032425Z:384fc1c9-3062-4910-958d-5cdb080beb1e" + "WESTUS2:20221005T232732Z:4d155080-406c-475c-afcf-86137247aebe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1743,7 +1743,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:24:24 GMT" + "Wed, 05 Oct 2022 23:27:32 GMT" ], "Expires": [ "-1" @@ -1756,18 +1756,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzE5MzMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpFNU16TXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzkwNDYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXprd05EWXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1776,7 +1776,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzE5MzMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzkwNDYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1785,13 +1785,13 @@ "11999" ], "x-ms-request-id": [ - "e7ed4f13-2598-42b9-a8dd-f135e406afed" + "9f1ab610-37c9-4c0e-8eef-417438197d6d" ], "x-ms-correlation-request-id": [ - "e7ed4f13-2598-42b9-a8dd-f135e406afed" + "9f1ab610-37c9-4c0e-8eef-417438197d6d" ], "x-ms-routing-request-id": [ - "WESTUS:20220502T032440Z:e7ed4f13-2598-42b9-a8dd-f135e406afed" + "WESTUS2:20221005T232747Z:9f1ab610-37c9-4c0e-8eef-417438197d6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1800,7 +1800,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:24:40 GMT" + "Wed, 05 Oct 2022 23:27:47 GMT" ], "Expires": [ "-1" @@ -1813,18 +1813,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzE5MzMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpFNU16TXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzkwNDYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXprd05EWXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1833,7 +1833,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzE5MzMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzkwNDYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1842,13 +1842,13 @@ "11998" ], "x-ms-request-id": [ - "0acb542c-8352-46fa-bef4-ecdd7ea1dfd1" + "7334a328-d9fc-405e-b3d9-f5c6d9b79d5f" ], "x-ms-correlation-request-id": [ - "0acb542c-8352-46fa-bef4-ecdd7ea1dfd1" + "7334a328-d9fc-405e-b3d9-f5c6d9b79d5f" ], "x-ms-routing-request-id": [ - "WESTUS:20220502T032455Z:0acb542c-8352-46fa-bef4-ecdd7ea1dfd1" + "WESTUS2:20221005T232803Z:7334a328-d9fc-405e-b3d9-f5c6d9b79d5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1857,7 +1857,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:24:55 GMT" + "Wed, 05 Oct 2022 23:28:02 GMT" ], "Expires": [ "-1" @@ -1870,18 +1870,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzE5MzMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpFNU16TXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzkwNDYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXprd05EWXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1890,7 +1890,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzE5MzMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzkwNDYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1899,13 +1899,13 @@ "11997" ], "x-ms-request-id": [ - "a62b8bb4-a9f4-43d8-a2aa-1ad0732ebea5" + "c74a7218-a7c2-4e32-8741-6162159a636a" ], "x-ms-correlation-request-id": [ - "a62b8bb4-a9f4-43d8-a2aa-1ad0732ebea5" + "c74a7218-a7c2-4e32-8741-6162159a636a" ], "x-ms-routing-request-id": [ - "WESTUS:20220502T032510Z:a62b8bb4-a9f4-43d8-a2aa-1ad0732ebea5" + "WESTUS2:20221005T232818Z:c74a7218-a7c2-4e32-8741-6162159a636a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1914,7 +1914,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:25:10 GMT" + "Wed, 05 Oct 2022 23:28:17 GMT" ], "Expires": [ "-1" @@ -1927,18 +1927,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzE5MzMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpFNU16TXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzkwNDYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXprd05EWXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1947,7 +1947,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzE5MzMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzkwNDYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1956,13 +1956,13 @@ "11996" ], "x-ms-request-id": [ - "8bc1fa14-67b0-4877-a685-bc4869a81cd2" + "23be926d-4abc-45dc-ae7f-4586c7d60788" ], "x-ms-correlation-request-id": [ - "8bc1fa14-67b0-4877-a685-bc4869a81cd2" + "23be926d-4abc-45dc-ae7f-4586c7d60788" ], "x-ms-routing-request-id": [ - "WESTUS:20220502T032526Z:8bc1fa14-67b0-4877-a685-bc4869a81cd2" + "WESTUS2:20221005T232833Z:23be926d-4abc-45dc-ae7f-4586c7d60788" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1971,7 +1971,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:25:25 GMT" + "Wed, 05 Oct 2022 23:28:32 GMT" ], "Expires": [ "-1" @@ -1984,18 +1984,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzE5MzMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpFNU16TXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzkwNDYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXprd05EWXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2007,13 +2007,13 @@ "11995" ], "x-ms-request-id": [ - "98c697f0-78f7-4fa7-874a-cc3faefff490" + "972aea80-d4fc-41f7-b83d-d118e2b98ac2" ], "x-ms-correlation-request-id": [ - "98c697f0-78f7-4fa7-874a-cc3faefff490" + "972aea80-d4fc-41f7-b83d-d118e2b98ac2" ], "x-ms-routing-request-id": [ - "WESTUS:20220502T032541Z:98c697f0-78f7-4fa7-874a-cc3faefff490" + "WESTUS2:20221005T232848Z:972aea80-d4fc-41f7-b83d-d118e2b98ac2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2022,7 +2022,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:25:40 GMT" + "Wed, 05 Oct 2022 23:28:47 GMT" ], "Expires": [ "-1" @@ -2035,18 +2035,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzE5MzMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpFNU16TXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzkwNDYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXprd05EWXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2058,13 +2058,13 @@ "11994" ], "x-ms-request-id": [ - "1e946072-cc23-44ac-bf96-8801704ce9af" + "ffae921c-de6b-4f43-9a70-111c5045ec12" ], "x-ms-correlation-request-id": [ - "1e946072-cc23-44ac-bf96-8801704ce9af" + "ffae921c-de6b-4f43-9a70-111c5045ec12" ], "x-ms-routing-request-id": [ - "WESTUS:20220502T032541Z:1e946072-cc23-44ac-bf96-8801704ce9af" + "WESTUS2:20221005T232848Z:ffae921c-de6b-4f43-9a70-111c5045ec12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2073,7 +2073,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:25:40 GMT" + "Wed, 05 Oct 2022 23:28:47 GMT" ], "Expires": [ "-1" @@ -2086,24 +2086,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps6278?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczYyNzg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps4188?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczQxODg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8425263b-487c-496c-bcad-ec5b28285778" + "5413838b-0c90-46ab-acfa-dfc5b4839883" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2112,22 +2112,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzYyNzgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzQxODgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-request-id": [ - "8b80c54a-1dca-4fbd-9412-51fa820b8f93" + "435dd99b-8f56-40df-a163-a03db96916af" ], "x-ms-correlation-request-id": [ - "8b80c54a-1dca-4fbd-9412-51fa820b8f93" + "435dd99b-8f56-40df-a163-a03db96916af" ], "x-ms-routing-request-id": [ - "WESTUS:20220502T032542Z:8b80c54a-1dca-4fbd-9412-51fa820b8f93" + "WESTUS2:20221005T232849Z:435dd99b-8f56-40df-a163-a03db96916af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2136,7 +2136,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:25:41 GMT" + "Wed, 05 Oct 2022 23:28:49 GMT" ], "Expires": [ "-1" @@ -2149,18 +2149,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzYyNzgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpZeU56Z3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzQxODgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpReE9EZ3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2169,22 +2169,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzYyNzgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzQxODgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11999" ], "x-ms-request-id": [ - "d685bf7a-7e8c-481f-8467-8d3ab0155d98" + "e171ff0a-bb1b-4af9-9206-e190286dcd25" ], "x-ms-correlation-request-id": [ - "d685bf7a-7e8c-481f-8467-8d3ab0155d98" + "e171ff0a-bb1b-4af9-9206-e190286dcd25" ], "x-ms-routing-request-id": [ - "WESTUS:20220502T032557Z:d685bf7a-7e8c-481f-8467-8d3ab0155d98" + "WESTUS2:20221005T232904Z:e171ff0a-bb1b-4af9-9206-e190286dcd25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2193,7 +2193,10 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:25:56 GMT" + "Wed, 05 Oct 2022 23:29:03 GMT" + ], + "Connection": [ + "close" ], "Expires": [ "-1" @@ -2206,18 +2209,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzYyNzgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpZeU56Z3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzQxODgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpReE9EZ3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2226,22 +2229,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzYyNzgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzQxODgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11999" ], "x-ms-request-id": [ - "464415e2-bc2a-4286-8598-c0924fd5d204" + "099cd05d-8390-4433-951c-c4ebd5cfc97b" ], "x-ms-correlation-request-id": [ - "464415e2-bc2a-4286-8598-c0924fd5d204" + "099cd05d-8390-4433-951c-c4ebd5cfc97b" ], "x-ms-routing-request-id": [ - "WESTUS:20220502T032612Z:464415e2-bc2a-4286-8598-c0924fd5d204" + "WESTUS2:20221005T232919Z:099cd05d-8390-4433-951c-c4ebd5cfc97b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2250,7 +2253,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:26:11 GMT" + "Wed, 05 Oct 2022 23:29:19 GMT" ], "Expires": [ "-1" @@ -2263,18 +2266,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzYyNzgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpZeU56Z3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzQxODgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpReE9EZ3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2283,22 +2286,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzYyNzgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzQxODgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11998" ], "x-ms-request-id": [ - "a3239499-df64-4256-a28d-ed97321f8e9d" + "e660ae6f-3ab7-40ee-b925-835d16e8b5ea" ], "x-ms-correlation-request-id": [ - "a3239499-df64-4256-a28d-ed97321f8e9d" + "e660ae6f-3ab7-40ee-b925-835d16e8b5ea" ], "x-ms-routing-request-id": [ - "WESTUS:20220502T032627Z:a3239499-df64-4256-a28d-ed97321f8e9d" + "WESTUS2:20221005T232935Z:e660ae6f-3ab7-40ee-b925-835d16e8b5ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2307,7 +2310,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:26:26 GMT" + "Wed, 05 Oct 2022 23:29:34 GMT" ], "Expires": [ "-1" @@ -2320,18 +2323,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzYyNzgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpZeU56Z3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzQxODgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpReE9EZ3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2340,22 +2343,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzYyNzgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzQxODgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11997" ], "x-ms-request-id": [ - "befba8ad-d93a-4146-ab6f-60fbc3d30d2f" + "f0599d22-dea6-4b43-8eb2-416e159aabfc" ], "x-ms-correlation-request-id": [ - "befba8ad-d93a-4146-ab6f-60fbc3d30d2f" + "f0599d22-dea6-4b43-8eb2-416e159aabfc" ], "x-ms-routing-request-id": [ - "WESTUS:20220502T032642Z:befba8ad-d93a-4146-ab6f-60fbc3d30d2f" + "WESTUS2:20221005T232950Z:f0599d22-dea6-4b43-8eb2-416e159aabfc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2364,7 +2367,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:26:41 GMT" + "Wed, 05 Oct 2022 23:29:49 GMT" ], "Expires": [ "-1" @@ -2377,18 +2380,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzYyNzgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpZeU56Z3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzQxODgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpReE9EZ3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2397,16 +2400,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11996" ], "x-ms-request-id": [ - "ac041ef7-b66b-4f7a-9f24-4ca73a8d5f8c" + "ad802147-90c6-4b4f-88ca-68a43983eb07" ], "x-ms-correlation-request-id": [ - "ac041ef7-b66b-4f7a-9f24-4ca73a8d5f8c" + "ad802147-90c6-4b4f-88ca-68a43983eb07" ], "x-ms-routing-request-id": [ - "WESTUS:20220502T032657Z:ac041ef7-b66b-4f7a-9f24-4ca73a8d5f8c" + "WESTUS2:20221005T233005Z:ad802147-90c6-4b4f-88ca-68a43983eb07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2415,7 +2418,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:26:57 GMT" + "Wed, 05 Oct 2022 23:30:04 GMT" ], "Expires": [ "-1" @@ -2428,18 +2431,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzYyNzgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpZeU56Z3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzQxODgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpReE9EZ3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2448,16 +2451,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11995" ], "x-ms-request-id": [ - "0f718d5f-9867-4a92-9332-0f503d31c2c1" + "779d41f8-8448-4a74-9370-33bfb7b553b7" ], "x-ms-correlation-request-id": [ - "0f718d5f-9867-4a92-9332-0f503d31c2c1" + "779d41f8-8448-4a74-9370-33bfb7b553b7" ], "x-ms-routing-request-id": [ - "WESTUS:20220502T032657Z:0f718d5f-9867-4a92-9332-0f503d31c2c1" + "WESTUS2:20221005T233005Z:779d41f8-8448-4a74-9370-33bfb7b553b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2466,7 +2469,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:26:57 GMT" + "Wed, 05 Oct 2022 23:30:04 GMT" ], "Expires": [ "-1" @@ -2481,17 +2484,17 @@ ], "Names": { "": [ - "ps886", - "ps1485", - "ps7946", - "ps1126", - "ps1933", - "ps6278", - "ps2925", - "ps5261", - "ps8837", - "ps638", - "ps4527" + "ps2363", + "ps8231", + "ps5796", + "ps4338", + "ps9046", + "ps4188", + "ps5808", + "ps8812", + "ps4158", + "ps5651", + "ps6007" ] }, "Variables": { diff --git a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.DomainTests/EventGrid_DomainsCreateGetAndDelete.json b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.DomainTests/EventGrid_DomainsCreateGetAndDelete.json index 8577a1bfa32b..b73cd792abff 100644 --- a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.DomainTests/EventGrid_DomainsCreateGetAndDelete.json +++ b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.DomainTests/EventGrid_DomainsCreateGetAndDelete.json @@ -1,22 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps3443?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczM0NDM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps9041?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczkwNDE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "88742b5d-c992-4a10-a949-1770ac97ae81" + "1b2a2115-c127-4722-8edf-5103bb66c66c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,6 +24,7 @@ "35" ] }, + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "ae010e1e-9d91-40d9-ae1f-3562a883f522" + "4b5108aa-9935-439c-94c2-e21197874cf2" ], "x-ms-correlation-request-id": [ - "ae010e1e-9d91-40d9-ae1f-3562a883f522" + "4b5108aa-9935-439c-94c2-e21197874cf2" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214757Z:ae010e1e-9d91-40d9-ae1f-3562a883f522" + "WESTUS2:20221006T020001Z:4b5108aa-9935-439c-94c2-e21197874cf2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:47:56 GMT" + "Thu, 06 Oct 2022 02:00:00 GMT" ], "Content-Length": [ "186" @@ -63,26 +63,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3443\",\r\n \"name\": \"RGName-ps3443\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9041\",\r\n \"name\": \"RGName-ps9041\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps261?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczI2MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps9622?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczk2MjI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7c3baccb-9da4-4e35-96a9-de8d612fad47" + "961f7389-9943-4275-bc5e-46aa2e33b051" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ], "Content-Type": [ "application/json; charset=utf-8" @@ -91,6 +90,7 @@ "35" ] }, + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "65ecb69c-75f9-454f-bc97-5122773aa787" + "feca4b42-5b3d-43bf-8251-f7854b4f8db5" ], "x-ms-correlation-request-id": [ - "65ecb69c-75f9-454f-bc97-5122773aa787" + "feca4b42-5b3d-43bf-8251-f7854b4f8db5" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214757Z:65ecb69c-75f9-454f-bc97-5122773aa787" + "WESTUS2:20221006T020002Z:feca4b42-5b3d-43bf-8251-f7854b4f8db5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,10 +117,10 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:47:57 GMT" + "Thu, 06 Oct 2022 02:00:02 GMT" ], "Content-Length": [ - "184" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -129,26 +129,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps261\",\r\n \"name\": \"RGName-ps261\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9622\",\r\n \"name\": \"RGName-ps9622\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3443/providers/Microsoft.EventGrid/domains/PSTestDomain-ps5101?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczM0NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM1MTAxP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9041/providers/Microsoft.EventGrid/domains/PSTestDomain-ps1638?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczkwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHMxNjM4P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6942011b-788f-4168-b7c5-05ccd91b15df" + "2d9acbfd-904b-49dc-8016-fcfa2a2f3235" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -157,6 +156,7 @@ "272" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -171,10 +171,10 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/174AA69A-0E95-4797-9190-73E60978EEE9?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/36343B7E-CA10-482E-8AA0-888366FB7E48?api-version=2022-06-15" ], "x-ms-request-id": [ - "38dfb65e-5bdf-4820-9270-e1ffb46395e7" + "9678afd8-80f2-4188-a289-32417cc1172b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -183,16 +183,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "c7fbbab8-e8e6-4131-baf6-26e01db1e1a2" + "eeb70d79-9e78-492c-b74c-7f86fb22a701" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214800Z:c7fbbab8-e8e6-4131-baf6-26e01db1e1a2" + "WESTUS2:20221006T020004Z:eeb70d79-9e78-492c-b74c-7f86fb22a701" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:48:00 GMT" + "Thu, 06 Oct 2022 02:00:03 GMT" ], "Content-Length": [ "510" @@ -204,25 +204,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3443/providers/Microsoft.EventGrid/domains/PSTestDomain-ps5101\",\r\n \"name\": \"PSTestDomain-ps5101\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9041/providers/Microsoft.EventGrid/domains/PSTestDomain-ps1638\",\r\n \"name\": \"PSTestDomain-ps1638\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/174AA69A-0E95-4797-9190-73E60978EEE9?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMTc0QUE2OUEtMEU5NS00Nzk3LTkxOTAtNzNFNjA5NzhFRUU5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/36343B7E-CA10-482E-8AA0-888366FB7E48?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMzYzNDNCN0UtQ0ExMC00ODJFLThBQTAtODg4MzY2RkI3RTQ4P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6942011b-788f-4168-b7c5-05ccd91b15df" + "2d9acbfd-904b-49dc-8016-fcfa2a2f3235" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -234,7 +234,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "09ba50a9-cf1d-462d-92ce-37d1f6995745" + "e9ca44e8-8152-42f8-abdd-87d8e9d533f1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -243,16 +243,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "5f7b27b0-05a2-4a76-92ac-1fc7339ca4de" + "cd3f3926-bc5b-4ceb-bd7f-6421e87b0925" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214810Z:5f7b27b0-05a2-4a76-92ac-1fc7339ca4de" + "WESTUS2:20221006T020014Z:cd3f3926-bc5b-4ceb-bd7f-6421e87b0925" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:48:10 GMT" + "Thu, 06 Oct 2022 02:00:13 GMT" ], "Content-Length": [ "286" @@ -264,25 +264,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/174AA69A-0E95-4797-9190-73E60978EEE9?api-version=2021-12-01\",\r\n \"name\": \"174aa69a-0e95-4797-9190-73e60978eee9\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/36343B7E-CA10-482E-8AA0-888366FB7E48?api-version=2022-06-15\",\r\n \"name\": \"36343b7e-ca10-482e-8aa0-888366fb7e48\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3443/providers/Microsoft.EventGrid/domains/PSTestDomain-ps5101?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczM0NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM1MTAxP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9041/providers/Microsoft.EventGrid/domains/PSTestDomain-ps1638?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczkwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHMxNjM4P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6942011b-788f-4168-b7c5-05ccd91b15df" + "2d9acbfd-904b-49dc-8016-fcfa2a2f3235" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -294,7 +294,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1b71212d-79e1-4ef8-bfa7-225e05c1ad3e" + "65197824-765c-4ce5-be7e-d3c1589f2480" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -303,19 +303,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "431cf114-a42e-4c4b-883c-b85dc2c3e6e9" + "ad14a94c-1948-4368-b651-27dcfd83b8c2" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214810Z:431cf114-a42e-4c4b-883c-b85dc2c3e6e9" + "WESTUS2:20221006T020014Z:ad14a94c-1948-4368-b651-27dcfd83b8c2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:48:10 GMT" + "Thu, 06 Oct 2022 02:00:14 GMT" ], "Content-Length": [ - "641" + "681" ], "Content-Type": [ "application/json; charset=utf-8" @@ -324,28 +324,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps5101.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"69590df4-8d62-4a89-afcc-89bb11bc7805\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3443/providers/Microsoft.EventGrid/domains/PSTestDomain-ps5101\",\r\n \"name\": \"PSTestDomain-ps5101\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps1638.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9b045cff-8e3c-4a14-97c5-a46bc526d0ce\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9041/providers/Microsoft.EventGrid/domains/PSTestDomain-ps1638\",\r\n \"name\": \"PSTestDomain-ps1638\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3443/providers/Microsoft.EventGrid/domains/PSTestDomain-ps5101?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczM0NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM1MTAxP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9041/providers/Microsoft.EventGrid/domains/PSTestDomain-ps1638?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczkwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHMxNjM4P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f3350038-b104-4887-aea7-aa8b5a121d3c" + "2e1e14fb-8e1c-4f10-9904-bccf4ee4f339" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -357,28 +357,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4f2fdee5-f644-4b26-9920-8a8b8a2f5842" + "9916e99f-c595-42e1-af6f-9ce0531a0b9a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-correlation-request-id": [ - "c2b9e1c9-c1cd-40b6-86de-43a913b66c67" + "34a8ca86-5f4b-4c86-a585-b5ef3779fd81" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214811Z:c2b9e1c9-c1cd-40b6-86de-43a913b66c67" + "WESTUS2:20221006T020015Z:34a8ca86-5f4b-4c86-a585-b5ef3779fd81" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:48:10 GMT" + "Thu, 06 Oct 2022 02:00:14 GMT" ], "Content-Length": [ - "641" + "681" ], "Content-Type": [ "application/json; charset=utf-8" @@ -387,26 +387,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps5101.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"69590df4-8d62-4a89-afcc-89bb11bc7805\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3443/providers/Microsoft.EventGrid/domains/PSTestDomain-ps5101\",\r\n \"name\": \"PSTestDomain-ps5101\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps1638.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9b045cff-8e3c-4a14-97c5-a46bc526d0ce\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9041/providers/Microsoft.EventGrid/domains/PSTestDomain-ps1638\",\r\n \"name\": \"PSTestDomain-ps1638\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps261/providers/Microsoft.EventGrid/domains/PSTestDomain-ps782?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL1BTVGVzdERvbWFpbi1wczc4Mj9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9622/providers/Microsoft.EventGrid/domains/PSTestDomain-ps9117?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczk2MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM5MTE3P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "16e3b430-049a-466b-8d60-d86a5dab0e6b" + "bfacc1d0-c27f-49cf-9082-279ffeea716f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -415,6 +414,7 @@ "337" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -429,31 +429,31 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/A97088DA-DAF5-4CAC-8FDD-8E38D3198100?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/FB69C1A9-25DC-4957-8FCA-5501B2707810?api-version=2022-06-15" ], "x-ms-request-id": [ - "e643e88e-4447-4733-845d-e95e65d0d3fd" + "cefceb6a-6b36-46e8-a770-77fe0ab96e1b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "e143d579-f427-4033-af98-a48521023e8c" + "76e95d24-ec99-4632-b437-84517b0f5953" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214812Z:e143d579-f427-4033-af98-a48521023e8c" + "WESTUS2:20221006T020017Z:76e95d24-ec99-4632-b437-84517b0f5953" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:48:12 GMT" + "Thu, 06 Oct 2022 02:00:16 GMT" ], "Content-Length": [ - "537" + "540" ], "Content-Type": [ "application/json; charset=utf-8" @@ -462,25 +462,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps261/providers/Microsoft.EventGrid/domains/PSTestDomain-ps782\",\r\n \"name\": \"PSTestDomain-ps782\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9622/providers/Microsoft.EventGrid/domains/PSTestDomain-ps9117\",\r\n \"name\": \"PSTestDomain-ps9117\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/A97088DA-DAF5-4CAC-8FDD-8E38D3198100?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvQTk3MDg4REEtREFGNS00Q0FDLThGREQtOEUzOEQzMTk4MTAwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/FB69C1A9-25DC-4957-8FCA-5501B2707810?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRkI2OUMxQTktMjVEQy00OTU3LThGQ0EtNTUwMUIyNzA3ODEwP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16e3b430-049a-466b-8d60-d86a5dab0e6b" + "bfacc1d0-c27f-49cf-9082-279ffeea716f" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -492,25 +492,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "219cb66b-19fd-4c28-8074-8684d842932a" + "584f3e32-3894-471a-8637-0b418235ad88" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11999" ], "x-ms-correlation-request-id": [ - "e011167b-f7e6-4a7a-8d47-bb56917384ab" + "ccb76bb7-d8eb-408a-b599-5d15c777cf31" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214822Z:e011167b-f7e6-4a7a-8d47-bb56917384ab" + "WESTUS2:20221006T020027Z:ccb76bb7-d8eb-408a-b599-5d15c777cf31" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:48:22 GMT" + "Thu, 06 Oct 2022 02:00:26 GMT" ], "Content-Length": [ "286" @@ -522,25 +522,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/A97088DA-DAF5-4CAC-8FDD-8E38D3198100?api-version=2021-12-01\",\r\n \"name\": \"a97088da-daf5-4cac-8fdd-8e38d3198100\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/FB69C1A9-25DC-4957-8FCA-5501B2707810?api-version=2022-06-15\",\r\n \"name\": \"fb69c1a9-25dc-4957-8fca-5501b2707810\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps261/providers/Microsoft.EventGrid/domains/PSTestDomain-ps782?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL1BTVGVzdERvbWFpbi1wczc4Mj9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9622/providers/Microsoft.EventGrid/domains/PSTestDomain-ps9117?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczk2MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM5MTE3P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16e3b430-049a-466b-8d60-d86a5dab0e6b" + "bfacc1d0-c27f-49cf-9082-279ffeea716f" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -552,28 +552,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8647463d-c5a0-4c7d-872a-467ceb8992ad" + "49519a49-876b-422f-9597-6cf0a27aaea5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11998" ], "x-ms-correlation-request-id": [ - "620a7704-1f0f-4808-aabc-ac459fb4f015" + "0185f04c-1830-4941-8359-02d09e56d3d2" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214822Z:620a7704-1f0f-4808-aabc-ac459fb4f015" + "WESTUS2:20221006T020027Z:0185f04c-1830-4941-8359-02d09e56d3d2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:48:22 GMT" + "Thu, 06 Oct 2022 02:00:26 GMT" ], "Content-Length": [ - "667" + "711" ], "Content-Type": [ "application/json; charset=utf-8" @@ -582,26 +582,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps782.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"45d80631-0613-4fa1-9ce6-eff9a4c4ea11\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps261/providers/Microsoft.EventGrid/domains/PSTestDomain-ps782\",\r\n \"name\": \"PSTestDomain-ps782\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps9117.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"0eb7d248-05f4-40c6-8c23-f7b890d1eac3\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9622/providers/Microsoft.EventGrid/domains/PSTestDomain-ps9117\",\r\n \"name\": \"PSTestDomain-ps9117\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps261/providers/Microsoft.EventGrid/domains/PSTestDomain-ps229?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL1BTVGVzdERvbWFpbi1wczIyOT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9622/providers/Microsoft.EventGrid/domains/PSTestDomain-ps9533?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczk2MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM5NTMzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "81925a49-32a9-42b7-a48a-64957b3d12c5" + "ffca96b0-4506-4e3c-b039-862b5b1b6d3e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -610,6 +609,7 @@ "272" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -624,31 +624,31 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/B879C404-C8C3-4425-8E84-A8C0C514ED71?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/C8BC74C4-9582-4B81-8272-464053A7907F?api-version=2022-06-15" ], "x-ms-request-id": [ - "c357679c-fb28-422e-a788-9cd094d3813d" + "3e628281-5287-4cc2-8fe0-55e20bf035f0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "222059bb-ef5b-426b-8ba1-8572734408bb" + "981f3df2-2f94-44c0-86e0-2ba4b7f9b465" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214823Z:222059bb-ef5b-426b-8ba1-8572734408bb" + "WESTUS2:20221006T020029Z:981f3df2-2f94-44c0-86e0-2ba4b7f9b465" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:48:23 GMT" + "Thu, 06 Oct 2022 02:00:28 GMT" ], "Content-Length": [ - "507" + "510" ], "Content-Type": [ "application/json; charset=utf-8" @@ -657,25 +657,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps261/providers/Microsoft.EventGrid/domains/PSTestDomain-ps229\",\r\n \"name\": \"PSTestDomain-ps229\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9622/providers/Microsoft.EventGrid/domains/PSTestDomain-ps9533\",\r\n \"name\": \"PSTestDomain-ps9533\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/B879C404-C8C3-4425-8E84-A8C0C514ED71?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvQjg3OUM0MDQtQzhDMy00NDI1LThFODQtQThDMEM1MTRFRDcxP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/C8BC74C4-9582-4B81-8272-464053A7907F?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvQzhCQzc0QzQtOTU4Mi00QjgxLTgyNzItNDY0MDUzQTc5MDdGP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "81925a49-32a9-42b7-a48a-64957b3d12c5" + "ffca96b0-4506-4e3c-b039-862b5b1b6d3e" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -687,25 +687,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e42bb513-bfc5-45ae-9ecc-e23d3a9948cb" + "fcb29fbf-270d-4e10-9216-c7aee3fc4c2f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11999" ], "x-ms-correlation-request-id": [ - "932936c0-c460-4950-b503-734a1aaa04fd" + "6076b77c-120a-43c7-8b0f-b7f87d51782f" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214833Z:932936c0-c460-4950-b503-734a1aaa04fd" + "WESTUS2:20221006T020039Z:6076b77c-120a-43c7-8b0f-b7f87d51782f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:48:33 GMT" + "Thu, 06 Oct 2022 02:00:38 GMT" ], "Content-Length": [ "286" @@ -717,25 +717,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/B879C404-C8C3-4425-8E84-A8C0C514ED71?api-version=2021-12-01\",\r\n \"name\": \"b879c404-c8c3-4425-8e84-a8c0c514ed71\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/C8BC74C4-9582-4B81-8272-464053A7907F?api-version=2022-06-15\",\r\n \"name\": \"c8bc74c4-9582-4b81-8272-464053a7907f\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps261/providers/Microsoft.EventGrid/domains/PSTestDomain-ps229?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL1BTVGVzdERvbWFpbi1wczIyOT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9622/providers/Microsoft.EventGrid/domains/PSTestDomain-ps9533?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczk2MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM5NTMzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "81925a49-32a9-42b7-a48a-64957b3d12c5" + "ffca96b0-4506-4e3c-b039-862b5b1b6d3e" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -747,28 +747,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7293a12b-9592-42c7-a801-14f1a1ac8d74" + "927f4e13-9b7e-4d27-a4b6-fc55d6fca00b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11998" ], "x-ms-correlation-request-id": [ - "b51578f0-8d06-4cab-95ae-a45cf236ab08" + "26143f02-da33-41e6-8f20-8b1f0295aef5" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214833Z:b51578f0-8d06-4cab-95ae-a45cf236ab08" + "WESTUS2:20221006T020039Z:26143f02-da33-41e6-8f20-8b1f0295aef5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:48:33 GMT" + "Thu, 06 Oct 2022 02:00:38 GMT" ], "Content-Length": [ - "637" + "681" ], "Content-Type": [ "application/json; charset=utf-8" @@ -777,28 +777,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps229.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"45b75f31-b465-47c1-8d0d-82c5ead4c115\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps261/providers/Microsoft.EventGrid/domains/PSTestDomain-ps229\",\r\n \"name\": \"PSTestDomain-ps229\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps9533.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c90e00a4-4f63-4715-9e34-440ae60caddd\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9622/providers/Microsoft.EventGrid/domains/PSTestDomain-ps9533\",\r\n \"name\": \"PSTestDomain-ps9533\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps261/providers/Microsoft.EventGrid/domains/PSTestDomain-ps229?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL1BTVGVzdERvbWFpbi1wczIyOT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9622/providers/Microsoft.EventGrid/domains/PSTestDomain-ps9533?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczk2MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM5NTMzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c804e237-fb80-4f8e-aaf9-298de337a827" + "ebdbb3cb-7f5d-404a-a91f-ed6c54e86037" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -810,28 +810,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0832f73a-d59e-4104-b9cc-6e43743ce0da" + "3f2b4272-f2f3-4103-88ec-07a5f6408e26" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11999" ], "x-ms-correlation-request-id": [ - "3dd115db-e175-4c88-b03f-0bf5d31f7ec2" + "5098327d-8593-4935-8d67-e3fb82f1abe3" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214833Z:3dd115db-e175-4c88-b03f-0bf5d31f7ec2" + "WESTUS2:20221006T020040Z:5098327d-8593-4935-8d67-e3fb82f1abe3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:48:33 GMT" + "Thu, 06 Oct 2022 02:00:39 GMT" ], "Content-Length": [ - "637" + "681" ], "Content-Type": [ "application/json; charset=utf-8" @@ -840,28 +840,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps229.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"45b75f31-b465-47c1-8d0d-82c5ead4c115\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps261/providers/Microsoft.EventGrid/domains/PSTestDomain-ps229\",\r\n \"name\": \"PSTestDomain-ps229\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps9533.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c90e00a4-4f63-4715-9e34-440ae60caddd\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9622/providers/Microsoft.EventGrid/domains/PSTestDomain-ps9533\",\r\n \"name\": \"PSTestDomain-ps9533\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps261/providers/Microsoft.EventGrid/domains?api-version=2021-12-01&$top=1", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zP2FwaS12ZXJzaW9uPTIwMjEtMTItMDEmJHRvcD0x", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9622/providers/Microsoft.EventGrid/domains?api-version=2022-06-15&$top=1", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczk2MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1JiR0b3A9MQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f061f24-d171-47bc-b497-70b95bcfe17c" + "552e3511-a2e9-443e-9686-740e23fc954c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -873,28 +873,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1c545b7a-557e-4533-b76f-48e2007b73df" + "c9efcfa3-265f-4570-afa3-ed43e65f3207" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11999" ], "x-ms-correlation-request-id": [ - "24c971b9-9e20-49c3-a10a-d7e0cbd28965" + "c23c25b2-9f9a-4091-b8dc-98a08e84ece2" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214834Z:24c971b9-9e20-49c3-a10a-d7e0cbd28965" + "WESTUS2:20221006T020040Z:c23c25b2-9f9a-4091-b8dc-98a08e84ece2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:48:33 GMT" + "Thu, 06 Oct 2022 02:00:39 GMT" ], "Content-Length": [ - "1094" + "1145" ], "Content-Type": [ "application/json; charset=utf-8" @@ -903,28 +903,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps782.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"45d80631-0613-4fa1-9ce6-eff9a4c4ea11\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps261/providers/Microsoft.EventGrid/domains/PSTestDomain-ps782\",\r\n \"name\": \"PSTestDomain-ps782\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps261/providers/Microsoft.EventGrid/domains?api-version=2021-12-01&$skiptoken=%5b%7b%22token%22%3a%22%2bRID%3a%7egx8DAKys5QcGhRgAAAAAAA%3d%3d%23RT%3a1%23TRC%3a1%23ISV%3a2%23IEO%3a65551%23FPC%3aAQaFGAAAAAAAB4UYAAAAAAA%3d%22%2c%22range%22%3a%7b%22min%22%3a%22%22%2c%22max%22%3a%22FF%22%7d%7d%5d&$top=1\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps9117.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"0eb7d248-05f4-40c6-8c23-f7b890d1eac3\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9622/providers/Microsoft.EventGrid/domains/PSTestDomain-ps9117\",\r\n \"name\": \"PSTestDomain-ps9117\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9622/providers/Microsoft.EventGrid/domains?api-version=2022-06-15&$skiptoken=%5b%7b%22token%22%3a%22%2bRID%3a%7egx8DAKys5Qd%2b%2bBsAAAAAAA%3d%3d%23RT%3a1%23TRC%3a1%23ISV%3a2%23IEO%3a65551%23QCF%3a8%23FPC%3aAgFvb28EAH64AIA%3d%22%2c%22range%22%3a%7b%22min%22%3a%22%22%2c%22max%22%3a%22FF%22%7d%7d%5d&$top=1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps261/providers/Microsoft.EventGrid/domains?api-version=2021-12-01&$skiptoken=%5b%7B%22token%22%3a%22%2bRID%3a~gx8DAKys5QcGhRgAAAAAAA%3d%3d%23RT%3a1%23TRC%3a1%23ISV%3a2%23IEO%3a65551%23FPC%3aAQaFGAAAAAAAB4UYAAAAAAA%3d%22%2c%22range%22%3a%7B%22min%22%3a%22%22%2c%22max%22%3a%22FF%22%7D%7D%5d&$top=1", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zP2FwaS12ZXJzaW9uPTIwMjEtMTItMDEmJHNraXB0b2tlbj0lNWIlN0IlMjJ0b2tlbiUyMiUzYSUyMiUyYlJJRCUzYX5neDhEQUt5czVRY0doUmdBQUFBQUFBJTNkJTNkJTIzUlQlM2ExJTIzVFJDJTNhMSUyM0lTViUzYTIlMjNJRU8lM2E2NTU1MSUyM0ZQQyUzYUFRYUZHQUFBQUFBQUI0VVlBQUFBQUFBJTNkJTIyJTJjJTIycmFuZ2UlMjIlM2ElN0IlMjJtaW4lMjIlM2ElMjIlMjIlMmMlMjJtYXglMjIlM2ElMjJGRiUyMiU3RCU3RCU1ZCYkdG9wPTE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9622/providers/Microsoft.EventGrid/domains?api-version=2022-06-15&$skiptoken=%5b%7B%22token%22%3a%22%2bRID%3a~gx8DAKys5Qd%2b%2bBsAAAAAAA%3d%3d%23RT%3a1%23TRC%3a1%23ISV%3a2%23IEO%3a65551%23QCF%3a8%23FPC%3aAgFvb28EAH64AIA%3d%22%2c%22range%22%3a%7B%22min%22%3a%22%22%2c%22max%22%3a%22FF%22%7D%7D%5d&$top=1", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczk2MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1JiRza2lwdG9rZW49JTViJTdCJTIydG9rZW4lMjIlM2ElMjIlMmJSSUQlM2F+Z3g4REFLeXM1UWQlMmIlMmJCc0FBQUFBQUElM2QlM2QlMjNSVCUzYTElMjNUUkMlM2ExJTIzSVNWJTNhMiUyM0lFTyUzYTY1NTUxJTIzUUNGJTNhOCUyM0ZQQyUzYUFnRnZiMjhFQUg2NEFJQSUzZCUyMiUyYyUyMnJhbmdlJTIyJTNhJTdCJTIybWluJTIyJTNhJTIyJTIyJTJjJTIybWF4JTIyJTNhJTIyRkYlMjIlN0QlN0QlNWQmJHRvcD0x", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "07b769fb-6e5c-4548-a567-d035492586e4" + "5ab2023e-73b6-47e1-b3ba-fa808fa4652a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -936,28 +936,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bd79445a-f7e4-46ac-b32a-4e2a02b2ed51" + "1e0f3db0-4e31-4c05-af28-b2f2f2bce292" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11999" ], "x-ms-correlation-request-id": [ - "3bcc8ab2-1a8b-4084-86d3-f375acb08735" + "f739cd95-b536-4acd-8ab1-cd68b6780fed" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214834Z:3bcc8ab2-1a8b-4084-86d3-f375acb08735" + "WESTUS2:20221006T020040Z:f739cd95-b536-4acd-8ab1-cd68b6780fed" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:48:33 GMT" + "Thu, 06 Oct 2022 02:00:40 GMT" ], "Content-Length": [ - "649" + "693" ], "Content-Type": [ "application/json; charset=utf-8" @@ -966,28 +966,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps229.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"45b75f31-b465-47c1-8d0d-82c5ead4c115\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps261/providers/Microsoft.EventGrid/domains/PSTestDomain-ps229\",\r\n \"name\": \"PSTestDomain-ps229\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps9533.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c90e00a4-4f63-4715-9e34-440ae60caddd\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9622/providers/Microsoft.EventGrid/domains/PSTestDomain-ps9533\",\r\n \"name\": \"PSTestDomain-ps9533\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/domains?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnM/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/domains?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnM/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e650bcc3-cfa6-4e18-95cb-89235119fe2d" + "9333b0ad-c276-410d-80c5-a235b4c35c82" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -996,32 +996,32 @@ "no-cache" ], "x-ms-original-request-ids": [ - "3e1c4d18-9637-4b6c-a144-21c03daa759e", - "5acf0d74-01ec-4a62-ae65-bee14db8ec5f", - "8ac54bab-b138-46fa-a4d5-9739520ee001", - "8c69a63d-41aa-4504-9672-70695b805595", - "4679f63c-d91e-4c46-93b9-0b0d9803b31b", - "6a90797b-016d-43fe-9361-555e27dfbf26", - "3c7f15cd-d672-40c5-9f85-c187f0004739", - "a32d373a-cfb3-4ca3-b2b6-cc09ef844d23", - "b92790b5-e0e5-4ce3-9230-e24b4bdd9ad4", - "0018bcc2-61c8-467f-92a7-dbf83c50544f", - "bd679cb1-02e8-404f-9774-e78918902085", - "c60a2772-00f5-4b3a-8f2a-e0217aa231eb", - "15d2fdeb-ff4b-4bed-b94c-ae541e3369dc", - "7237c79a-8b53-4f17-8f00-dc0189f4802f" + "20733e83-4a1a-47c5-8202-31a249224149", + "bd70a287-517c-4059-9ef5-d0d7ee7f2aec", + "44d75b03-7556-417a-ad45-5c900a4f23ad", + "fc55158b-f6a7-48c0-a4c8-bfd82483cd14", + "785859a6-c6df-4331-9c55-dbe04033d36c", + "1d3844a8-334a-4efa-91af-86e09ec88bc2", + "748d4009-3158-47ba-916e-0cff849a0cf7", + "fe6546c9-c231-4cf9-afd6-297dc1b02110", + "12101a17-b81f-4cb2-b5ed-b79ce37cd877", + "7b124b45-02b5-485f-bbb3-0351003401c3", + "209e81cd-adce-40d9-aeaa-de94384ed79e", + "7b67e710-5d4b-4767-9885-0b804c58ebb5", + "61838983-db28-4b33-953f-d7bb6ff417f8", + "a7ed7251-fcad-48a2-910e-39f254276501" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11999" ], "x-ms-request-id": [ - "972cf49c-ad0b-4560-8512-7f3d9f098b25" + "ce2e4e32-4bd4-4d8c-a58b-3a437a6c1c34" ], "x-ms-correlation-request-id": [ - "972cf49c-ad0b-4560-8512-7f3d9f098b25" + "ce2e4e32-4bd4-4d8c-a58b-3a437a6c1c34" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214836Z:972cf49c-ad0b-4560-8512-7f3d9f098b25" + "WESTUS2:20221006T020042Z:ce2e4e32-4bd4-4d8c-a58b-3a437a6c1c34" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1030,7 +1030,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:48:35 GMT" + "Thu, 06 Oct 2022 02:00:42 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1039,31 +1039,31 @@ "-1" ], "Content-Length": [ - "29543" + "29630" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomain3.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"8c2c8d2b-d07d-43a0-a9c7-1118cfa23fe5\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"405c34b5-6a06-4fa7-b278-84da4f864ac4\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"{tag1\": \"value1}\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomain3\",\r\n \"name\": \"testDomain3\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://kishdomain1.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f07ee48b-b4a4-40ea-ba28-5f915355af3d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/domains/kishdomain1\",\r\n \"name\": \"kishdomain1\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://ahamadeventgriddomain.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6df52b28-39cf-4077-a674-bc841fbbce07\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rg-ahamadeventgrid/providers/Microsoft.EventGrid/domains/ahamadeventgriddomain\",\r\n \"name\": \"ahamadeventgriddomain\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://diagnosticlogdomains.eastus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"69562a94-5c1e-42e8-bb7d-a04fff9363b0\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/diagnosticlogstestingtobedeleted/providers/Microsoft.EventGrid/domains/diagnosticlogdomains\",\r\n \"name\": \"diagnosticlogdomains\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomainpermission.eastus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a660ee42-0140-4bc0-8eda-6b1abdd42182\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"38fc1d76-d88e-46fb-a8ea-0427e9155a63\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomainPermission\",\r\n \"name\": \"testDomainPermission\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://msi-test.westus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b3c2ce3f-f055-4fd0-9f32-3ff45a89d474\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"6b1a416a-f09f-40f3-bc8f-3f909de0ab7f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/domains/msi-test\",\r\n \"name\": \"msi-test\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://brandonneff-domain.eastus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"4492d446-3b13-4515-9751-25fcfb32d74f\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/brandonneff-eastus2-dest/providers/Microsoft.EventGrid/domains/brandonneff-domain\",\r\n \"name\": \"brandonneff-domain\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://clifxbhdae2ghiqajm6tewxzoei6csmkc4wfxdol.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"85756ce7-823c-42bb-b79c-f4444783062f\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f/providers/Microsoft.EventGrid/domains/clifxbhdae2ghiqajm6tewxzoei6csmkc4wfxdol\",\r\n \"name\": \"clifxbhdae2ghiqajm6tewxzoei6csmkc4wfxdol\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://clifq6nvajq6b2rumcwewnjdceisqw3vuqeevgzs.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventV01Schema\",\r\n \"metricResourceId\": \"862a3be0-1042-4ea5-9578-b30dfec763a6\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f/providers/Microsoft.EventGrid/domains/clifq6nvajq6b2rumcwewnjdceisqw3vuqeevgzs\",\r\n \"name\": \"clifq6nvajq6b2rumcwewnjdceisqw3vuqeevgzs\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://clilg2sh5dyeu5fgwchw4lpng74am4roxajyj7wg.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": null\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopic\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": null\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"myEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": \"DefaultSubject\"\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": \"1.0\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"b5929ed6-3101-4eaf-b925-819df5ef79d9\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f/providers/Microsoft.EventGrid/domains/clilg2sh5dyeu5fgwchw4lpng74am4roxajyj7wg\",\r\n \"name\": \"clilg2sh5dyeu5fgwchw4lpng74am4roxajyj7wg\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps1490.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"7d59062a-4474-4f55-aaaa-2f2ad857be51\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9640/providers/Microsoft.EventGrid/domains/PSTestDomain-ps1490\",\r\n \"name\": \"PSTestDomain-ps1490\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps7903.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"2a8d38e9-55c4-4a7d-ab01-fefbe6805269\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7005/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7903\",\r\n \"name\": \"PSTestDomain-ps7903\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps4146.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9f1b2881-08a5-4398-8d20-b4acaa7e5ba1\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1831/providers/Microsoft.EventGrid/domains/PSTestDomain-ps4146\",\r\n \"name\": \"PSTestDomain-ps4146\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps5101.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"69590df4-8d62-4a89-afcc-89bb11bc7805\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3443/providers/Microsoft.EventGrid/domains/PSTestDomain-ps5101\",\r\n \"name\": \"PSTestDomain-ps5101\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps782.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"45d80631-0613-4fa1-9ce6-eff9a4c4ea11\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps261/providers/Microsoft.EventGrid/domains/PSTestDomain-ps782\",\r\n \"name\": \"PSTestDomain-ps782\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps229.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"45b75f31-b465-47c1-8d0d-82c5ead4c115\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps261/providers/Microsoft.EventGrid/domains/PSTestDomain-ps229\",\r\n \"name\": \"PSTestDomain-ps229\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomainauce.australiacentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"88a48d35-21d8-4bf2-b263-d61dd3124961\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"australiacentral\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete/providers/Microsoft.EventGrid/domains/testdomainauce\",\r\n \"name\": \"testdomainauce\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://kishpdomain.southcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": null\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"data.one\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": null\r\n },\r\n \"eventType\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"10285d19-90e1-44e0-9489-20f008ebb278\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testRg1/providers/Microsoft.EventGrid/domains/kishpdomain\",\r\n \"name\": \"kishpdomain\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomaincentralindia.centralindia-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1f4604eb-3f56-4df4-acd1-16188510dd5a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralindia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted/providers/Microsoft.EventGrid/domains/testdomaincentralindia\",\r\n \"name\": \"testdomaincentralindia\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://domainjiowest.jioindiawest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c01c0189-6b01-4f80-b61f-6a9925bca45d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"jio india west\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/jioRg/providers/Microsoft.EventGrid/domains/domainjiowest\",\r\n \"name\": \"domainjiowest\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://domainjiocentral.jioindiacentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"8681adf1-b9a1-444e-9178-c2e735820030\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"jio india central\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/jioRg/providers/Microsoft.EventGrid/domains/domainjiocentral\",\r\n \"name\": \"domainjiocentral\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://domainswedencentral.swedencentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a9a15f3c-6580-4897-b48b-bf65612e42cf\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"sweden central\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/domains/domainswedencentral\",\r\n \"name\": \"domainswedencentral\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomaindup5.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b589ef01-2ca8-41c9-aa80-4bb99a938ea2\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomainDup5\",\r\n \"name\": \"testDomainDup5\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testcheckaccessdom.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"305420be-db54-4a4d-81bb-c7ac9dfc73c0\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"2863103f-0051-4efc-816e-dce2279932bb\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/domains/testcheckaccessdom\",\r\n \"name\": \"testcheckaccessdom\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-7615.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"423bef80-a31f-48bc-ab3d-4638d4934da3\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3411/providers/Microsoft.EventGrid/domains/sdk-Domain-7615\",\r\n \"name\": \"sdk-Domain-7615\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-8144.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"513972e7-51cf-4602-a7ef-033ca2ad838c\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8555/providers/Microsoft.EventGrid/domains/sdk-Domain-8144\",\r\n \"name\": \"sdk-Domain-8144\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-1520.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"3caa1c7c-4c40-4254-874e-5d76d7c9fa76\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3963/providers/Microsoft.EventGrid/domains/sdk-Domain-1520\",\r\n \"name\": \"sdk-Domain-1520\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-2066.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"01c819bf-353c-4096-a9f1-9ae2adff2a53\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2143/providers/Microsoft.EventGrid/domains/sdk-Domain-2066\",\r\n \"name\": \"sdk-Domain-2066\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-8257.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"efdaca7e-0da7-471d-8ace-026019de1ee5\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1261/providers/Microsoft.EventGrid/domains/sdk-Domain-8257\",\r\n \"name\": \"sdk-Domain-8257\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-2688.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ce049360-c956-46c9-8548-11de7b85f121\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-173/providers/Microsoft.EventGrid/domains/sdk-Domain-2688\",\r\n \"name\": \"sdk-Domain-2688\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://ce10domain.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": null\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"mytopicfield\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": null\r\n },\r\n \"eventType\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"c3ebca20-e118-46df-aef5-c591767240aa\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest/providers/Microsoft.EventGrid/domains/ce10domain\",\r\n \"name\": \"ce10domain\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-7896.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b6a2534a-1a66-4177-91a8-4583e4079d9f\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"12.35.67.98\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"12.35.90.100\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"updatedTag1\": \"updatedValue1\",\r\n \"updatedTag2\": \"updatedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2523/providers/Microsoft.EventGrid/domains/sdk-Domain-7896\",\r\n \"name\": \"sdk-Domain-7896\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-7215.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"dc4c3538-8b69-48b6-9a5f-a1453f43712a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2994/providers/Microsoft.EventGrid/domains/sdk-Domain-7215\",\r\n \"name\": \"sdk-Domain-7215\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://domain1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"14ffafe0-0af7-4d95-b2ee-53a13b81b3c0\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"k1\": \"v1\",\r\n \"k2\": \"v2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/domain1\",\r\n \"name\": \"domain1\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomaindup3.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"72674d38-323b-46b4-8ecc-2e8796c13440\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomainDup3\",\r\n \"name\": \"testDomainDup3\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomain1iprules.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"49e25f59-2b16-4c05-96b1-353ff4011aac\",\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.0.0.0/2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.70/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"cb40d9ec-0525-4c6b-9932-90af6d969ea5\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomain1IpRules\",\r\n \"name\": \"testDomain1IpRules\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomain1iprules3.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b883639b-4292-4e41-9652-8657d390528e\",\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"101.0.0.90/2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"101.0.0.70/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"43334277-98f7-4892-bba5-1b7ec2766660\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomain1IpRules3\",\r\n \"name\": \"testDomain1IpRules3\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomain1iprules4.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a3edc98f-ccda-4940-8a35-f1da15147cbb\",\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"19.12.43.90/20\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"19.12.43.70/23\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"ecea7475-58f7-44c1-9ab3-4993b5983568\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomain1IpRules4\",\r\n \"name\": \"testDomain1IpRules4\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-2228.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"67cd1def-742c-41f8-990f-c4bf54b938f6\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"updatedTag1\": \"updatedValue1\",\r\n \"updatedTag2\": \"updatedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8035/providers/Microsoft.EventGrid/domains/sdk-Domain-2228\",\r\n \"name\": \"sdk-Domain-2228\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-193.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"4b2096f9-bb04-4d1e-a57c-17fbea082205\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3772/providers/Microsoft.EventGrid/domains/sdk-Domain-193\",\r\n \"name\": \"sdk-Domain-193\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-9579.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"3fd59050-783d-4ba4-a750-e5d2d6610b6e\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5717/providers/Microsoft.EventGrid/domains/sdk-Domain-9579\",\r\n \"name\": \"sdk-Domain-9579\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomain12321.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"2a0e71c0-190a-4d2d-81d2-802b458a982b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomain12321\",\r\n \"name\": \"testDomain12321\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomainipfiltering1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1cdb87a6-c89b-4f4f-adf1-47f718d8b00e\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomainIpFiltering1\",\r\n \"name\": \"testDomainIpFiltering1\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomainipfiltering10.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ac61c0dd-8983-491c-9cb0-5f4d1609197b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomainIpFiltering10\",\r\n \"name\": \"testDomainIpFiltering10\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://domainswedensouth.swedensouth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"3ac3feaf-dd87-4630-8fbf-bf0dcaefc1c6\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"sweden south\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/domains/domainswedensouth\",\r\n \"name\": \"domainswedensouth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/domains?api-version=2021-12-01&%24skiptoken=TZBtT8IwEMe%2fy8J4NzY6xoCEmAqbTnkaT8aX7VpnwbVLW5BI%2bO62iMbmcv318s%2f%2f7np2OD3pCeN75QzOziiZrZdwslklG7hwBs671rUa%2bH6FOCppRbluoa%2bDpK1CVL46YFVIVmsmuPIj3MHdKKAe6OG%2b14n7gYdDhD1CMOn1SAziouPXUhwZoVL5U1ZIocSbbiVHY%2fsgGfGJqBDj6g7VzDsakfEdggC0vTbwgnazofammdhTPnQj7MbYBeD6NLcbIpsBXmZjyzFd6ZTCqdyBPIkULODPcUNiA4TLtZG1DayXI0MgMJitthYtJXND3SiKrCRdWAksE%2fpy6iRwnHxC%2bKpgef8od%2fsRTKvZvMxhKtJu%2bZGPYPacbfMM4ieCYTnWKv9tapwLM6VEvKS3ma9LVIz%2fW%2bGmqtDpr5imFmNiIyLNhha1%2bRjncvkG\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomain3.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"8c2c8d2b-d07d-43a0-a9c7-1118cfa23fe5\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"405c34b5-6a06-4fa7-b278-84da4f864ac4\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"{tag1\": \"value1}\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomain3\",\r\n \"name\": \"testDomain3\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://kishdomain1.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f07ee48b-b4a4-40ea-ba28-5f915355af3d\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/domains/kishdomain1\",\r\n \"name\": \"kishdomain1\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://ahamadeventgriddomain.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6df52b28-39cf-4077-a674-bc841fbbce07\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rg-ahamadeventgrid/providers/Microsoft.EventGrid/domains/ahamadeventgriddomain\",\r\n \"name\": \"ahamadeventgriddomain\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://diagnosticlogdomains.eastus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"69562a94-5c1e-42e8-bb7d-a04fff9363b0\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/diagnosticlogstestingtobedeleted/providers/Microsoft.EventGrid/domains/diagnosticlogdomains\",\r\n \"name\": \"diagnosticlogdomains\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomainpermission.eastus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a660ee42-0140-4bc0-8eda-6b1abdd42182\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"38fc1d76-d88e-46fb-a8ea-0427e9155a63\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomainPermission\",\r\n \"name\": \"testDomainPermission\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://msi-test.westus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b3c2ce3f-f055-4fd0-9f32-3ff45a89d474\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"6b1a416a-f09f-40f3-bc8f-3f909de0ab7f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/domains/msi-test\",\r\n \"name\": \"msi-test\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://bneff-domain.westus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1014a7db-682c-44b2-9e78-6cdb4da6a959\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [],\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/brandonneff/providers/Microsoft.EventGrid/domains/bneff-domain\",\r\n \"name\": \"bneff-domain\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://brandonneff-domain.eastus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"4492d446-3b13-4515-9751-25fcfb32d74f\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/brandonneff-eastus2-dest/providers/Microsoft.EventGrid/domains/brandonneff-domain\",\r\n \"name\": \"brandonneff-domain\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps1490.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"7d59062a-4474-4f55-aaaa-2f2ad857be51\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9640/providers/Microsoft.EventGrid/domains/PSTestDomain-ps1490\",\r\n \"name\": \"PSTestDomain-ps1490\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps7903.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"2a8d38e9-55c4-4a7d-ab01-fefbe6805269\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7005/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7903\",\r\n \"name\": \"PSTestDomain-ps7903\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps4146.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9f1b2881-08a5-4398-8d20-b4acaa7e5ba1\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1831/providers/Microsoft.EventGrid/domains/PSTestDomain-ps4146\",\r\n \"name\": \"PSTestDomain-ps4146\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps1638.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9b045cff-8e3c-4a14-97c5-a46bc526d0ce\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9041/providers/Microsoft.EventGrid/domains/PSTestDomain-ps1638\",\r\n \"name\": \"PSTestDomain-ps1638\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps9117.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"0eb7d248-05f4-40c6-8c23-f7b890d1eac3\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9622/providers/Microsoft.EventGrid/domains/PSTestDomain-ps9117\",\r\n \"name\": \"PSTestDomain-ps9117\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps9533.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c90e00a4-4f63-4715-9e34-440ae60caddd\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9622/providers/Microsoft.EventGrid/domains/PSTestDomain-ps9533\",\r\n \"name\": \"PSTestDomain-ps9533\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomainauce.australiacentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"88a48d35-21d8-4bf2-b263-d61dd3124961\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"australiacentral\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete/providers/Microsoft.EventGrid/domains/testdomainauce\",\r\n \"name\": \"testdomainauce\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://kishpdomain.southcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": null\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"data.one\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": null\r\n },\r\n \"eventType\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"10285d19-90e1-44e0-9489-20f008ebb278\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testRg1/providers/Microsoft.EventGrid/domains/kishpdomain\",\r\n \"name\": \"kishpdomain\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomaincentralindia.centralindia-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1f4604eb-3f56-4df4-acd1-16188510dd5a\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralindia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted/providers/Microsoft.EventGrid/domains/testdomaincentralindia\",\r\n \"name\": \"testdomaincentralindia\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://domainjiowest.jioindiawest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c01c0189-6b01-4f80-b61f-6a9925bca45d\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"jio india west\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/jioRg/providers/Microsoft.EventGrid/domains/domainjiowest\",\r\n \"name\": \"domainjiowest\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://domainjiocentral.jioindiacentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"8681adf1-b9a1-444e-9178-c2e735820030\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"jio india central\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/jioRg/providers/Microsoft.EventGrid/domains/domainjiocentral\",\r\n \"name\": \"domainjiocentral\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://domainswedencentral.swedencentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a9a15f3c-6580-4897-b48b-bf65612e42cf\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"sweden central\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/domains/domainswedencentral\",\r\n \"name\": \"domainswedencentral\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomaindup5.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b589ef01-2ca8-41c9-aa80-4bb99a938ea2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomainDup5\",\r\n \"name\": \"testDomainDup5\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testcheckaccessdom.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"305420be-db54-4a4d-81bb-c7ac9dfc73c0\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"2863103f-0051-4efc-816e-dce2279932bb\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/domains/testcheckaccessdom\",\r\n \"name\": \"testcheckaccessdom\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-7615.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"423bef80-a31f-48bc-ab3d-4638d4934da3\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3411/providers/Microsoft.EventGrid/domains/sdk-Domain-7615\",\r\n \"name\": \"sdk-Domain-7615\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-8144.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"513972e7-51cf-4602-a7ef-033ca2ad838c\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8555/providers/Microsoft.EventGrid/domains/sdk-Domain-8144\",\r\n \"name\": \"sdk-Domain-8144\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-1520.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"3caa1c7c-4c40-4254-874e-5d76d7c9fa76\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3963/providers/Microsoft.EventGrid/domains/sdk-Domain-1520\",\r\n \"name\": \"sdk-Domain-1520\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-2066.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"01c819bf-353c-4096-a9f1-9ae2adff2a53\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2143/providers/Microsoft.EventGrid/domains/sdk-Domain-2066\",\r\n \"name\": \"sdk-Domain-2066\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-8257.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"efdaca7e-0da7-471d-8ace-026019de1ee5\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1261/providers/Microsoft.EventGrid/domains/sdk-Domain-8257\",\r\n \"name\": \"sdk-Domain-8257\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-2688.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ce049360-c956-46c9-8548-11de7b85f121\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-173/providers/Microsoft.EventGrid/domains/sdk-Domain-2688\",\r\n \"name\": \"sdk-Domain-2688\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://ce10domain.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": null\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"mytopicfield\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": null\r\n },\r\n \"eventType\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"c3ebca20-e118-46df-aef5-c591767240aa\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest/providers/Microsoft.EventGrid/domains/ce10domain\",\r\n \"name\": \"ce10domain\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-7896.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b6a2534a-1a66-4177-91a8-4583e4079d9f\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"12.35.67.98\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"12.35.90.100\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"updatedTag1\": \"updatedValue1\",\r\n \"updatedTag2\": \"updatedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2523/providers/Microsoft.EventGrid/domains/sdk-Domain-7896\",\r\n \"name\": \"sdk-Domain-7896\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-7215.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"dc4c3538-8b69-48b6-9a5f-a1453f43712a\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2994/providers/Microsoft.EventGrid/domains/sdk-Domain-7215\",\r\n \"name\": \"sdk-Domain-7215\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://domain1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"14ffafe0-0af7-4d95-b2ee-53a13b81b3c0\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"k1\": \"v1\",\r\n \"k2\": \"v2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/domain1\",\r\n \"name\": \"domain1\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomaindup3.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"72674d38-323b-46b4-8ecc-2e8796c13440\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomainDup3\",\r\n \"name\": \"testDomainDup3\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomain1iprules.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"49e25f59-2b16-4c05-96b1-353ff4011aac\",\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.0.0.0/2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.70/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"cb40d9ec-0525-4c6b-9932-90af6d969ea5\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomain1IpRules\",\r\n \"name\": \"testDomain1IpRules\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomain1iprules3.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b883639b-4292-4e41-9652-8657d390528e\",\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"101.0.0.90/2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"101.0.0.70/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"43334277-98f7-4892-bba5-1b7ec2766660\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomain1IpRules3\",\r\n \"name\": \"testDomain1IpRules3\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomain1iprules4.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a3edc98f-ccda-4940-8a35-f1da15147cbb\",\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"19.12.43.90/20\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"19.12.43.70/23\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"ecea7475-58f7-44c1-9ab3-4993b5983568\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomain1IpRules4\",\r\n \"name\": \"testDomain1IpRules4\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-2228.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"67cd1def-742c-41f8-990f-c4bf54b938f6\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"updatedTag1\": \"updatedValue1\",\r\n \"updatedTag2\": \"updatedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8035/providers/Microsoft.EventGrid/domains/sdk-Domain-2228\",\r\n \"name\": \"sdk-Domain-2228\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-193.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"4b2096f9-bb04-4d1e-a57c-17fbea082205\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3772/providers/Microsoft.EventGrid/domains/sdk-Domain-193\",\r\n \"name\": \"sdk-Domain-193\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-9579.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"3fd59050-783d-4ba4-a750-e5d2d6610b6e\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5717/providers/Microsoft.EventGrid/domains/sdk-Domain-9579\",\r\n \"name\": \"sdk-Domain-9579\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomain12321.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"2a0e71c0-190a-4d2d-81d2-802b458a982b\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomain12321\",\r\n \"name\": \"testDomain12321\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomainipfiltering1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1cdb87a6-c89b-4f4f-adf1-47f718d8b00e\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomainIpFiltering1\",\r\n \"name\": \"testDomainIpFiltering1\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomainipfiltering10.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ac61c0dd-8983-491c-9cb0-5f4d1609197b\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomainIpFiltering10\",\r\n \"name\": \"testDomainIpFiltering10\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://domainswedensouth.swedensouth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"3ac3feaf-dd87-4630-8fbf-bf0dcaefc1c6\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"sweden south\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/domains/domainswedensouth\",\r\n \"name\": \"domainswedensouth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/domains?api-version=2022-06-15&%24skiptoken=TZFtT9swEMe%2fS0R4RZrg1k2phKYjdbYMCiQtaLy0Y2NMFzuyTYeG%2bO6zO4SwTvbvTn%2fdk98SLV79ldI7lyzfkopcbzu4utuQO7hNlsmT96Nb5vlANZViENpP6N8XKya9GXL3wlxv1eiV0S7HbMbmuBAZWrCzbFaeFRmbUpZxzvhiwUtU9rN8tGavuLAuX6veGmce%2fYTsQ9rvVvGcm4Eq7b7RUWX7IAp5z1GBUFbMs1N8fOR2oZjZCX2eYpaWLEXo4IY3ndJ4I9Y1q8il2PhawNo%2bo5ZgBz38P%2bmUR0PTbhtkpwG2XRUIFQGbzX3ESOQm0BxjHCVtVQdvEai%2bjWKQRPRPMwIr8gfgwYG8%2bGGfdxXUw%2fWNbKE29Vz%2bbitoLpv7tgH2kzOQK%2b9%2bNQRqsg%2bhQxOhUh%2b6tlRL8THDYahB6S8jfagG%2bvoZrOuIJY%2bG%2bfGRN2NYVPJ%2bklA7gJRWSOoF38ZdhV%2bEbp28%2fwM%3d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/domains?api-version=2021-12-01&%24skiptoken=TZBtT8IwEMe%2fy8J4NzY6xoCEmAqbTnkaT8aX7VpnwbVLW5BI%2bO62iMbmcv318s%2f%2f7np2OD3pCeN75QzOziiZrZdwslklG7hwBs671rUa%2bH6FOCppRbluoa%2bDpK1CVL46YFVIVmsmuPIj3MHdKKAe6OG%2b14n7gYdDhD1CMOn1SAziouPXUhwZoVL5U1ZIocSbbiVHY%2fsgGfGJqBDj6g7VzDsakfEdggC0vTbwgnazofammdhTPnQj7MbYBeD6NLcbIpsBXmZjyzFd6ZTCqdyBPIkULODPcUNiA4TLtZG1DayXI0MgMJitthYtJXND3SiKrCRdWAksE%2fpy6iRwnHxC%2bKpgef8od%2fsRTKvZvMxhKtJu%2bZGPYPacbfMM4ieCYTnWKv9tapwLM6VEvKS3ma9LVIz%2fW%2bGmqtDpr5imFmNiIyLNhha1%2bRjncvkG", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnM/YXBpLXZlcnNpb249MjAyMS0xMi0wMSYlMjRza2lwdG9rZW49VFpCdFQ4SXdFTWUlMmZ5OEo0TnpZNnhvQ0VtQXFiVG5rYVQ4YVg3VnBud2JWTFc1QkklMmJPNjJpTWJtY3YzMThzJTJmJTJmN25wMk9EM3BDZU43NVF6T3ppaVpyWmR3c2xrbEc3aHdCczY3MXJVYSUyYkg2Rk9DcHBSYmx1b2ElMmJEcEsxQ1ZMNDZZRlZJVm1zbXVQSWozTUhkS0tBZTZPRyUyYjE0bjdnWWREaEQxQ01PbjFTQXppb3VQWFVod1pvVkw1VTFaSW9jU2JiaVZIWSUyZnNnR2ZHSnFCRGo2ZzdWekRzYWtmRWRnZ0MwdlRid2duYXpvZmFtbWRoVFBuUWo3TWJZQmVENk5MY2JJcHNCWG1aanl6RmQ2WlRDcWR5QlBJa1VMT0RQY1VOaUE0VEx0WkcxRGF5WEkwTWdNSml0dGhZdEpYTkQzU2lLckNSZFdBa3NFJTJmcHk2aVJ3bkh4QyUyYktwZ2VmOG9kJTJmc1JUS3Zadk14aEt0SnUlMmJaR1BZUGFjYmZNTTRpZUNZVG5XS3Y5dGFwd0xNNlZFdktTM21hOUxWSXolMmZXJTJiR21xdERwcjVpbUZtTmlJeUxOaGhhMSUyYlJqbmN2a0c=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/domains?api-version=2022-06-15&%24skiptoken=TZFtT9swEMe%2fS0R4RZrg1k2phKYjdbYMCiQtaLy0Y2NMFzuyTYeG%2bO6zO4SwTvbvTn%2fdk98SLV79ldI7lyzfkopcbzu4utuQO7hNlsmT96Nb5vlANZViENpP6N8XKya9GXL3wlxv1eiV0S7HbMbmuBAZWrCzbFaeFRmbUpZxzvhiwUtU9rN8tGavuLAuX6veGmce%2fYTsQ9rvVvGcm4Eq7b7RUWX7IAp5z1GBUFbMs1N8fOR2oZjZCX2eYpaWLEXo4IY3ndJ4I9Y1q8il2PhawNo%2bo5ZgBz38P%2bmUR0PTbhtkpwG2XRUIFQGbzX3ESOQm0BxjHCVtVQdvEai%2bjWKQRPRPMwIr8gfgwYG8%2bGGfdxXUw%2fWNbKE29Vz%2bbitoLpv7tgH2kzOQK%2b9%2bNQRqsg%2bhQxOhUh%2b6tlRL8THDYahB6S8jfagG%2bvoZrOuIJY%2bG%2bfGRN2NYVPJ%2bklA7gJRWSOoF38ZdhV%2bEbp28%2fwM%3d", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnM/YXBpLXZlcnNpb249MjAyMi0wNi0xNSYlMjRza2lwdG9rZW49VFpGdFQ5c3dFTWUlMmZTMFI0UlpyZzFrMnBoS1lqZGJZTUNpUXRhTHkwWTJOTUZ6dXlUWWVHJTJiTzZ6TzRTd1R2YnZUbiUyZmRrOThTTFY3OWxkSTdseXpma29wY2J6dTR1dHVRTzdoTmxzbVQ5Nk5iNXZsQU5aVmlFTnBQNk44WEt5YTlHWEwzd2x4djFlaVYwUzdIYk1ibXVCQVpXckN6YkZhZUZSbWJVcFp4enZoaXdVdFU5ck44dEdhdnVMQXVYNnZlR21jZSUyZllUc1E5cnZWdkdjbTRFcTdiN1JVV1g3SUFwNXoxR0JVRmJNczFOOGZPUjJvWmpaQ1gyZVlwYVdMRVhvNElZM25kSjRJOVkxcThpbDJQaGF3Tm8lMmJvNVpnQnozOFAlMmJtVVIwUFRiaHRrcHdHMlhSVUlGUUdielgzRVNPUW0wQnhqSENWdFZRZHZFYWklMmJqV0tRUlBSUE13SXI4Z2Znd1lHOCUyYkdHZmR4WFV3JTJmV05iS0UyOVZ6JTJiYml0b0xwdjd0Z0gya3pPUUslMmI5JTJiTlFScXNnJTJiaFF4T2hVaCUyYjZ0bFJMOFRIRFlhaEI2UzhqZmFnRyUyYnZvWnJPdUlKWSUyYkclMmJmR1JOMk5ZVlBKJTJia2xBN2dKUldTT29GMzhaZGhWJTJiRWJwMjglMmZ3TSUzZA==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e650bcc3-cfa6-4e18-95cb-89235119fe2d" + "9333b0ad-c276-410d-80c5-a235b4c35c82" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1072,19 +1072,19 @@ "no-cache" ], "x-ms-original-request-ids": [ - "83568479-0b7c-4572-ad38-a142d2468308" + "fff50761-c27a-4ed2-ad63-0abe99453d6c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11998" ], "x-ms-request-id": [ - "0cc2e642-2cbd-442c-9217-d9f94bdfb265" + "25fe7747-0e03-40e6-bd86-44fec96fc410" ], "x-ms-correlation-request-id": [ - "0cc2e642-2cbd-442c-9217-d9f94bdfb265" + "25fe7747-0e03-40e6-bd86-44fec96fc410" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214836Z:0cc2e642-2cbd-442c-9217-d9f94bdfb265" + "WESTUS2:20221006T020042Z:25fe7747-0e03-40e6-bd86-44fec96fc410" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1093,7 +1093,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:48:35 GMT" + "Thu, 06 Oct 2022 02:00:42 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1102,31 +1102,31 @@ "-1" ], "Content-Length": [ - "6016" + "7518" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomainipfiltering11.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"52a3c764-c754-4f28-8e1b-6eddf99638ff\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomainIpFiltering11\",\r\n \"name\": \"testDomainIpFiltering11\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://msidomaintest.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"21579cac-a347-4dc1-8bcf-0fb418d214d4\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"40875041-7116-4b7c-b202-2de3912febe7\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msidomain/providers/Microsoft.EventGrid/domains/msidomaintest\",\r\n \"name\": \"msidomaintest\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://userdomain4.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ae43ae9e-3ea0-4e79-bcc3-c2f48360145b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/userassignedmsitest1\": {\r\n \"principalId\": \"a2f990d8-2f0b-4266-a334-c57cf3bb51b7\",\r\n \"clientId\": \"4b0f3242-b99d-4632-87ae-939e9754ae24\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/domains/userdomain4\",\r\n \"name\": \"userdomain4\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-3934.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"41bf6223-259d-4774-a67f-0fe82524a1fa\",\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"12.35.67.98\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"12.35.90.100\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5120/providers/Microsoft.EventGrid/domains/sdk-Domain-3934\",\r\n \"name\": \"sdk-Domain-3934\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testinbounddomain1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6b5d5acc-4137-444c-809a-fb3a96326c16\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.0.0.0/24\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testInBoundDomain1\",\r\n \"name\": \"testInBoundDomain1\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-2748.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"7ce45cba-2cdc-47c2-b860-99ea148c6a27\",\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"12.35.67.98\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"12.35.90.100\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4588/providers/Microsoft.EventGrid/domains/sdk-Domain-2748\",\r\n \"name\": \"sdk-Domain-2748\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomain.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"0636fe1f-a4f7-4222-b5cc-2b728552e5ed\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"d10c4de7-b717-47c5-9b72-2983f9d93eca\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/domains/testdomain\",\r\n \"name\": \"testdomain\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-4207.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"5f0dcd3c-59ed-4eb6-ace0-8270014c1a0f\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8612/providers/Microsoft.EventGrid/domains/sdk-Domain-4207\",\r\n \"name\": \"sdk-Domain-4207\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomainipfiltering11.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"52a3c764-c754-4f28-8e1b-6eddf99638ff\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomainIpFiltering11\",\r\n \"name\": \"testDomainIpFiltering11\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://msidomaintest.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"21579cac-a347-4dc1-8bcf-0fb418d214d4\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"40875041-7116-4b7c-b202-2de3912febe7\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msidomain/providers/Microsoft.EventGrid/domains/msidomaintest\",\r\n \"name\": \"msidomaintest\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://userdomain4.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ae43ae9e-3ea0-4e79-bcc3-c2f48360145b\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/userassignedmsitest1\": {\r\n \"principalId\": \"a2f990d8-2f0b-4266-a334-c57cf3bb51b7\",\r\n \"clientId\": \"4b0f3242-b99d-4632-87ae-939e9754ae24\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/domains/userdomain4\",\r\n \"name\": \"userdomain4\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-3934.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"41bf6223-259d-4774-a67f-0fe82524a1fa\",\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"12.35.67.98\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"12.35.90.100\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5120/providers/Microsoft.EventGrid/domains/sdk-Domain-3934\",\r\n \"name\": \"sdk-Domain-3934\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testinbounddomain1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6b5d5acc-4137-444c-809a-fb3a96326c16\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.0.0.0/24\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testInBoundDomain1\",\r\n \"name\": \"testInBoundDomain1\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-2748.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"7ce45cba-2cdc-47c2-b860-99ea148c6a27\",\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"12.35.67.98\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"12.35.90.100\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4588/providers/Microsoft.EventGrid/domains/sdk-Domain-2748\",\r\n \"name\": \"sdk-Domain-2748\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomain.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"0636fe1f-a4f7-4222-b5cc-2b728552e5ed\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"d10c4de7-b717-47c5-9b72-2983f9d93eca\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/domains/testdomain\",\r\n \"name\": \"testdomain\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-4207.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"5f0dcd3c-59ed-4eb6-ace0-8270014c1a0f\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8612/providers/Microsoft.EventGrid/domains/sdk-Domain-4207\",\r\n \"name\": \"sdk-Domain-4207\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-2169.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d3512874-d22d-4aad-85c8-f60c1fafac43\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-841/providers/Microsoft.EventGrid/domains/sdk-Domain-2169\",\r\n \"name\": \"sdk-Domain-2169\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-414.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d742fe4e-c180-4f53-80c7-924e875593fe\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1327/providers/Microsoft.EventGrid/domains/sdk-Domain-414\",\r\n \"name\": \"sdk-Domain-414\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/domains?api-version=2021-12-01&$top=1", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnM/YXBpLXZlcnNpb249MjAyMS0xMi0wMSYkdG9wPTE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/domains?api-version=2022-06-15&$top=1", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnM/YXBpLXZlcnNpb249MjAyMi0wNi0xNSYkdG9wPTE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69971f9a-808a-4de7-be62-aed9206f05a4" + "fb71524d-918b-4159-bfc8-784dd380f35d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1135,32 +1135,32 @@ "no-cache" ], "x-ms-original-request-ids": [ - "4aa5c147-f296-4ab7-a781-b6eef9e624e2", - "7d91cd44-233a-427a-bf2e-110ae55092ff", - "fbfc7e0b-52d3-49d6-bc45-5d06547b18cd", - "a2b0450e-d35d-4fdc-8ce6-ef71be02d409", - "e9aaae47-3021-41ed-a171-096456838efb", - "b968f531-0eab-484a-9a19-deb411dfbbc4", - "23330450-775d-4811-912b-2a66b00c1908", - "c0e6cda0-8d29-4595-8b49-0f66abc124a3", - "e8587ada-b759-4c20-a90c-f32334b2789a", - "d61a0365-1236-4b0c-afbe-e275eef0ddde", - "83f1e83d-dbf6-41af-8888-6a61746f84be", - "4876113f-1010-4eb5-ae10-47c1133faa57", - "9008f238-5e5a-4c40-bbc8-0216fcfcaed7", - "96cefde4-aa2b-4eb4-98a6-17324f5848a9" + "5b5a250c-c602-4978-89f9-dc55cd8c169f", + "5fcc70c8-a4a0-4325-ad6c-70f3ccbc2f7d", + "b74b72eb-cfbf-4a96-8f8d-a971bb698219", + "cbaf77b7-4c1f-49f1-9172-0ec7bb4532f2", + "ffb9f94f-3a43-4007-b595-37a2e3971aa2", + "cd8e33ce-cc7f-4bde-9c56-7a74292c861a", + "b7ebeb90-ad53-4509-a135-086ddc4972d3", + "abc9e913-9d9a-4f51-ae83-b9dc7b57ab29", + "d2371403-c166-4d9a-8e66-991e850dfdf1", + "17678fbd-9478-4798-971e-a694be6934f9", + "0d71e709-f7f8-4c5b-97bd-b0b2558ae9a2", + "a2f7ef2d-91b6-4fa5-958a-0dde2061ac62", + "a5ae024b-1d09-4898-a82e-837749a27776", + "2bf7c1a0-15cd-49b6-bf87-885f92c54c65" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11999" ], "x-ms-request-id": [ - "6448eef0-ea9d-4af3-9242-6c05cd993dbc" + "a1c0ec85-cbe0-411f-9319-31ee97961ab7" ], "x-ms-correlation-request-id": [ - "6448eef0-ea9d-4af3-9242-6c05cd993dbc" + "a1c0ec85-cbe0-411f-9319-31ee97961ab7" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214836Z:6448eef0-ea9d-4af3-9242-6c05cd993dbc" + "WESTUS2:20221006T020044Z:a1c0ec85-cbe0-411f-9319-31ee97961ab7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1169,7 +1169,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:48:36 GMT" + "Thu, 06 Oct 2022 02:00:43 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1178,31 +1178,31 @@ "-1" ], "Content-Length": [ - "9387" + "10007" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomain3.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"8c2c8d2b-d07d-43a0-a9c7-1118cfa23fe5\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"405c34b5-6a06-4fa7-b278-84da4f864ac4\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"{tag1\": \"value1}\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomain3\",\r\n \"name\": \"testDomain3\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://diagnosticlogdomains.eastus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"69562a94-5c1e-42e8-bb7d-a04fff9363b0\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/diagnosticlogstestingtobedeleted/providers/Microsoft.EventGrid/domains/diagnosticlogdomains\",\r\n \"name\": \"diagnosticlogdomains\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://msi-test.westus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b3c2ce3f-f055-4fd0-9f32-3ff45a89d474\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"6b1a416a-f09f-40f3-bc8f-3f909de0ab7f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/domains/msi-test\",\r\n \"name\": \"msi-test\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://brandonneff-domain.eastus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"4492d446-3b13-4515-9751-25fcfb32d74f\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/brandonneff-eastus2-dest/providers/Microsoft.EventGrid/domains/brandonneff-domain\",\r\n \"name\": \"brandonneff-domain\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://clifxbhdae2ghiqajm6tewxzoei6csmkc4wfxdol.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"85756ce7-823c-42bb-b79c-f4444783062f\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f/providers/Microsoft.EventGrid/domains/clifxbhdae2ghiqajm6tewxzoei6csmkc4wfxdol\",\r\n \"name\": \"clifxbhdae2ghiqajm6tewxzoei6csmkc4wfxdol\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomainauce.australiacentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"88a48d35-21d8-4bf2-b263-d61dd3124961\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"australiacentral\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete/providers/Microsoft.EventGrid/domains/testdomainauce\",\r\n \"name\": \"testdomainauce\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://kishpdomain.southcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": null\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"data.one\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": null\r\n },\r\n \"eventType\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"10285d19-90e1-44e0-9489-20f008ebb278\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testRg1/providers/Microsoft.EventGrid/domains/kishpdomain\",\r\n \"name\": \"kishpdomain\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomaincentralindia.centralindia-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1f4604eb-3f56-4df4-acd1-16188510dd5a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralindia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted/providers/Microsoft.EventGrid/domains/testdomaincentralindia\",\r\n \"name\": \"testdomaincentralindia\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://domainjiowest.jioindiawest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c01c0189-6b01-4f80-b61f-6a9925bca45d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"jio india west\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/jioRg/providers/Microsoft.EventGrid/domains/domainjiowest\",\r\n \"name\": \"domainjiowest\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://domainjiocentral.jioindiacentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"8681adf1-b9a1-444e-9178-c2e735820030\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"jio india central\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/jioRg/providers/Microsoft.EventGrid/domains/domainjiocentral\",\r\n \"name\": \"domainjiocentral\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://domainswedencentral.swedencentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a9a15f3c-6580-4897-b48b-bf65612e42cf\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"sweden central\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/domains/domainswedencentral\",\r\n \"name\": \"domainswedencentral\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomaindup5.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b589ef01-2ca8-41c9-aa80-4bb99a938ea2\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomainDup5\",\r\n \"name\": \"testDomainDup5\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-7615.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"423bef80-a31f-48bc-ab3d-4638d4934da3\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3411/providers/Microsoft.EventGrid/domains/sdk-Domain-7615\",\r\n \"name\": \"sdk-Domain-7615\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://domainswedensouth.swedensouth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"3ac3feaf-dd87-4630-8fbf-bf0dcaefc1c6\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"sweden south\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/domains/domainswedensouth\",\r\n \"name\": \"domainswedensouth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/domains?api-version=2021-12-01&%24top=1&%24skiptoken=1ZXdbqJAGIbvhdQeLYIgoiZm84GDjK0%2fI1qXPePPgSI%2fZdB12%2fTed3DdZi9ADyQTeIe8fHyZh5f5EPLoVD8necqE4YewRc564yjCUIjrumRDScq83KNRFuV123s%2fVFE7KDKJHXwWVElZJ0XOJM3v%2bj1NjkSl7w%2fErj6QRV%2f1fDEM%2fbDfD3VFD7pSWRXHJIwqJs2SoCpYsavb6MjLTqoklMIi85KcfffKRDxyE687UmSlI3YUUe48PrCUv6xIo3zU0vyW7rcU5Tzl15bqNWfFX%2bFxo%2fUo%2bDFPYXqAAQ0OO6Dw92ipYTMUdbXmtg4X65V5Udh54YoXUTFacNXTNK1xWMvGARTFCweZYPb6M4rBLjcaL%2fv%2bRv7V5E8GvInKy2l0aencY5bk%2f3V4cWXe6eumZTVSD5uhhY8PdVGOOsI3AUHD4b4xnPRuAjN3uQf3lIB7DQweNgoTxhOMAUOh989Ar774TQhMNF%2bv4PneGdBTfwxPv5lGdnIJs2swWLi0i2CJ0g1MY4PCqk55%2bMaWayQGgGFEAM03fZNAKGgDy%2ftOhaoSGzDZyxAhjwTXIBJuY9kE7JRb%2fnMqqxul4isR98%2fAqa0IZtWrQiw1A3INBs72hGdgI5eCzWg8AeBoY4NzsR3bjgmQn3JBJ4dV7BpNTH5hYoCxRnwfCRhQw65eUxOsbL6gBKzC6tE94Uyf8AvB4E9DH%2bi4ZrfacD4%2f%2fwA%3d\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomain3.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"8c2c8d2b-d07d-43a0-a9c7-1118cfa23fe5\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"405c34b5-6a06-4fa7-b278-84da4f864ac4\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"{tag1\": \"value1}\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomain3\",\r\n \"name\": \"testDomain3\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://diagnosticlogdomains.eastus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"69562a94-5c1e-42e8-bb7d-a04fff9363b0\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/diagnosticlogstestingtobedeleted/providers/Microsoft.EventGrid/domains/diagnosticlogdomains\",\r\n \"name\": \"diagnosticlogdomains\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://msi-test.westus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b3c2ce3f-f055-4fd0-9f32-3ff45a89d474\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"6b1a416a-f09f-40f3-bc8f-3f909de0ab7f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/domains/msi-test\",\r\n \"name\": \"msi-test\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://brandonneff-domain.eastus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"4492d446-3b13-4515-9751-25fcfb32d74f\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/brandonneff-eastus2-dest/providers/Microsoft.EventGrid/domains/brandonneff-domain\",\r\n \"name\": \"brandonneff-domain\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps1490.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"7d59062a-4474-4f55-aaaa-2f2ad857be51\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9640/providers/Microsoft.EventGrid/domains/PSTestDomain-ps1490\",\r\n \"name\": \"PSTestDomain-ps1490\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomainauce.australiacentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"88a48d35-21d8-4bf2-b263-d61dd3124961\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"australiacentral\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete/providers/Microsoft.EventGrid/domains/testdomainauce\",\r\n \"name\": \"testdomainauce\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://kishpdomain.southcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": null\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"data.one\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": null\r\n },\r\n \"eventType\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"10285d19-90e1-44e0-9489-20f008ebb278\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testRg1/providers/Microsoft.EventGrid/domains/kishpdomain\",\r\n \"name\": \"kishpdomain\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomaincentralindia.centralindia-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1f4604eb-3f56-4df4-acd1-16188510dd5a\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralindia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted/providers/Microsoft.EventGrid/domains/testdomaincentralindia\",\r\n \"name\": \"testdomaincentralindia\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://domainjiowest.jioindiawest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c01c0189-6b01-4f80-b61f-6a9925bca45d\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"jio india west\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/jioRg/providers/Microsoft.EventGrid/domains/domainjiowest\",\r\n \"name\": \"domainjiowest\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://domainjiocentral.jioindiacentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"8681adf1-b9a1-444e-9178-c2e735820030\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"jio india central\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/jioRg/providers/Microsoft.EventGrid/domains/domainjiocentral\",\r\n \"name\": \"domainjiocentral\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://domainswedencentral.swedencentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a9a15f3c-6580-4897-b48b-bf65612e42cf\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"sweden central\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/domains/domainswedencentral\",\r\n \"name\": \"domainswedencentral\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomaindup5.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b589ef01-2ca8-41c9-aa80-4bb99a938ea2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomainDup5\",\r\n \"name\": \"testDomainDup5\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-7615.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"423bef80-a31f-48bc-ab3d-4638d4934da3\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3411/providers/Microsoft.EventGrid/domains/sdk-Domain-7615\",\r\n \"name\": \"sdk-Domain-7615\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://domainswedensouth.swedensouth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"3ac3feaf-dd87-4630-8fbf-bf0dcaefc1c6\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"sweden south\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/domains/domainswedensouth\",\r\n \"name\": \"domainswedensouth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/domains?api-version=2022-06-15&%24top=1&%24skiptoken=1ZbbTqtAFIbfhVivRHAoB03MzoIOMCrWATy0d5wcsHLYQGu3xnffQ%2bs2%2bwHwomQC%2f6ysrFnJl38NH0KVbfubolp1wsWH8IiD8D5AwoWQ933TXUhSGVURy8qs6k%2bj93WbnSZ1KXXruEvaoumLuuokNZ7GmipnIjLic3Gqn8tirESxmKZxahipjvRkKjVtvSnSrO0kr0jauquf%2b1O84WWdtkiltC6joup%2bRU0hbngSr3uJZIREWRPP1OOjbsUPq1dZdTlR44keTxDabfl3okTDG8U%2bmQ1az5Kn2xVcreGcJetnYLB%2fJko6LKT4IU874yL0rS9FggeueBGF4DlXmqqqQwa1bL4zuLLvhlxgOJ8H2AJLMzxGwG3uVX7A%2b2%2f6rzqvkfB22qhi2Vdzu27Lovqv16%2bsMtp%2bB217kHo6LDU9Purr5vJMOBEwDEQOG8hWnxbgLe5eYbEtYDEukIiYtQUzhxAgUOvGDvLoGPbGOGwMwfrNgjldGm%2fLuqTyuBjQcrawwCmWS45B0%2bDnMFj4NvTh5tBNwbbGDK7%2fdCpN%2fDQfd0rZeYywA6aDwqn3wBzDAZdMgUdgB2aYg6NbZD%2bpEL6Hu8P2iaJQFwh9lSHDEU3G9Un6mMsWkKB55PdH0%2f7QuPr2yOHTCHo7A699QdRWSqDj0giSnHjg4gUDt2O5A8Bx5yYn5Aaum1OgS7lmztrPFyb3jvlGqAlmiPmln3TATLd9WVlgl7dzRsGubY29Uk73mjxQAvFVGgOb9d0TwWDjDQ%2f9xFT8PBGitgTG2oxFfZaGw38SdyD4nvD5Fw%3d%3d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/domains?api-version=2021-12-01&%24top=1&%24skiptoken=1ZXdbqJAGIbvhdQeLYIgoiZm84GDjK0%2fI1qXPePPgSI%2fZdB12%2fTed3DdZi9ADyQTeIe8fHyZh5f5EPLoVD8necqE4YewRc564yjCUIjrumRDScq83KNRFuV123s%2fVFE7KDKJHXwWVElZJ0XOJM3v%2bj1NjkSl7w%2fErj6QRV%2f1fDEM%2fbDfD3VFD7pSWRXHJIwqJs2SoCpYsavb6MjLTqoklMIi85KcfffKRDxyE687UmSlI3YUUe48PrCUv6xIo3zU0vyW7rcU5Tzl15bqNWfFX%2bFxo%2fUo%2bDFPYXqAAQ0OO6Dw92ipYTMUdbXmtg4X65V5Udh54YoXUTFacNXTNK1xWMvGARTFCweZYPb6M4rBLjcaL%2fv%2bRv7V5E8GvInKy2l0aencY5bk%2f3V4cWXe6eumZTVSD5uhhY8PdVGOOsI3AUHD4b4xnPRuAjN3uQf3lIB7DQweNgoTxhOMAUOh989Ar774TQhMNF%2bv4PneGdBTfwxPv5lGdnIJs2swWLi0i2CJ0g1MY4PCqk55%2bMaWayQGgGFEAM03fZNAKGgDy%2ftOhaoSGzDZyxAhjwTXIBJuY9kE7JRb%2fnMqqxul4isR98%2fAqa0IZtWrQiw1A3INBs72hGdgI5eCzWg8AeBoY4NzsR3bjgmQn3JBJ4dV7BpNTH5hYoCxRnwfCRhQw65eUxOsbL6gBKzC6tE94Uyf8AvB4E9DH%2bi4ZrfacD4%2f%2fwA%3d", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnM/YXBpLXZlcnNpb249MjAyMS0xMi0wMSYlMjR0b3A9MSYlMjRza2lwdG9rZW49MVpYZGJxSkFHSWJ2aGRRZUxZSWdvaVptODRHRGpLMCUyZkkxcVhQZVBQZ1NJJTJmWmRCMTIlMmZUZWQzRGRaaTlBRHlRVGVJZThmSHlaaDVmNUVQTG9WRDhuZWNxRTRZZXdSYzU2NHlqQ1VJanJ1bVJEU2NxODNLTlJGdVYxMjNzJTJmVkZFN0tES0pIWHdXVkVsWkowWE9KTTN2JTJiajFOamtTbDd3JTJmRXJqNlFSViUyZjFmREVNJTJmYkRmRDNWRkQ3cFNXUlhISkl3cUpzMlNvQ3BZc2F2YjZNakxUcW9rbE1JaTg1S2NmZmZLUkR4eUU2ODdVbVNsSTNZVVVlNDhQckNVdjZ4SW8zelUwdnlXN3JjVTVUemwxNWJxTldmRlglMmJGeG8lMmZVbyUyYkRGUFlYcUFBUTBPTzZEdzkyaXBZVE1VZGJYbXRnNFg2NVY1VWRoNTRZb1hVVEZhY05YVE5LMXhXTXZHQVJURkN3ZVpZUGI2TTRyQkxqY2FMJTJmdiUyYlJ2N1Y1RThHdkluS3kybDBhZW5jWTViayUyZjNWNGNXWGU2ZXVtWlRWU0Q1dWhoWThQZFZHT09zSTNBVUhENGI0eG5QUnVBak4zdVFmM2xJQjdEUXdlTmdvVHhoT01BVU9oOTg5QXI3NzRUUWhNTkYlMmJ2NFBuZUdkQlRmd3hQdjVsR2RuSUpzMnN3V0xpMGkyQ0owZzFNWTRQQ3FrNTUlMmJNYVdheVFHZ0dGRUFNMDNmWk5BS0dnRHklMmZ0T2hhb1NHekRaeXhBaGp3VFhJQkp1WTlrRTdKUmIlMmZuTXFxeHVsNGlzUjk4JTJmQXFhMEladFdyUWl3MUEzSU5CczcyaEdkZ0k1ZUN6V2c4QWVCb1k0TnpzUjNiamdtUW4zSkJKNGRWN0JwTlRINWhZb0N4Um53ZkNSaFF3NjVlVXhPc2JMNmdCS3pDNnRFOTRVeWY4QXZCNEU5REglMmJpNFpyZmFjRDQlMmYlMmZ3QSUzZA==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/domains?api-version=2022-06-15&%24top=1&%24skiptoken=1ZbbTqtAFIbfhVivRHAoB03MzoIOMCrWATy0d5wcsHLYQGu3xnffQ%2bs2%2bwHwomQC%2f6ysrFnJl38NH0KVbfubolp1wsWH8IiD8D5AwoWQ933TXUhSGVURy8qs6k%2bj93WbnSZ1KXXruEvaoumLuuokNZ7GmipnIjLic3Gqn8tirESxmKZxahipjvRkKjVtvSnSrO0kr0jauquf%2b1O84WWdtkiltC6joup%2bRU0hbngSr3uJZIREWRPP1OOjbsUPq1dZdTlR44keTxDabfl3okTDG8U%2bmQ1az5Kn2xVcreGcJetnYLB%2fJko6LKT4IU874yL0rS9FggeueBGF4DlXmqqqQwa1bL4zuLLvhlxgOJ8H2AJLMzxGwG3uVX7A%2b2%2f6rzqvkfB22qhi2Vdzu27Lovqv16%2bsMtp%2bB217kHo6LDU9Purr5vJMOBEwDEQOG8hWnxbgLe5eYbEtYDEukIiYtQUzhxAgUOvGDvLoGPbGOGwMwfrNgjldGm%2fLuqTyuBjQcrawwCmWS45B0%2bDnMFj4NvTh5tBNwbbGDK7%2fdCpN%2fDQfd0rZeYywA6aDwqn3wBzDAZdMgUdgB2aYg6NbZD%2bpEL6Hu8P2iaJQFwh9lSHDEU3G9Un6mMsWkKB55PdH0%2f7QuPr2yOHTCHo7A699QdRWSqDj0giSnHjg4gUDt2O5A8Bx5yYn5Aaum1OgS7lmztrPFyb3jvlGqAlmiPmln3TATLd9WVlgl7dzRsGubY29Uk73mjxQAvFVGgOb9d0TwWDjDQ%2f9xFT8PBGitgTG2oxFfZaGw38SdyD4nvD5Fw%3d%3d", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnM/YXBpLXZlcnNpb249MjAyMi0wNi0xNSYlMjR0b3A9MSYlMjRza2lwdG9rZW49MVpiYlRxdEFGSWJmaFZpdlJIQW9CMDNNem9JT01DcldBVHkwZDV3Y3NITFlRR3UzeG5mZlElMmJzMiUyYndId29tUUMlMmY2eXNyRm5KbDM4TkgwS1ZiZnVib2xwMXdzV0g4SWlEOEQ1QXdvV1E5MzNUWFVoU0dWVVJ5OHFzNmslMmJqOTNXYm5TWjFLWFhydUV2YW91bUx1dW9rTlo3R21pcG5JakxpYzNHcW44dGlyRVN4bUtaeGFoaXBqdlJrS2pWdHZTblNyTzBrcjBqYXVxdWYlMmIxTzg0V1dkdGtpbHRDNmpvdXAlMmJSVTBoYm5nU3IzdUpaSVJFV1JQUDFPT2pic1VQcTFkWmRUbFI0NGtlVHhEYWJmbDNva1RERzhVJTJibVExYXo1S24yeFZjcmVHY0pldG5ZTEIlMmZKa282TEtUNElVODc0eUwwclM5RmdnZXVlQkdGNERsWG1xcXFRd2ExYkw0enVMTHZobHhnT0o4SDJBSkxNenhHd0czdVZYN0ElMmIyJTJmNnJ6cXZrZkIyMnFoaTJWZHp1MjdMb3ZxdjE2JTJic010cCUyYkIyMTdrSG82TERVOVB1cnI1dkpNT0JFd0RFUU9HOGhXbnhiZ0xlNWVZYkV0WURFdWtJaVl0UVV6aHhBZ1VPdkdEdkxvR1BiR09Hd013ZnJOZ2psZEdtJTJmTHVxVHl1QmpRY3Jhd3dDbVdTNDVCMCUyYkRuTUZqNE52VGg1dEJOd2JiR0RLNyUyZmRDcE4lMmZEUWZkMHJaZVl5d0E2YUR3cW4zd0J6REFaZE1nVWRnQjJhWWc2TmJaRCUyYnBFTDZIdThQMmlhSlFGd2g5bFNIREVVM0c5VW42bU1zV2tLQjU1UGRIMCUyZjdRdVByMnlPSFRDSG83QTY5OVFkUldTcURqMGdpU25Iamc0Z1VEdDJPNUE4Qng1eVluNUFhdW0xT2dTN2xtenRyUEZ5YjNqdmxHcUFsbWlQbWxuM1RBVExkOVdWbGdsN2R6UnNHdWJZMjlVazczbWp4UUF2RlZHZ09iOWQwVHdXRGpEUSUyZjl4RlQ4UEJHaXRnVEcyb3hGZlphR3czOFNkeUQ0bnZENUZ3JTNkJTNk", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "790036bc-400c-463b-b21d-73e1d1dedfc7" + "419ffc24-e2e0-414a-a3b5-08d5f1746d27" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1211,23 +1211,24 @@ "no-cache" ], "x-ms-original-request-ids": [ - "fe24c72a-dc5f-4854-9a1c-38abeaeba37f", - "4fed7bb1-6d59-4076-811c-f88dcc87fe2f", - "6e5f7cc6-4e37-4a56-a3d7-f8d0efb1c956", - "262d0467-7ae7-4ee8-969f-a8b5e7c6c5af", - "92f80d39-d861-4779-a0b5-bfa5c65fc44c" + "43942cc6-851f-4edd-882c-d4e6dacf644a", + "77904786-9846-4cd2-ab5d-6d5d8cd13647", + "56750b7c-f53c-469b-9d06-001ab3055487", + "08c1f423-e3bf-45c0-89f4-2a59a283ac35", + "4db9d48b-f155-4bb4-80b3-d1151c2aa45c", + "fc1f9edf-b485-40a8-a884-e3c81f45fe2d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11999" ], "x-ms-request-id": [ - "7a460de5-acdb-47c3-9ee8-a089f08b56f8" + "cea2dd9a-4ceb-41c2-b08b-5fed12f0cff3" ], "x-ms-correlation-request-id": [ - "7a460de5-acdb-47c3-9ee8-a089f08b56f8" + "cea2dd9a-4ceb-41c2-b08b-5fed12f0cff3" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214836Z:7a460de5-acdb-47c3-9ee8-a089f08b56f8" + "WESTUS2:20221006T020045Z:cea2dd9a-4ceb-41c2-b08b-5fed12f0cff3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1236,7 +1237,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:48:36 GMT" + "Thu, 06 Oct 2022 02:00:44 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1245,31 +1246,31 @@ "-1" ], "Content-Length": [ - "4037" + "4936" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://kishdomain1.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f07ee48b-b4a4-40ea-ba28-5f915355af3d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/domains/kishdomain1\",\r\n \"name\": \"kishdomain1\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomainpermission.eastus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a660ee42-0140-4bc0-8eda-6b1abdd42182\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"38fc1d76-d88e-46fb-a8ea-0427e9155a63\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomainPermission\",\r\n \"name\": \"testDomainPermission\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://clifq6nvajq6b2rumcwewnjdceisqw3vuqeevgzs.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventV01Schema\",\r\n \"metricResourceId\": \"862a3be0-1042-4ea5-9578-b30dfec763a6\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f/providers/Microsoft.EventGrid/domains/clifq6nvajq6b2rumcwewnjdceisqw3vuqeevgzs\",\r\n \"name\": \"clifq6nvajq6b2rumcwewnjdceisqw3vuqeevgzs\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testcheckaccessdom.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"305420be-db54-4a4d-81bb-c7ac9dfc73c0\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"2863103f-0051-4efc-816e-dce2279932bb\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/domains/testcheckaccessdom\",\r\n \"name\": \"testcheckaccessdom\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-8144.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"513972e7-51cf-4602-a7ef-033ca2ad838c\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8555/providers/Microsoft.EventGrid/domains/sdk-Domain-8144\",\r\n \"name\": \"sdk-Domain-8144\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/domains?api-version=2021-12-01&%24top=1&%24skiptoken=1VPbbuIwEP2XqPRpQ8AkBJDQahIcSIFCbqXsWxy7wc3moiTQsFX%2ffR2WrfYD2Idao%2fGxdTxnNEd%2blzLW1CueJZU0eZd22PMDD0kT6VDXRTVRlDTMwpilLKu74a9jybpRnirVkVRRyYua51mlaEQlQ63HZDQiY1nVxz2ZDEIiU0roaER1pEeqUpT5iVNWVsqaR2Ve5S91F59E2XnJqULzNORZ9T0suHwSJFF3inqoL%2feR3Ovf31WJEMsTlk07GunopIPQ5Sj2ziBsMyKuPWuxzqLnxwQejjCOI%2fbTeYM%2fqzOgbaCB6wuaeDDwXfOKbO%2fpL8IbgYaapvUFw9q2DIjxeePbJhjDp41jw3qYXCqJGpGQLsMsZtdGLp2lPPunrysrDZvPS8tqoU7b0Oj9XZ0X07707TJ9Ez%2f6LqwC72t7EDejGSzPlea8oALWt%2fBgs49VDFucOPBwMGJw60S4PrP2BjcADIMBtGO9sSeffuAAtl%2fbE6%2b2GKzLV%2bRYagrOLTzxdo29hAXf67btxrAAsB0KsdE7NGoAeE6XtlEm%2bx04Qi4ysVANGrBhsRLJHaqa4P549XMMRmiw%2fCGA2DS5FZgwPz%2fv3mzQCf4ff%2b3j4zc%3d\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://kishdomain1.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f07ee48b-b4a4-40ea-ba28-5f915355af3d\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/domains/kishdomain1\",\r\n \"name\": \"kishdomain1\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomainpermission.eastus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a660ee42-0140-4bc0-8eda-6b1abdd42182\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"38fc1d76-d88e-46fb-a8ea-0427e9155a63\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomainPermission\",\r\n \"name\": \"testDomainPermission\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://bneff-domain.westus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1014a7db-682c-44b2-9e78-6cdb4da6a959\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [],\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/brandonneff/providers/Microsoft.EventGrid/domains/bneff-domain\",\r\n \"name\": \"bneff-domain\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps7903.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"2a8d38e9-55c4-4a7d-ab01-fefbe6805269\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7005/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7903\",\r\n \"name\": \"PSTestDomain-ps7903\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testcheckaccessdom.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"305420be-db54-4a4d-81bb-c7ac9dfc73c0\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"2863103f-0051-4efc-816e-dce2279932bb\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/domains/testcheckaccessdom\",\r\n \"name\": \"testcheckaccessdom\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-8144.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"513972e7-51cf-4602-a7ef-033ca2ad838c\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8555/providers/Microsoft.EventGrid/domains/sdk-Domain-8144\",\r\n \"name\": \"sdk-Domain-8144\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/domains?api-version=2022-06-15&%24top=1&%24skiptoken=1ZRdc6IwFIb%2fC1N7VQQjH%2bqMs3OgoFSt5avWvUtINlIWcACpbqf%2ffYPrdvYHuBdlMskb5s05Z%2fLMybtUsGOzTIuslibv0sYJozhE0kTaNc2%2bnihKjgvMWc6Kpo9%2fHSrWT8pcqQ%2bkTqp036RlUSs60Yihq0xGIzKWNXOsymSIiUwpoaMRNZGZaMq%2bKtuUsqpWVmlSlXX5o%2bk7rQg7q1Kq0DLHaVF%2fw%2ftUboVJxJ0iFSFZNeSBfntTZyJZmbFi2tNJzyQ9hM5bsfaGuJsRCbz7TpsseXnM4OEAY56wn%2f4b%2fPl6Q9oNNAwiYRMHhlFgX5QXPv9VzlooQ9f1gXD4tit2I6Hcp84L3DmtI88Gy3he%2bx6sjOwcU0RLRBEVLji7lHSuMU%2bLfyq8uHJ8%2fPzpup00aTd0envTlPvpQLo7c7CdxyiAZRx%2bbRr8OLqHxanWfdqygF%2bVhrsjyHFgJujr7tZqLW6d1mBx8OH%2fcPlk4sTw9LW5hI3LYFW9It%2fVcnFhV%2b2SMNl5C5inW9PzBPM5gOdT4Ja6O2oxODO68Kwq227AF4kT2xH54yN4MF%2bKKTA0XXi%2fv0alAxa2WPkQA7ft1I1tmJ1eNm8emMQ9WWAFS9WGroWu2n8fdxKucuC8Yhw3jEbdyyNoQ7CSPn4D\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3443/providers/Microsoft.EventGrid/domains/PSTestDomain-ps5101?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczM0NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM1MTAxP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9041/providers/Microsoft.EventGrid/domains/PSTestDomain-ps1638?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczkwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHMxNjM4P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "401391c1-4924-4117-9d48-63e730023959" + "18a2599e-e2e7-484f-a164-466c89bebc5b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1278,7 +1279,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/F3019170-E474-4D90-BAF3-370DE97F0455?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/A0C3D80D-E6D5-463E-AE28-1F880719FD17?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -1287,28 +1288,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/F3019170-E474-4D90-BAF3-370DE97F0455?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/A0C3D80D-E6D5-463E-AE28-1F880719FD17?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-request-id": [ - "22fc91f1-b2a0-472d-ad0b-301a5bc20031" + "4d3e0ad8-2fd8-44a9-b629-e8261064a5b8" ], "x-ms-correlation-request-id": [ - "22fc91f1-b2a0-472d-ad0b-301a5bc20031" + "4d3e0ad8-2fd8-44a9-b629-e8261064a5b8" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214837Z:22fc91f1-b2a0-472d-ad0b-301a5bc20031" + "WESTUS2:20221006T020046Z:4d3e0ad8-2fd8-44a9-b629-e8261064a5b8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:48:36 GMT" + "Thu, 06 Oct 2022 02:00:45 GMT" ], "Expires": [ "-1" @@ -1321,21 +1322,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/F3019170-E474-4D90-BAF3-370DE97F0455?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRjMwMTkxNzAtRTQ3NC00RDkwLUJBRjMtMzcwREU5N0YwNDU1P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/A0C3D80D-E6D5-463E-AE28-1F880719FD17?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvQTBDM0Q4MEQtRTZENS00NjNFLUFFMjgtMUY4ODA3MTlGRDE3P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "401391c1-4924-4117-9d48-63e730023959" + "18a2599e-e2e7-484f-a164-466c89bebc5b" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1347,25 +1348,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b61e9c0f-ded0-4f9d-92f5-cf44c70bcb52" + "be91ade6-afb1-498e-91d3-501bdc74cada" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11997" ], "x-ms-correlation-request-id": [ - "f1be3286-0017-40d2-861b-fcfc41932a91" + "40fa3b0d-665e-4d73-af91-76f7bb816351" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214847Z:f1be3286-0017-40d2-861b-fcfc41932a91" + "WESTUS2:20221006T020056Z:40fa3b0d-665e-4d73-af91-76f7bb816351" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:48:46 GMT" + "Thu, 06 Oct 2022 02:00:55 GMT" ], "Content-Length": [ "286" @@ -1377,25 +1378,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/F3019170-E474-4D90-BAF3-370DE97F0455?api-version=2021-12-01\",\r\n \"name\": \"f3019170-e474-4d90-baf3-370de97f0455\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/A0C3D80D-E6D5-463E-AE28-1F880719FD17?api-version=2022-06-15\",\r\n \"name\": \"a0c3d80d-e6d5-463e-ae28-1f880719fd17\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/F3019170-E474-4D90-BAF3-370DE97F0455?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvRjMwMTkxNzAtRTQ3NC00RDkwLUJBRjMtMzcwREU5N0YwNDU1P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/A0C3D80D-E6D5-463E-AE28-1F880719FD17?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvQTBDM0Q4MEQtRTZENS00NjNFLUFFMjgtMUY4ODA3MTlGRDE3P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "401391c1-4924-4117-9d48-63e730023959" + "18a2599e-e2e7-484f-a164-466c89bebc5b" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1407,25 +1408,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "32b9917a-eaed-4673-b167-28814bba2bde" + "145c19d9-7b4a-4764-be13-66af2837d363" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11996" ], "x-ms-correlation-request-id": [ - "91ba2423-c54b-4178-af9c-02c2326070dd" + "abbecb22-4667-452f-ac49-6b499103e86d" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214847Z:91ba2423-c54b-4178-af9c-02c2326070dd" + "WESTUS2:20221006T020056Z:abbecb22-4667-452f-ac49-6b499103e86d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:48:46 GMT" + "Thu, 06 Oct 2022 02:00:55 GMT" ], "Expires": [ "-1" @@ -1438,22 +1439,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3443/providers/Microsoft.EventGrid/domains/PSTestDomain-ps6818?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczM0NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM2ODE4P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9041/providers/Microsoft.EventGrid/domains/PSTestDomain-ps583?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczkwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM1ODM/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "03ad5351-1aea-4d31-a0b0-04603f1e8859" + "9f25bc8e-20c8-4ba4-90f7-7e0b7c8f79b2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1462,6 +1462,7 @@ "272" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1476,31 +1477,31 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/3C552038-9579-44E9-A23E-5A1814DB8BF6?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/2BE235BC-E262-4968-AF7F-D7057E52B8B3?api-version=2022-06-15" ], "x-ms-request-id": [ - "fb4e03d4-2da4-47d0-b9e1-aea54ba6f9b9" + "bd640802-0988-4065-a202-c551d219aff5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "9557610c-60b5-4578-8dfa-6b53907b80a6" + "c4d34b29-3674-4db8-8beb-dbfa47663b32" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214848Z:9557610c-60b5-4578-8dfa-6b53907b80a6" + "WESTUS2:20221006T020057Z:c4d34b29-3674-4db8-8beb-dbfa47663b32" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:48:47 GMT" + "Thu, 06 Oct 2022 02:00:57 GMT" ], "Content-Length": [ - "510" + "508" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1509,25 +1510,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3443/providers/Microsoft.EventGrid/domains/PSTestDomain-ps6818\",\r\n \"name\": \"PSTestDomain-ps6818\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9041/providers/Microsoft.EventGrid/domains/PSTestDomain-ps583\",\r\n \"name\": \"PSTestDomain-ps583\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/3C552038-9579-44E9-A23E-5A1814DB8BF6?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvM0M1NTIwMzgtOTU3OS00NEU5LUEyM0UtNUExODE0REI4QkY2P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/2BE235BC-E262-4968-AF7F-D7057E52B8B3?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMkJFMjM1QkMtRTI2Mi00OTY4LUFGN0YtRDcwNTdFNTJCOEIzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03ad5351-1aea-4d31-a0b0-04603f1e8859" + "9f25bc8e-20c8-4ba4-90f7-7e0b7c8f79b2" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1539,25 +1540,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dab65ab4-615c-4108-97a3-502bbff32bf3" + "ed524813-613b-4f11-9b67-9c21e46de393" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11999" ], "x-ms-correlation-request-id": [ - "6acfe76c-7c66-4f5a-a8bf-a444af1174d9" + "aefe954e-7f57-46c4-beb1-626edd432f7a" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214858Z:6acfe76c-7c66-4f5a-a8bf-a444af1174d9" + "WESTUS2:20221006T020108Z:aefe954e-7f57-46c4-beb1-626edd432f7a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:48:57 GMT" + "Thu, 06 Oct 2022 02:01:07 GMT" ], "Content-Length": [ "286" @@ -1569,25 +1570,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/3C552038-9579-44E9-A23E-5A1814DB8BF6?api-version=2021-12-01\",\r\n \"name\": \"3c552038-9579-44e9-a23e-5a1814db8bf6\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/2BE235BC-E262-4968-AF7F-D7057E52B8B3?api-version=2022-06-15\",\r\n \"name\": \"2be235bc-e262-4968-af7f-d7057e52b8b3\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3443/providers/Microsoft.EventGrid/domains/PSTestDomain-ps6818?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczM0NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM2ODE4P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9041/providers/Microsoft.EventGrid/domains/PSTestDomain-ps583?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczkwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM1ODM/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03ad5351-1aea-4d31-a0b0-04603f1e8859" + "9f25bc8e-20c8-4ba4-90f7-7e0b7c8f79b2" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1599,28 +1600,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f39701a7-6c19-44a8-9486-22f0492f9ba0" + "5dcbcfad-d0df-4042-b731-4daa76a17aca" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11998" ], "x-ms-correlation-request-id": [ - "cd63c5c4-ea40-4504-9955-d81a20329466" + "d2e041a2-2edb-401d-9bdb-87fad287d853" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214858Z:cd63c5c4-ea40-4504-9955-d81a20329466" + "WESTUS2:20221006T020108Z:d2e041a2-2edb-401d-9bdb-87fad287d853" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:48:57 GMT" + "Thu, 06 Oct 2022 02:01:07 GMT" ], "Content-Length": [ - "641" + "678" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1629,28 +1630,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps6818.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c6d04de5-019f-47e4-9236-893d826b3c7d\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3443/providers/Microsoft.EventGrid/domains/PSTestDomain-ps6818\",\r\n \"name\": \"PSTestDomain-ps6818\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps583.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"adac7fd1-bbee-4246-9892-fe8fdbd681d1\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9041/providers/Microsoft.EventGrid/domains/PSTestDomain-ps583\",\r\n \"name\": \"PSTestDomain-ps583\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3443/providers/Microsoft.EventGrid/domains/PSTestDomain-ps6818?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczM0NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM2ODE4P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9041/providers/Microsoft.EventGrid/domains/PSTestDomain-ps583?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczkwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM1ODM/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "50c0acdc-027e-4e20-b37c-b5ff4ac7c5ac" + "c965ab14-46f0-482c-8833-e422fe903ec9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1662,28 +1663,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bd484b6a-b8e0-4056-a99f-705fc513c721" + "097d4017-d322-4a11-b703-a93edb01625f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11999" ], "x-ms-correlation-request-id": [ - "93378190-69ce-46cc-98f0-d678b361977d" + "2bde4041-d011-4ed7-abba-d417a738c155" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214858Z:93378190-69ce-46cc-98f0-d678b361977d" + "WESTUS2:20221006T020108Z:2bde4041-d011-4ed7-abba-d417a738c155" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:48:58 GMT" + "Thu, 06 Oct 2022 02:01:08 GMT" ], "Content-Length": [ - "641" + "678" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1692,28 +1693,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps6818.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c6d04de5-019f-47e4-9236-893d826b3c7d\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3443/providers/Microsoft.EventGrid/domains/PSTestDomain-ps6818\",\r\n \"name\": \"PSTestDomain-ps6818\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps583.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"adac7fd1-bbee-4246-9892-fe8fdbd681d1\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9041/providers/Microsoft.EventGrid/domains/PSTestDomain-ps583\",\r\n \"name\": \"PSTestDomain-ps583\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3443/providers/Microsoft.EventGrid/domains/PSTestDomain-ps6818?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczM0NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM2ODE4P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9041/providers/Microsoft.EventGrid/domains/PSTestDomain-ps583?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczkwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM1ODM/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "50c0acdc-027e-4e20-b37c-b5ff4ac7c5ac" + "c965ab14-46f0-482c-8833-e422fe903ec9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1722,7 +1723,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/33B9A0EB-578E-4869-87CB-289A09B9FF0F?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/4349A69A-39BA-4A6E-A757-39965C717834?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -1731,7 +1732,7 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/33B9A0EB-578E-4869-87CB-289A09B9FF0F?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4349A69A-39BA-4A6E-A757-39965C717834?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1740,19 +1741,19 @@ "14998" ], "x-ms-request-id": [ - "0954e909-b66d-4a09-9f7d-31b835e6ce5d" + "731c10b3-697c-410b-9432-ccc33d57788c" ], "x-ms-correlation-request-id": [ - "0954e909-b66d-4a09-9f7d-31b835e6ce5d" + "731c10b3-697c-410b-9432-ccc33d57788c" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214859Z:0954e909-b66d-4a09-9f7d-31b835e6ce5d" + "WESTUS2:20221006T020109Z:731c10b3-697c-410b-9432-ccc33d57788c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:48:58 GMT" + "Thu, 06 Oct 2022 02:01:09 GMT" ], "Expires": [ "-1" @@ -1765,21 +1766,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/33B9A0EB-578E-4869-87CB-289A09B9FF0F?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMzNCOUEwRUItNTc4RS00ODY5LTg3Q0ItMjg5QTA5QjlGRjBGP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4349A69A-39BA-4A6E-A757-39965C717834?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNDM0OUE2OUEtMzlCQS00QTZFLUE3NTctMzk5NjVDNzE3ODM0P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "50c0acdc-027e-4e20-b37c-b5ff4ac7c5ac" + "c965ab14-46f0-482c-8833-e422fe903ec9" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1791,25 +1792,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "28b385fd-9cab-4c28-947f-b9375e05796d" + "812cf0ae-58ff-4db6-a0f1-39be414cc49f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11999" ], "x-ms-correlation-request-id": [ - "b608cfb7-8dd7-420e-bd45-1e202525f577" + "f3fe82c1-f733-4e94-8fbd-704b862d433e" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214909Z:b608cfb7-8dd7-420e-bd45-1e202525f577" + "WESTUS2:20221006T020119Z:f3fe82c1-f733-4e94-8fbd-704b862d433e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:49:08 GMT" + "Thu, 06 Oct 2022 02:01:19 GMT" ], "Content-Length": [ "286" @@ -1821,25 +1822,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/33B9A0EB-578E-4869-87CB-289A09B9FF0F?api-version=2021-12-01\",\r\n \"name\": \"33b9a0eb-578e-4869-87cb-289a09b9ff0f\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4349A69A-39BA-4A6E-A757-39965C717834?api-version=2022-06-15\",\r\n \"name\": \"4349a69a-39ba-4a6e-a757-39965c717834\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/33B9A0EB-578E-4869-87CB-289A09B9FF0F?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMzNCOUEwRUItNTc4RS00ODY5LTg3Q0ItMjg5QTA5QjlGRjBGP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/4349A69A-39BA-4A6E-A757-39965C717834?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNDM0OUE2OUEtMzlCQS00QTZFLUE3NTctMzk5NjVDNzE3ODM0P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "50c0acdc-027e-4e20-b37c-b5ff4ac7c5ac" + "c965ab14-46f0-482c-8833-e422fe903ec9" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1851,25 +1852,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e4ee2af3-9758-4c3f-ba58-153635f1b7f9" + "4c52eae4-7a84-4401-9a6f-91100d60e4fe" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11998" ], "x-ms-correlation-request-id": [ - "0de7aa43-ad3f-4285-9df7-6321b4b30970" + "eb6ea4ad-1d5f-46d0-8703-48b3551b97b7" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214909Z:0de7aa43-ad3f-4285-9df7-6321b4b30970" + "WESTUS2:20221006T020119Z:eb6ea4ad-1d5f-46d0-8703-48b3551b97b7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:49:08 GMT" + "Thu, 06 Oct 2022 02:01:19 GMT" ], "Expires": [ "-1" @@ -1882,24 +1883,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps261/providers/Microsoft.EventGrid/domains/PSTestDomain-ps782?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL1BTVGVzdERvbWFpbi1wczc4Mj9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9622/providers/Microsoft.EventGrid/domains/PSTestDomain-ps9117?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczk2MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM5MTE3P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "502702fa-195b-42ff-a422-30cdf4dbac25" + "08d03369-eb3a-4ffb-9b96-60e593597622" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1908,7 +1909,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/B7297F02-27BF-4041-8887-F42E099DBAE6?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/3565ED30-F833-4466-9EC0-8D95B11E7629?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -1917,28 +1918,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/B7297F02-27BF-4041-8887-F42E099DBAE6?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/3565ED30-F833-4466-9EC0-8D95B11E7629?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-request-id": [ - "cd89fbe2-3beb-407e-8a36-03aaec19a9f7" + "313ba3a9-feb4-4734-9925-2882d80fa99e" ], "x-ms-correlation-request-id": [ - "cd89fbe2-3beb-407e-8a36-03aaec19a9f7" + "313ba3a9-feb4-4734-9925-2882d80fa99e" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214909Z:cd89fbe2-3beb-407e-8a36-03aaec19a9f7" + "WESTUS2:20221006T020120Z:313ba3a9-feb4-4734-9925-2882d80fa99e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:49:08 GMT" + "Thu, 06 Oct 2022 02:01:20 GMT" ], "Expires": [ "-1" @@ -1951,21 +1952,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/B7297F02-27BF-4041-8887-F42E099DBAE6?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvQjcyOTdGMDItMjdCRi00MDQxLTg4ODctRjQyRTA5OURCQUU2P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/3565ED30-F833-4466-9EC0-8D95B11E7629?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMzU2NUVEMzAtRjgzMy00NDY2LTlFQzAtOEQ5NUIxMUU3NjI5P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "502702fa-195b-42ff-a422-30cdf4dbac25" + "08d03369-eb3a-4ffb-9b96-60e593597622" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1977,25 +1978,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "03451232-06c8-47cb-8c32-ee945353685b" + "91a19b62-ea17-4b22-b87e-57268f590f44" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11999" ], "x-ms-correlation-request-id": [ - "d12d332b-f59e-4675-97cc-40952a922e01" + "42518fde-327f-4af7-9df0-4901855316ed" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214919Z:d12d332b-f59e-4675-97cc-40952a922e01" + "WESTUS2:20221006T020130Z:42518fde-327f-4af7-9df0-4901855316ed" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:49:18 GMT" + "Thu, 06 Oct 2022 02:01:30 GMT" ], "Content-Length": [ "286" @@ -2007,25 +2008,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/B7297F02-27BF-4041-8887-F42E099DBAE6?api-version=2021-12-01\",\r\n \"name\": \"b7297f02-27bf-4041-8887-f42e099dbae6\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/3565ED30-F833-4466-9EC0-8D95B11E7629?api-version=2022-06-15\",\r\n \"name\": \"3565ed30-f833-4466-9ec0-8d95b11e7629\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/B7297F02-27BF-4041-8887-F42E099DBAE6?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvQjcyOTdGMDItMjdCRi00MDQxLTg4ODctRjQyRTA5OURCQUU2P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/3565ED30-F833-4466-9EC0-8D95B11E7629?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMzU2NUVEMzAtRjgzMy00NDY2LTlFQzAtOEQ5NUIxMUU3NjI5P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "502702fa-195b-42ff-a422-30cdf4dbac25" + "08d03369-eb3a-4ffb-9b96-60e593597622" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2037,25 +2038,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "db074ac1-5b4d-4e03-b268-0cb4e1abfdbc" + "5341afe4-fb8a-4d47-84c8-187245bf0682" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11998" ], "x-ms-correlation-request-id": [ - "23e061a3-bfa6-42ff-96f3-6bd4e84e3632" + "afdd5d26-f12f-4177-a1d1-2d9837b8bc73" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214919Z:23e061a3-bfa6-42ff-96f3-6bd4e84e3632" + "WESTUS2:20221006T020130Z:afdd5d26-f12f-4177-a1d1-2d9837b8bc73" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:49:18 GMT" + "Thu, 06 Oct 2022 02:01:30 GMT" ], "Expires": [ "-1" @@ -2068,24 +2069,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps261/providers/Microsoft.EventGrid/domains/PSTestDomain-ps229?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL1BTVGVzdERvbWFpbi1wczIyOT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9622/providers/Microsoft.EventGrid/domains/PSTestDomain-ps9533?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczk2MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM5NTMzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8c118ea4-2d1d-4764-a7b1-05dbabc7145c" + "504ac9b9-6bb6-4ca1-852e-27c71832eded" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2094,7 +2095,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/335ACD3F-88EE-4D1F-AB90-DEF240412D41?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/1D9C30B8-1A09-4AC2-AC05-46B85DAE9EAA?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -2103,28 +2104,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/335ACD3F-88EE-4D1F-AB90-DEF240412D41?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/1D9C30B8-1A09-4AC2-AC05-46B85DAE9EAA?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14999" ], "x-ms-request-id": [ - "e8649630-3ace-4fcc-8047-0ffd19382f14" + "0b9a9ac0-27cf-4953-84d6-0ff93c176ce8" ], "x-ms-correlation-request-id": [ - "e8649630-3ace-4fcc-8047-0ffd19382f14" + "0b9a9ac0-27cf-4953-84d6-0ff93c176ce8" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214920Z:e8649630-3ace-4fcc-8047-0ffd19382f14" + "WESTUS2:20221006T020131Z:0b9a9ac0-27cf-4953-84d6-0ff93c176ce8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:49:19 GMT" + "Thu, 06 Oct 2022 02:01:31 GMT" ], "Expires": [ "-1" @@ -2137,21 +2138,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/335ACD3F-88EE-4D1F-AB90-DEF240412D41?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMzM1QUNEM0YtODhFRS00RDFGLUFCOTAtREVGMjQwNDEyRDQxP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/1D9C30B8-1A09-4AC2-AC05-46B85DAE9EAA?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMUQ5QzMwQjgtMUEwOS00QUMyLUFDMDUtNDZCODVEQUU5RUFBP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8c118ea4-2d1d-4764-a7b1-05dbabc7145c" + "504ac9b9-6bb6-4ca1-852e-27c71832eded" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2163,25 +2164,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d7f1ce2d-e0af-435d-aeea-0e9513ad7e54" + "f1df5c23-c441-42e2-8e77-cfdb793255ea" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11999" ], "x-ms-correlation-request-id": [ - "4e15c870-867d-42cc-a3fd-34c32b8f45b4" + "8c41cbc4-a3df-4943-9e61-9a0a9125345f" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214930Z:4e15c870-867d-42cc-a3fd-34c32b8f45b4" + "WESTUS2:20221006T020141Z:8c41cbc4-a3df-4943-9e61-9a0a9125345f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:49:29 GMT" + "Thu, 06 Oct 2022 02:01:41 GMT" ], "Content-Length": [ "286" @@ -2193,25 +2194,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/335ACD3F-88EE-4D1F-AB90-DEF240412D41?api-version=2021-12-01\",\r\n \"name\": \"335acd3f-88ee-4d1f-ab90-def240412d41\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/1D9C30B8-1A09-4AC2-AC05-46B85DAE9EAA?api-version=2022-06-15\",\r\n \"name\": \"1d9c30b8-1a09-4ac2-ac05-46b85dae9eaa\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/335ACD3F-88EE-4D1F-AB90-DEF240412D41?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMzM1QUNEM0YtODhFRS00RDFGLUFCOTAtREVGMjQwNDEyRDQxP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/1D9C30B8-1A09-4AC2-AC05-46B85DAE9EAA?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMUQ5QzMwQjgtMUEwOS00QUMyLUFDMDUtNDZCODVEQUU5RUFBP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8c118ea4-2d1d-4764-a7b1-05dbabc7145c" + "504ac9b9-6bb6-4ca1-852e-27c71832eded" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2223,25 +2224,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e4a4992e-3621-42eb-8b77-2eab2205f6cc" + "dab5af44-11f4-4710-a135-9d2d217d3c64" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11998" ], "x-ms-correlation-request-id": [ - "b5ff2526-bbb7-45e6-8e54-527b6fe9f170" + "5b4ea5c9-d2db-42ce-ad94-aa5122152e4e" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214930Z:b5ff2526-bbb7-45e6-8e54-527b6fe9f170" + "WESTUS2:20221006T020141Z:5b4ea5c9-d2db-42ce-ad94-aa5122152e4e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:49:29 GMT" + "Thu, 06 Oct 2022 02:01:41 GMT" ], "Expires": [ "-1" @@ -2254,24 +2255,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3443/providers/Microsoft.EventGrid/domains?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczM0NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9041/providers/Microsoft.EventGrid/domains?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczkwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c27bd3e8-4b99-431d-bb0f-7d68ae3ced06" + "f668a2d9-8645-4bb9-8275-f44d7f4b38ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2280,16 +2281,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11999" ], "x-ms-request-id": [ - "64aded29-a846-424d-8c37-fffebaeee5c3" + "cd137144-7e9b-484b-9903-3f52a69479eb" ], "x-ms-correlation-request-id": [ - "64aded29-a846-424d-8c37-fffebaeee5c3" + "cd137144-7e9b-484b-9903-3f52a69479eb" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214930Z:64aded29-a846-424d-8c37-fffebaeee5c3" + "WESTUS2:20221006T020141Z:cd137144-7e9b-484b-9903-3f52a69479eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2298,7 +2299,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:49:29 GMT" + "Thu, 06 Oct 2022 02:01:40 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2314,24 +2315,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps261/providers/Microsoft.EventGrid/domains?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9622/providers/Microsoft.EventGrid/domains?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczk2MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "502975cc-c3e3-4b7e-ac52-dc9ce2b6e920" + "2cf25134-a137-423c-8123-0e2b945e6b68" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2343,25 +2344,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ea783f04-8317-4beb-bf32-44627b61b4d4" + "cd0e5875-8873-4e0d-8253-410c62a9622b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11999" ], "x-ms-correlation-request-id": [ - "b66eef12-e6fa-4b02-9726-e4aa5a4d2c1b" + "735cc6f5-212d-4d83-914a-928378b944d5" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214930Z:b66eef12-e6fa-4b02-9726-e4aa5a4d2c1b" + "WESTUS2:20221006T020142Z:735cc6f5-212d-4d83-914a-928378b944d5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:49:29 GMT" + "Thu, 06 Oct 2022 02:01:41 GMT" ], "Content-Length": [ "12" @@ -2377,24 +2378,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps3443?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczM0NDM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps9041?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczkwNDE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "49a85ffc-18ef-479c-b590-f9f828a1d883" + "baa554f7-9df5-45fa-a344-a0ee4fd69789" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2403,7 +2404,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzM0NDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzkwNDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2412,13 +2413,13 @@ "14999" ], "x-ms-request-id": [ - "af101b82-cf5f-493f-9284-a7cd62eb1a8e" + "a910be31-50e1-48d9-b4f8-b0571527c394" ], "x-ms-correlation-request-id": [ - "af101b82-cf5f-493f-9284-a7cd62eb1a8e" + "a910be31-50e1-48d9-b4f8-b0571527c394" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214930Z:af101b82-cf5f-493f-9284-a7cd62eb1a8e" + "WESTUS2:20221006T020143Z:a910be31-50e1-48d9-b4f8-b0571527c394" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2427,7 +2428,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:49:30 GMT" + "Thu, 06 Oct 2022 02:01:42 GMT" ], "Expires": [ "-1" @@ -2440,18 +2441,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzM0NDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpNME5ETXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzkwNDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXprd05ERXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2460,16 +2461,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11999" ], "x-ms-request-id": [ - "fe9e1e49-612f-4ece-9df1-c46259f7bddb" + "83f8e935-793a-4a98-b5f9-cf959395e1da" ], "x-ms-correlation-request-id": [ - "fe9e1e49-612f-4ece-9df1-c46259f7bddb" + "83f8e935-793a-4a98-b5f9-cf959395e1da" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214946Z:fe9e1e49-612f-4ece-9df1-c46259f7bddb" + "WESTUS2:20221006T020158Z:83f8e935-793a-4a98-b5f9-cf959395e1da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2478,7 +2479,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:49:45 GMT" + "Thu, 06 Oct 2022 02:01:58 GMT" ], "Expires": [ "-1" @@ -2491,18 +2492,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzM0NDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpNME5ETXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzkwNDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXprd05ERXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2511,16 +2512,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11998" ], "x-ms-request-id": [ - "43dc684c-b41a-4aaf-8078-43fd02ecf5bf" + "7f6b1c64-b9bc-4e47-8312-7389890adc1a" ], "x-ms-correlation-request-id": [ - "43dc684c-b41a-4aaf-8078-43fd02ecf5bf" + "7f6b1c64-b9bc-4e47-8312-7389890adc1a" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214946Z:43dc684c-b41a-4aaf-8078-43fd02ecf5bf" + "WESTUS2:20221006T020158Z:7f6b1c64-b9bc-4e47-8312-7389890adc1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2529,7 +2530,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:49:45 GMT" + "Thu, 06 Oct 2022 02:01:58 GMT" ], "Expires": [ "-1" @@ -2542,24 +2543,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps261?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczI2MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps9622?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczk2MjI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "669c7264-a926-461a-86fa-968bc944a1cb" + "728ae7d0-b5f4-4717-98a7-fb449a59ac1d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2568,22 +2569,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzI2MS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzk2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-request-id": [ - "e2f800f3-5c98-416d-8d05-d54afe16f8cf" + "a0cc6b0c-f5e4-4608-bbc3-dee4dd177e81" ], "x-ms-correlation-request-id": [ - "e2f800f3-5c98-416d-8d05-d54afe16f8cf" + "a0cc6b0c-f5e4-4608-bbc3-dee4dd177e81" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214946Z:e2f800f3-5c98-416d-8d05-d54afe16f8cf" + "WESTUS2:20221006T020159Z:a0cc6b0c-f5e4-4608-bbc3-dee4dd177e81" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2592,7 +2593,10 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:49:45 GMT" + "Thu, 06 Oct 2022 02:01:59 GMT" + ], + "Connection": [ + "close" ], "Expires": [ "-1" @@ -2605,18 +2609,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzI2MS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpJMk1TMVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzk2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXprMk1qSXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2625,16 +2629,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11999" ], "x-ms-request-id": [ - "366a1c4f-cfe9-4a27-b1f9-acb3ccb9a11a" + "b5d6a891-cc86-4b9b-8a2c-f18d5c9f1758" ], "x-ms-correlation-request-id": [ - "366a1c4f-cfe9-4a27-b1f9-acb3ccb9a11a" + "b5d6a891-cc86-4b9b-8a2c-f18d5c9f1758" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215001Z:366a1c4f-cfe9-4a27-b1f9-acb3ccb9a11a" + "WESTUS2:20221006T020215Z:b5d6a891-cc86-4b9b-8a2c-f18d5c9f1758" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2643,7 +2647,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:50:01 GMT" + "Thu, 06 Oct 2022 02:02:14 GMT" ], "Expires": [ "-1" @@ -2656,18 +2660,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzI2MS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpJMk1TMVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzk2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXprMk1qSXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2676,16 +2680,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11998" ], "x-ms-request-id": [ - "43580601-9556-44f6-9fa9-2a36022c8d2c" + "45489423-9ac1-4695-97a0-1825028dfa53" ], "x-ms-correlation-request-id": [ - "43580601-9556-44f6-9fa9-2a36022c8d2c" + "45489423-9ac1-4695-97a0-1825028dfa53" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215001Z:43580601-9556-44f6-9fa9-2a36022c8d2c" + "WESTUS2:20221006T020215Z:45489423-9ac1-4695-97a0-1825028dfa53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2694,7 +2698,10 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:50:01 GMT" + "Thu, 06 Oct 2022 02:02:14 GMT" + ], + "Connection": [ + "close" ], "Expires": [ "-1" @@ -2709,12 +2716,12 @@ ], "Names": { "": [ - "ps5101", - "ps782", - "ps229", - "ps6818", - "ps3443", - "ps261" + "ps1638", + "ps9117", + "ps9533", + "ps583", + "ps9041", + "ps9622" ] }, "Variables": { diff --git a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.DomainTests/EventGrid_DomainsGetKey.json b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.DomainTests/EventGrid_DomainsGetKey.json index 3343102ed995..020d431e5a2a 100644 --- a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.DomainTests/EventGrid_DomainsGetKey.json +++ b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.DomainTests/EventGrid_DomainsGetKey.json @@ -1,22 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps6331?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczYzMzE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps1016?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczEwMTY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "09ec054a-7158-4ed9-b832-3a5c6453db4c" + "e7276a1f-0455-4bde-ab19-3a1be4c6dc1b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,6 +24,7 @@ "35" ] }, + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "60db2999-5503-4592-be67-a9a7ae20059c" + "d340d545-70f3-4911-ad6f-183f2eae8586" ], "x-ms-correlation-request-id": [ - "60db2999-5503-4592-be67-a9a7ae20059c" + "d340d545-70f3-4911-ad6f-183f2eae8586" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215336Z:60db2999-5503-4592-be67-a9a7ae20059c" + "WESTUS2:20221006T020737Z:d340d545-70f3-4911-ad6f-183f2eae8586" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:53:35 GMT" + "Thu, 06 Oct 2022 02:07:37 GMT" ], "Content-Length": [ "186" @@ -63,26 +63,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6331\",\r\n \"name\": \"RGName-ps6331\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1016\",\r\n \"name\": \"RGName-ps1016\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6331/providers/Microsoft.EventGrid/domains/PSTestDomain-ps3221?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczYzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHMzMjIxP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1016/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2403?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczEwMTYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHMyNDAzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "63a28221-cc65-4b0d-ab17-e67de4c31b24" + "947c3f14-6787-43c6-8a7c-20121017c969" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -91,6 +90,7 @@ "272" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -105,10 +105,10 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/3C87C757-0170-4421-ABC2-F3BBB5853AC8?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/852FF85F-9A01-4CE8-B904-475CC4980126?api-version=2022-06-15" ], "x-ms-request-id": [ - "8658b435-5656-4ccc-9cfd-84b22866eaa1" + "81b8d17e-2b50-4ecd-8b36-8d2ee96d5cdc" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -117,16 +117,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "ce9c037c-6b61-4d96-ab6c-2202e170867d" + "d3675f86-e3ff-4da3-89c2-5b8c8fca880b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T215338Z:ce9c037c-6b61-4d96-ab6c-2202e170867d" + "WESTUS2:20221006T020739Z:d3675f86-e3ff-4da3-89c2-5b8c8fca880b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:53:37 GMT" + "Thu, 06 Oct 2022 02:07:38 GMT" ], "Content-Length": [ "510" @@ -138,25 +138,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6331/providers/Microsoft.EventGrid/domains/PSTestDomain-ps3221\",\r\n \"name\": \"PSTestDomain-ps3221\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1016/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2403\",\r\n \"name\": \"PSTestDomain-ps2403\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/3C87C757-0170-4421-ABC2-F3BBB5853AC8?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvM0M4N0M3NTctMDE3MC00NDIxLUFCQzItRjNCQkI1ODUzQUM4P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/852FF85F-9A01-4CE8-B904-475CC4980126?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvODUyRkY4NUYtOUEwMS00Q0U4LUI5MDQtNDc1Q0M0OTgwMTI2P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "63a28221-cc65-4b0d-ab17-e67de4c31b24" + "947c3f14-6787-43c6-8a7c-20121017c969" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -168,7 +168,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e7327935-989b-449c-a75c-1251cf694a91" + "256458ff-3d8a-4f84-b0c6-f84b42073f6a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -177,16 +177,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "8aa1a091-0ea4-4342-83ce-3b73c21a06b0" + "1dda86d2-7af0-40b1-95f3-1c859e8af9b8" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T215348Z:8aa1a091-0ea4-4342-83ce-3b73c21a06b0" + "WESTUS2:20221006T020749Z:1dda86d2-7af0-40b1-95f3-1c859e8af9b8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:53:47 GMT" + "Thu, 06 Oct 2022 02:07:48 GMT" ], "Content-Length": [ "286" @@ -198,25 +198,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/3C87C757-0170-4421-ABC2-F3BBB5853AC8?api-version=2021-12-01\",\r\n \"name\": \"3c87c757-0170-4421-abc2-f3bbb5853ac8\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/852FF85F-9A01-4CE8-B904-475CC4980126?api-version=2022-06-15\",\r\n \"name\": \"852ff85f-9a01-4ce8-b904-475cc4980126\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6331/providers/Microsoft.EventGrid/domains/PSTestDomain-ps3221?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczYzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHMzMjIxP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1016/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2403?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczEwMTYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHMyNDAzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "63a28221-cc65-4b0d-ab17-e67de4c31b24" + "947c3f14-6787-43c6-8a7c-20121017c969" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -228,7 +228,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8c59f499-0d01-4154-8f44-513166ea1ac9" + "e6039112-2f47-4560-a08e-bfd889d52b5a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -237,19 +237,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "fa2ef493-4dda-4ede-a92f-4b88efa0ce0a" + "7a311643-8536-4b34-95b1-8d75adda4e21" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T215348Z:fa2ef493-4dda-4ede-a92f-4b88efa0ce0a" + "WESTUS2:20221006T020749Z:7a311643-8536-4b34-95b1-8d75adda4e21" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:53:47 GMT" + "Thu, 06 Oct 2022 02:07:48 GMT" ], "Content-Length": [ - "641" + "681" ], "Content-Type": [ "application/json; charset=utf-8" @@ -258,28 +258,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps3221.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"60358fc0-7bb6-467c-8d3c-5212b64d4b2f\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6331/providers/Microsoft.EventGrid/domains/PSTestDomain-ps3221\",\r\n \"name\": \"PSTestDomain-ps3221\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps2403.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9cccb369-b29f-4ab9-bf3e-f638a508ec20\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1016/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2403\",\r\n \"name\": \"PSTestDomain-ps2403\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6331/providers/Microsoft.EventGrid/domains/PSTestDomain-ps3221?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczYzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHMzMjIxP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1016/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2403?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczEwMTYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHMyNDAzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f3cfac06-a516-43f4-b628-b06453c82730" + "787a0e85-28ee-43b2-8932-9b113eaffd3d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -291,28 +291,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3b579be0-2b34-4416-a4bd-77c81ec5fcd7" + "178f482c-3486-492c-aba0-14126a1b15a5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-correlation-request-id": [ - "b7c143fc-39a5-46ab-bc05-6889c4fa3452" + "c114b9d7-11b1-4d2b-a7e9-54af5ab14b38" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T215349Z:b7c143fc-39a5-46ab-bc05-6889c4fa3452" + "WESTUS2:20221006T020750Z:c114b9d7-11b1-4d2b-a7e9-54af5ab14b38" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:53:48 GMT" + "Thu, 06 Oct 2022 02:07:50 GMT" ], "Content-Length": [ - "641" + "681" ], "Content-Type": [ "application/json; charset=utf-8" @@ -321,28 +321,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps3221.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"60358fc0-7bb6-467c-8d3c-5212b64d4b2f\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6331/providers/Microsoft.EventGrid/domains/PSTestDomain-ps3221\",\r\n \"name\": \"PSTestDomain-ps3221\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps2403.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9cccb369-b29f-4ab9-bf3e-f638a508ec20\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1016/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2403\",\r\n \"name\": \"PSTestDomain-ps2403\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6331/providers/Microsoft.EventGrid/domains/PSTestDomain-ps3221/listKeys?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczYzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHMzMjIxL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1016/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2403/listKeys?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczEwMTYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHMyNDAzL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ccd69fdb-9a71-4072-8a5e-41058f843895" + "2ff4d91d-2855-42a0-8cc2-a86d1b9f6028" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -354,7 +354,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "12d89649-f057-45f2-80bf-ac606c33d178" + "baeecff1-ca84-426d-89cf-92f777ec9487" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -363,16 +363,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "127731e6-cba4-4151-8255-15fd5ef43fb0" + "d3d97220-c571-4c9c-a731-57c8f8b9bf87" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T215348Z:127731e6-cba4-4151-8255-15fd5ef43fb0" + "WESTUS2:20221006T020750Z:d3d97220-c571-4c9c-a731-57c8f8b9bf87" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:53:48 GMT" + "Thu, 06 Oct 2022 02:07:49 GMT" ], "Content-Length": [ "109" @@ -384,28 +384,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"key1\": \"vETYY3zDIACH+Y5bEUILi2sib5KWemMmQgU3ovBLFnc=\",\r\n \"key2\": \"nmLPAxDv4RkvNh6bGFRvdrVKup4LRH9vAYA75lmxzJI=\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"Hzbr08bG7p0wVR+1SGafkS2Xgt+nq431vObv0HF6U0A=\",\r\n \"key2\": \"vZCYoc0TPjePN8/JX49+C7StG0SywYWn2mogZAGKT2Y=\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6331/providers/Microsoft.EventGrid/domains/PSTestDomain-ps3221/listKeys?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczYzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHMzMjIxL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1016/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2403/listKeys?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczEwMTYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHMyNDAzL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6196558-e30f-4ea8-9a5b-1b606ea7d426" + "9843a40d-4afd-414a-b231-60f064e0560b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -417,25 +417,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "20301333-6de4-4b80-bab5-b1f55bcd3bc8" + "e374be0e-6124-4b36-b502-78db9215b5c4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "d4c3909c-df2e-4295-a0ff-c51a8e5dd837" + "d29fea38-ca3f-4f67-a8b6-295eaf226534" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T215349Z:d4c3909c-df2e-4295-a0ff-c51a8e5dd837" + "WESTUS2:20221006T020750Z:d29fea38-ca3f-4f67-a8b6-295eaf226534" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:53:48 GMT" + "Thu, 06 Oct 2022 02:07:50 GMT" ], "Content-Length": [ "109" @@ -447,28 +447,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"key1\": \"vETYY3zDIACH+Y5bEUILi2sib5KWemMmQgU3ovBLFnc=\",\r\n \"key2\": \"nmLPAxDv4RkvNh6bGFRvdrVKup4LRH9vAYA75lmxzJI=\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"Hzbr08bG7p0wVR+1SGafkS2Xgt+nq431vObv0HF6U0A=\",\r\n \"key2\": \"vZCYoc0TPjePN8/JX49+C7StG0SywYWn2mogZAGKT2Y=\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6331/providers/Microsoft.EventGrid/domains/PSTestDomain-ps3221/listKeys?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczYzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHMzMjIxL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1016/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2403/listKeys?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczEwMTYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHMyNDAzL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f3cfac06-a516-43f4-b628-b06453c82730" + "787a0e85-28ee-43b2-8932-9b113eaffd3d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -480,25 +480,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9bb35a99-da02-46d2-a5c1-102a1a1b49a2" + "7d74525e-aa64-4b26-9579-3446e4052800" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "ac5b99b0-b160-4ddb-9a42-b5d37b0c16cc" + "3f2d92d4-0538-4af6-8421-7fac92a8abe8" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T215349Z:ac5b99b0-b160-4ddb-9a42-b5d37b0c16cc" + "WESTUS2:20221006T020751Z:3f2d92d4-0538-4af6-8421-7fac92a8abe8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:53:48 GMT" + "Thu, 06 Oct 2022 02:07:51 GMT" ], "Content-Length": [ "109" @@ -510,28 +510,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"key1\": \"vETYY3zDIACH+Y5bEUILi2sib5KWemMmQgU3ovBLFnc=\",\r\n \"key2\": \"nmLPAxDv4RkvNh6bGFRvdrVKup4LRH9vAYA75lmxzJI=\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"Hzbr08bG7p0wVR+1SGafkS2Xgt+nq431vObv0HF6U0A=\",\r\n \"key2\": \"vZCYoc0TPjePN8/JX49+C7StG0SywYWn2mogZAGKT2Y=\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6331/providers/Microsoft.EventGrid/domains/PSTestDomain-ps3221?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczYzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHMzMjIxP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1016/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2403?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczEwMTYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHMyNDAzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99c0c7ff-6b44-47cf-9714-d3606aa186b8" + "5e522c52-3d8e-4f7b-be8f-5f0747f7de73" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -540,7 +540,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/DC669ED7-5DB5-4D40-B71A-6183EFDEFB9C?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/A984D63D-8751-4BAB-A015-F44841337C2F?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -549,7 +549,7 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/DC669ED7-5DB5-4D40-B71A-6183EFDEFB9C?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/A984D63D-8751-4BAB-A015-F44841337C2F?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -558,19 +558,19 @@ "14999" ], "x-ms-request-id": [ - "5c30c1c0-c0ea-4a16-a0ca-86691be1d83a" + "634a3e65-fc5e-496c-b708-8917e39f8cc4" ], "x-ms-correlation-request-id": [ - "5c30c1c0-c0ea-4a16-a0ca-86691be1d83a" + "634a3e65-fc5e-496c-b708-8917e39f8cc4" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T215349Z:5c30c1c0-c0ea-4a16-a0ca-86691be1d83a" + "WESTUS2:20221006T020752Z:634a3e65-fc5e-496c-b708-8917e39f8cc4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:53:49 GMT" + "Thu, 06 Oct 2022 02:07:52 GMT" ], "Expires": [ "-1" @@ -583,21 +583,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/DC669ED7-5DB5-4D40-B71A-6183EFDEFB9C?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvREM2NjlFRDctNURCNS00RDQwLUI3MUEtNjE4M0VGREVGQjlDP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/A984D63D-8751-4BAB-A015-F44841337C2F?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvQTk4NEQ2M0QtODc1MS00QkFCLUEwMTUtRjQ0ODQxMzM3QzJGP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99c0c7ff-6b44-47cf-9714-d3606aa186b8" + "5e522c52-3d8e-4f7b-be8f-5f0747f7de73" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -609,25 +609,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dba41701-b689-460f-bf89-9c2a607cb2ba" + "8e14ce62-c4a9-41ec-83b9-f03b9110606b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-correlation-request-id": [ - "632774fc-d93a-4ae4-b778-c88f7e578a5b" + "7ebfc07f-38a0-468b-a32c-bc569b6964ce" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T215359Z:632774fc-d93a-4ae4-b778-c88f7e578a5b" + "WESTUS2:20221006T020802Z:7ebfc07f-38a0-468b-a32c-bc569b6964ce" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:53:59 GMT" + "Thu, 06 Oct 2022 02:08:02 GMT" ], "Content-Length": [ "286" @@ -639,25 +639,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/DC669ED7-5DB5-4D40-B71A-6183EFDEFB9C?api-version=2021-12-01\",\r\n \"name\": \"dc669ed7-5db5-4d40-b71a-6183efdefb9c\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/A984D63D-8751-4BAB-A015-F44841337C2F?api-version=2022-06-15\",\r\n \"name\": \"a984d63d-8751-4bab-a015-f44841337c2f\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/DC669ED7-5DB5-4D40-B71A-6183EFDEFB9C?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvREM2NjlFRDctNURCNS00RDQwLUI3MUEtNjE4M0VGREVGQjlDP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/A984D63D-8751-4BAB-A015-F44841337C2F?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvQTk4NEQ2M0QtODc1MS00QkFCLUEwMTUtRjQ0ODQxMzM3QzJGP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99c0c7ff-6b44-47cf-9714-d3606aa186b8" + "5e522c52-3d8e-4f7b-be8f-5f0747f7de73" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -669,25 +669,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9c49b1b4-be01-4cc2-bc14-aaee48a85367" + "f0f4af4b-7afd-4cc9-aad9-a47cc5c1b758" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11997" ], "x-ms-correlation-request-id": [ - "d1da6fc1-4df9-4ebb-ad8a-e674fb74d968" + "645f2c6d-c291-4c9f-ac8c-75e2051bdba8" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T215359Z:d1da6fc1-4df9-4ebb-ad8a-e674fb74d968" + "WESTUS2:20221006T020802Z:645f2c6d-c291-4c9f-ac8c-75e2051bdba8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:53:59 GMT" + "Thu, 06 Oct 2022 02:08:02 GMT" ], "Expires": [ "-1" @@ -700,24 +700,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps6331?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczYzMzE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps1016?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczEwMTY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b3c7e08-0f74-4f10-b8f7-d79196a99536" + "33e32ea7-78a0-4312-9c39-8f4a9826ebd2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -726,22 +726,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzYzMzEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzEwMTYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-request-id": [ - "b18ccf2e-6987-4571-a643-ef806217ed04" + "d9268b59-92e6-49d0-9d05-a4e588dd3326" ], "x-ms-correlation-request-id": [ - "b18ccf2e-6987-4571-a643-ef806217ed04" + "d9268b59-92e6-49d0-9d05-a4e588dd3326" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215400Z:b18ccf2e-6987-4571-a643-ef806217ed04" + "WESTUS2:20221006T020803Z:d9268b59-92e6-49d0-9d05-a4e588dd3326" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -750,7 +750,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:53:59 GMT" + "Thu, 06 Oct 2022 02:08:02 GMT" ], "Expires": [ "-1" @@ -763,18 +763,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzYzMzEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpZek16RXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzEwMTYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpFd01UWXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -783,16 +783,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-request-id": [ - "8786eea3-37a3-482d-a0d9-8533fe0bd35b" + "dacac42c-8209-4826-bd2b-8abea14eb787" ], "x-ms-correlation-request-id": [ - "8786eea3-37a3-482d-a0d9-8533fe0bd35b" + "dacac42c-8209-4826-bd2b-8abea14eb787" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215415Z:8786eea3-37a3-482d-a0d9-8533fe0bd35b" + "WESTUS2:20221006T020818Z:dacac42c-8209-4826-bd2b-8abea14eb787" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -801,7 +801,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:54:15 GMT" + "Thu, 06 Oct 2022 02:08:18 GMT" ], "Expires": [ "-1" @@ -814,18 +814,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzYzMzEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpZek16RXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzEwMTYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpFd01UWXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -834,16 +834,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11996" ], "x-ms-request-id": [ - "fb920024-8420-43b5-b023-cdc91d67a7d7" + "09b3a633-8ea0-4f29-a669-00f685be33ff" ], "x-ms-correlation-request-id": [ - "fb920024-8420-43b5-b023-cdc91d67a7d7" + "09b3a633-8ea0-4f29-a669-00f685be33ff" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215415Z:fb920024-8420-43b5-b023-cdc91d67a7d7" + "WESTUS2:20221006T020818Z:09b3a633-8ea0-4f29-a669-00f685be33ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -852,7 +852,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:54:15 GMT" + "Thu, 06 Oct 2022 02:08:18 GMT" ], "Expires": [ "-1" @@ -867,8 +867,8 @@ ], "Names": { "": [ - "ps3221", - "ps6331" + "ps2403", + "ps1016" ] }, "Variables": { diff --git a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.DomainTests/EventGrid_DomainsInputMappingCreateGetAndDelete.json b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.DomainTests/EventGrid_DomainsInputMappingCreateGetAndDelete.json index 3b8311bb7c8a..0d03d97b7300 100644 --- a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.DomainTests/EventGrid_DomainsInputMappingCreateGetAndDelete.json +++ b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.DomainTests/EventGrid_DomainsInputMappingCreateGetAndDelete.json @@ -1,22 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps2644?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczI2NDQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps7943?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczc5NDM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cad82502-e1b8-4c13-b151-4e4310ed5f8c" + "1679bf10-7527-46b4-9fa0-a2a62dcec118" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,6 +24,7 @@ "35" ] }, + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "ea786042-ec83-48fc-ae0c-2e7ea7b372fb" + "c64cb57b-82ec-4e67-b157-ffa3c837c298" ], "x-ms-correlation-request-id": [ - "ea786042-ec83-48fc-ae0c-2e7ea7b372fb" + "c64cb57b-82ec-4e67-b157-ffa3c837c298" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215055Z:ea786042-ec83-48fc-ae0c-2e7ea7b372fb" + "WESTUS2:20221006T020453Z:c64cb57b-82ec-4e67-b157-ffa3c837c298" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:50:54 GMT" + "Thu, 06 Oct 2022 02:04:53 GMT" ], "Content-Length": [ "186" @@ -63,26 +63,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644\",\r\n \"name\": \"RGName-ps2644\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943\",\r\n \"name\": \"RGName-ps7943\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps5265?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM1MjY1P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps5018?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczc5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM1MDE4P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"eventgriDSChemA\",\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "99eeda82-75fb-4de7-b8c3-a757d0c8960c" + "4ecddb99-9101-4a68-bcc9-6530d1fe86e6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -91,6 +90,7 @@ "272" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"eventgriDSChemA\",\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -105,10 +105,10 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/D12DE6E8-9272-4BC4-8095-A4B22EE10C5D?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/F79B2FDA-D89E-43C1-A64D-76B738587A64?api-version=2022-06-15" ], "x-ms-request-id": [ - "4361a89c-a453-4d30-987a-e28adffdce00" + "4efbf3b6-593b-4f73-a88c-65f93af011b9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -117,16 +117,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "3b8457dc-bcce-4d20-a42f-b869c13d3fd4" + "a1c7fad6-20cb-48e8-a322-f49d48aca490" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215058Z:3b8457dc-bcce-4d20-a42f-b869c13d3fd4" + "WESTUS2:20221006T020456Z:a1c7fad6-20cb-48e8-a322-f49d48aca490" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:50:58 GMT" + "Thu, 06 Oct 2022 02:04:55 GMT" ], "Content-Length": [ "510" @@ -138,25 +138,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps5265\",\r\n \"name\": \"PSTestDomain-ps5265\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps5018\",\r\n \"name\": \"PSTestDomain-ps5018\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/D12DE6E8-9272-4BC4-8095-A4B22EE10C5D?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRDEyREU2RTgtOTI3Mi00QkM0LTgwOTUtQTRCMjJFRTEwQzVEP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/F79B2FDA-D89E-43C1-A64D-76B738587A64?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRjc5QjJGREEtRDg5RS00M0MxLUE2NEQtNzZCNzM4NTg3QTY0P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99eeda82-75fb-4de7-b8c3-a757d0c8960c" + "4ecddb99-9101-4a68-bcc9-6530d1fe86e6" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -168,7 +168,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c4b9b22f-0923-44d5-8139-34466e45ef35" + "10d1f7f0-ae31-4a51-8ca5-9047490f5c4c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -177,16 +177,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "8b70ea99-0d32-4572-a430-aa194e9fb0fc" + "ba3748b7-d149-45f5-b42d-3de3ee9f0e39" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215108Z:8b70ea99-0d32-4572-a430-aa194e9fb0fc" + "WESTUS2:20221006T020506Z:ba3748b7-d149-45f5-b42d-3de3ee9f0e39" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:51:08 GMT" + "Thu, 06 Oct 2022 02:05:05 GMT" ], "Content-Length": [ "286" @@ -198,25 +198,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/D12DE6E8-9272-4BC4-8095-A4B22EE10C5D?api-version=2021-12-01\",\r\n \"name\": \"d12de6e8-9272-4bc4-8095-a4b22ee10c5d\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/F79B2FDA-D89E-43C1-A64D-76B738587A64?api-version=2022-06-15\",\r\n \"name\": \"f79b2fda-d89e-43c1-a64d-76b738587a64\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps5265?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM1MjY1P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps5018?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczc5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM1MDE4P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99eeda82-75fb-4de7-b8c3-a757d0c8960c" + "4ecddb99-9101-4a68-bcc9-6530d1fe86e6" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -228,7 +228,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1d2e7585-78d5-42e8-b6eb-7fa82015450a" + "6bd19ec1-e171-4832-8dba-e40d8c93b9d5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -237,19 +237,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "857ca510-a32e-4097-8b71-b2030b1f786a" + "10b2e470-1ae4-440e-b043-0184cd44dffe" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215109Z:857ca510-a32e-4097-8b71-b2030b1f786a" + "WESTUS2:20221006T020506Z:10b2e470-1ae4-440e-b043-0184cd44dffe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:51:08 GMT" + "Thu, 06 Oct 2022 02:05:05 GMT" ], "Content-Length": [ - "641" + "681" ], "Content-Type": [ "application/json; charset=utf-8" @@ -258,28 +258,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps5265.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"4849b7a4-9f17-45cf-92fa-1539d495ac23\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps5265\",\r\n \"name\": \"PSTestDomain-ps5265\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps5018.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"42da169c-69e6-49aa-b279-297c4a74ec46\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps5018\",\r\n \"name\": \"PSTestDomain-ps5018\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps5265?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM1MjY1P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps5018?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczc5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM1MDE4P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eebeee71-c35c-4550-90cf-55e18d66e40d" + "f4fefb1c-4384-432c-bacf-fd97b5d0981c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -291,28 +291,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8cc4598a-3c6f-4616-9cd2-548910efdc6c" + "f6e01149-6ba8-41ff-a721-3591fb1c9a93" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-correlation-request-id": [ - "1324ecf0-748b-4af1-bef0-e2aceedb85cd" + "e0cf46a6-5934-4d8e-be01-d0b3c8397c5a" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215109Z:1324ecf0-748b-4af1-bef0-e2aceedb85cd" + "WESTUS2:20221006T020506Z:e0cf46a6-5934-4d8e-be01-d0b3c8397c5a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:51:08 GMT" + "Thu, 06 Oct 2022 02:05:05 GMT" ], "Content-Length": [ - "641" + "681" ], "Content-Type": [ "application/json; charset=utf-8" @@ -321,26 +321,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps5265.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"4849b7a4-9f17-45cf-92fa-1539d495ac23\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps5265\",\r\n \"name\": \"PSTestDomain-ps5265\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps5018.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"42da169c-69e6-49aa-b279-297c4a74ec46\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps5018\",\r\n \"name\": \"PSTestDomain-ps5018\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7174?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM3MTc0P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps6?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczc5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM2P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"eventgridschema\",\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1dc0d802-2368-4692-a3a5-57cfce9080a9" + "25c3caa7-141d-4a1e-ad0c-a2534698fb36" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -349,6 +348,7 @@ "337" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"eventgridschema\",\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -363,31 +363,31 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/D16DFEF6-2109-471F-A82E-9DEB341831DB?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/2D8AEF62-EF93-4E3E-B671-D9F91EF6689B?api-version=2022-06-15" ], "x-ms-request-id": [ - "e301810a-2ab6-41a6-a322-d4fee154ac62" + "43c62ca4-bb8d-451b-9ad0-3eb7e647015a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "036a1477-4ebc-444f-ab6f-3522bbd36079" + "61482ef4-d3d9-4e7e-bd1e-47ba5fbcfaf0" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215110Z:036a1477-4ebc-444f-ab6f-3522bbd36079" + "WESTUS2:20221006T020508Z:61482ef4-d3d9-4e7e-bd1e-47ba5fbcfaf0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:51:09 GMT" + "Thu, 06 Oct 2022 02:05:07 GMT" ], "Content-Length": [ - "540" + "534" ], "Content-Type": [ "application/json; charset=utf-8" @@ -396,25 +396,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7174\",\r\n \"name\": \"PSTestDomain-ps7174\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps6\",\r\n \"name\": \"PSTestDomain-ps6\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/D16DFEF6-2109-471F-A82E-9DEB341831DB?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRDE2REZFRjYtMjEwOS00NzFGLUE4MkUtOURFQjM0MTgzMURCP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/2D8AEF62-EF93-4E3E-B671-D9F91EF6689B?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMkQ4QUVGNjItRUY5My00RTNFLUI2NzEtRDlGOTFFRjY2ODlCP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1dc0d802-2368-4692-a3a5-57cfce9080a9" + "25c3caa7-141d-4a1e-ad0c-a2534698fb36" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -426,25 +426,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ec27049f-02f9-4b83-af9a-4ff0ea677f8e" + "323a5d86-2ff3-4ff8-8aa9-1a66866f7fe8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11999" ], "x-ms-correlation-request-id": [ - "9e70189c-3cf8-46f4-a4ba-83c134c4615a" + "c763b077-df10-40e4-a9a9-425010a08183" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215120Z:9e70189c-3cf8-46f4-a4ba-83c134c4615a" + "WESTUS2:20221006T020518Z:c763b077-df10-40e4-a9a9-425010a08183" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:51:20 GMT" + "Thu, 06 Oct 2022 02:05:18 GMT" ], "Content-Length": [ "286" @@ -456,25 +456,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/D16DFEF6-2109-471F-A82E-9DEB341831DB?api-version=2021-12-01\",\r\n \"name\": \"d16dfef6-2109-471f-a82e-9deb341831db\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/2D8AEF62-EF93-4E3E-B671-D9F91EF6689B?api-version=2022-06-15\",\r\n \"name\": \"2d8aef62-ef93-4e3e-b671-d9f91ef6689b\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7174?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM3MTc0P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps6?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczc5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM2P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1dc0d802-2368-4692-a3a5-57cfce9080a9" + "25c3caa7-141d-4a1e-ad0c-a2534698fb36" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -486,28 +486,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e94ac40d-3e4d-4244-8e3e-35abe1affffb" + "7e7265a9-223d-4f23-93da-37cfb00c46c5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11998" ], "x-ms-correlation-request-id": [ - "6cef7157-da13-4e73-b6be-9dd61b00fc27" + "f2f4429a-ff4e-4e43-aa85-33151b3486c6" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215120Z:6cef7157-da13-4e73-b6be-9dd61b00fc27" + "WESTUS2:20221006T020519Z:f2f4429a-ff4e-4e43-aa85-33151b3486c6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:51:20 GMT" + "Thu, 06 Oct 2022 02:05:18 GMT" ], "Content-Length": [ - "671" + "702" ], "Content-Type": [ "application/json; charset=utf-8" @@ -516,26 +516,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps7174.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"98841322-2457-4f80-8bb1-a41847b6dccf\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7174\",\r\n \"name\": \"PSTestDomain-ps7174\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps6.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"93619799-32af-42f5-9a63-db265c88694c\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps6\",\r\n \"name\": \"PSTestDomain-ps6\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps4096?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM0MDk2P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7636?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczc5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM3NjM2P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"CloUDEventScHemaV1_0\",\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "46bb5f78-11d3-43d3-810c-83e2d4fde79e" + "c8db971b-2096-458c-ab34-260a98cf0a60" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -544,6 +543,7 @@ "277" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"CloUDEventScHemaV1_0\",\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -558,28 +558,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/91B95D99-2CD2-457C-ACC7-2CA5723E0A4B?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/0265BD7B-5740-480E-A2E5-2B7E27241286?api-version=2022-06-15" ], "x-ms-request-id": [ - "c68c2a12-5cf6-4606-b819-0b34783419ad" + "756a0175-980a-4812-8f79-d3eda05a5b90" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "38450815-ab9b-437c-9608-90d5275fcd21" + "bf03bfab-f62b-4540-b399-fc3e7f195def" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215121Z:38450815-ab9b-437c-9608-90d5275fcd21" + "WESTUS2:20221006T020521Z:bf03bfab-f62b-4540-b399-fc3e7f195def" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:51:21 GMT" + "Thu, 06 Oct 2022 02:05:20 GMT" ], "Content-Length": [ "515" @@ -591,25 +591,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps4096\",\r\n \"name\": \"PSTestDomain-ps4096\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7636\",\r\n \"name\": \"PSTestDomain-ps7636\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/91B95D99-2CD2-457C-ACC7-2CA5723E0A4B?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvOTFCOTVEOTktMkNEMi00NTdDLUFDQzctMkNBNTcyM0UwQTRCP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/0265BD7B-5740-480E-A2E5-2B7E27241286?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMDI2NUJEN0ItNTc0MC00ODBFLUEyRTUtMkI3RTI3MjQxMjg2P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46bb5f78-11d3-43d3-810c-83e2d4fde79e" + "c8db971b-2096-458c-ab34-260a98cf0a60" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -621,25 +621,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dfb03bfe-a646-494f-85dc-2934976b0e8a" + "3e7769a4-8031-421d-9325-5c00cc639b47" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11999" ], "x-ms-correlation-request-id": [ - "a9b8c5ad-da90-4451-9e83-ebd0daf85bff" + "8e5b748c-c317-4a7f-8c1b-5b1971c79535" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215131Z:a9b8c5ad-da90-4451-9e83-ebd0daf85bff" + "WESTUS2:20221006T020531Z:8e5b748c-c317-4a7f-8c1b-5b1971c79535" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:51:30 GMT" + "Thu, 06 Oct 2022 02:05:31 GMT" ], "Content-Length": [ "286" @@ -651,25 +651,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/91B95D99-2CD2-457C-ACC7-2CA5723E0A4B?api-version=2021-12-01\",\r\n \"name\": \"91b95d99-2cd2-457c-acc7-2ca5723e0a4b\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/0265BD7B-5740-480E-A2E5-2B7E27241286?api-version=2022-06-15\",\r\n \"name\": \"0265bd7b-5740-480e-a2e5-2b7e27241286\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps4096?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM0MDk2P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7636?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczc5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM3NjM2P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46bb5f78-11d3-43d3-810c-83e2d4fde79e" + "c8db971b-2096-458c-ab34-260a98cf0a60" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -681,28 +681,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fce45dfc-e274-4a93-9795-fb24b9d24329" + "ff768149-4eb1-4539-a146-9dacbe504a0d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11998" ], "x-ms-correlation-request-id": [ - "5ce71dc6-6898-43cd-8818-b47ec5c5369b" + "4ebf0a49-2db2-421e-b80a-16378a843529" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215131Z:5ce71dc6-6898-43cd-8818-b47ec5c5369b" + "WESTUS2:20221006T020531Z:4ebf0a49-2db2-421e-b80a-16378a843529" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:51:30 GMT" + "Thu, 06 Oct 2022 02:05:31 GMT" ], "Content-Length": [ - "646" + "686" ], "Content-Type": [ "application/json; charset=utf-8" @@ -711,28 +711,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps4096.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"400055b5-7b23-4dae-b1d1-5524c8b5f564\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps4096\",\r\n \"name\": \"PSTestDomain-ps4096\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps7636.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"57dc31aa-63fd-4666-8016-66c75a86e7a3\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7636\",\r\n \"name\": \"PSTestDomain-ps7636\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps4096?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM0MDk2P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7636?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczc5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM3NjM2P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae830b87-91c6-45fc-bcfe-24b0b9dc7965" + "3593a7dd-f34f-46a5-aa23-02099fdbe09a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -744,28 +744,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "de8d31fd-0e80-41e9-99a2-9555e43b5ad6" + "6a829e00-e8be-48d4-81b5-740b27c73c50" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11999" ], "x-ms-correlation-request-id": [ - "0bc8379f-c259-4afa-a2f6-4fc0e8288994" + "9e14262b-53b7-496c-a3d1-8b21c6e4b412" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215142Z:0bc8379f-c259-4afa-a2f6-4fc0e8288994" + "WESTUS2:20221006T020543Z:9e14262b-53b7-496c-a3d1-8b21c6e4b412" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:51:41 GMT" + "Thu, 06 Oct 2022 02:05:43 GMT" ], "Content-Length": [ - "646" + "686" ], "Content-Type": [ "application/json; charset=utf-8" @@ -774,26 +774,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps4096.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"400055b5-7b23-4dae-b1d1-5524c8b5f564\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps4096\",\r\n \"name\": \"PSTestDomain-ps4096\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps7636.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"57dc31aa-63fd-4666-8016-66c75a86e7a3\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7636\",\r\n \"name\": \"PSTestDomain-ps7636\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps6868?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM2ODY4P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps4165?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczc5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM0MTY1P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"ClOudEveNtSCHemav1_0\",\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7f107dfe-4776-497a-86fd-9d8afceab031" + "c8d6262a-2631-4ea0-9b0a-ed39d6515c01" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -802,6 +801,7 @@ "277" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"ClOudEveNtSCHemav1_0\",\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -816,28 +816,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/586B774D-5540-4BAA-842A-490AC9E0497D?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/1FED076A-A265-4874-AF02-04A096966C5D?api-version=2022-06-15" ], "x-ms-request-id": [ - "5b2fa58b-60e7-4ef0-9ec5-1e3180e57d12" + "5a8f8310-57ef-4495-bd18-562b64d6151b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "97da332c-f4e6-43b9-950f-c8b68aaaad3f" + "14f6c243-fdfc-4065-95f4-d1804f9734d2" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215132Z:97da332c-f4e6-43b9-950f-c8b68aaaad3f" + "WESTUS2:20221006T020533Z:14f6c243-fdfc-4065-95f4-d1804f9734d2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:51:31 GMT" + "Thu, 06 Oct 2022 02:05:32 GMT" ], "Content-Length": [ "515" @@ -849,25 +849,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps6868\",\r\n \"name\": \"PSTestDomain-ps6868\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps4165\",\r\n \"name\": \"PSTestDomain-ps4165\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/586B774D-5540-4BAA-842A-490AC9E0497D?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNTg2Qjc3NEQtNTU0MC00QkFBLTg0MkEtNDkwQUM5RTA0OTdEP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/1FED076A-A265-4874-AF02-04A096966C5D?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMUZFRDA3NkEtQTI2NS00ODc0LUFGMDItMDRBMDk2OTY2QzVEP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f107dfe-4776-497a-86fd-9d8afceab031" + "c8d6262a-2631-4ea0-9b0a-ed39d6515c01" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -879,25 +879,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9c4e085c-599b-4dcd-af0b-f4cea4ea7ea4" + "f45ea952-43c4-4aac-945f-47639cffb0f4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11999" ], "x-ms-correlation-request-id": [ - "47b25ff5-94ed-4da0-ae62-4b14cfcff829" + "78cd458e-0339-42c6-a9e6-af7a0f1f600f" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215142Z:47b25ff5-94ed-4da0-ae62-4b14cfcff829" + "WESTUS2:20221006T020543Z:78cd458e-0339-42c6-a9e6-af7a0f1f600f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:51:41 GMT" + "Thu, 06 Oct 2022 02:05:42 GMT" ], "Content-Length": [ "286" @@ -909,25 +909,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/586B774D-5540-4BAA-842A-490AC9E0497D?api-version=2021-12-01\",\r\n \"name\": \"586b774d-5540-4baa-842a-490ac9e0497d\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/1FED076A-A265-4874-AF02-04A096966C5D?api-version=2022-06-15\",\r\n \"name\": \"1fed076a-a265-4874-af02-04a096966c5d\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps6868?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM2ODY4P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps4165?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczc5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM0MTY1P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f107dfe-4776-497a-86fd-9d8afceab031" + "c8d6262a-2631-4ea0-9b0a-ed39d6515c01" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -939,28 +939,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "26cb63f9-4428-408e-88b0-7d438c490389" + "ce7f9c8e-b793-4578-abf6-e98285068f17" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11998" ], "x-ms-correlation-request-id": [ - "141fe904-9ad4-4e64-ba2a-bd3b39618d6e" + "e9896ad5-f044-44df-bb55-0d67b810d1fe" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215142Z:141fe904-9ad4-4e64-ba2a-bd3b39618d6e" + "WESTUS2:20221006T020543Z:e9896ad5-f044-44df-bb55-0d67b810d1fe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:51:41 GMT" + "Thu, 06 Oct 2022 02:05:42 GMT" ], "Content-Length": [ - "646" + "686" ], "Content-Type": [ "application/json; charset=utf-8" @@ -969,28 +969,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps6868.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"013c838a-ba7e-43c1-85ff-d159d65f1997\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps6868\",\r\n \"name\": \"PSTestDomain-ps6868\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps4165.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"9bd13a21-dc73-4ef2-a6c4-c44f9c7b50c3\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps4165\",\r\n \"name\": \"PSTestDomain-ps4165\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczc5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "855abc29-43b3-4ccb-982c-be95e24bf8f8" + "70e4c3f4-2f76-4601-b9a7-41a962177fe3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1002,28 +1002,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7b6e14ad-186a-47e3-822f-1afafa121bb7" + "7d106ed5-f5c5-405b-a824-f5fbb61aa681" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11999" ], "x-ms-correlation-request-id": [ - "6fd85843-73aa-48ac-a941-80a0bbb8afe1" + "61158f68-04fe-4621-8987-13a216b2452b" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215142Z:6fd85843-73aa-48ac-a941-80a0bbb8afe1" + "WESTUS2:20221006T020544Z:61158f68-04fe-4621-8987-13a216b2452b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:51:42 GMT" + "Thu, 06 Oct 2022 02:05:43 GMT" ], "Content-Length": [ - "2619" + "2770" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1032,28 +1032,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps5265.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"4849b7a4-9f17-45cf-92fa-1539d495ac23\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps5265\",\r\n \"name\": \"PSTestDomain-ps5265\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps7174.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"98841322-2457-4f80-8bb1-a41847b6dccf\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7174\",\r\n \"name\": \"PSTestDomain-ps7174\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps4096.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"400055b5-7b23-4dae-b1d1-5524c8b5f564\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps4096\",\r\n \"name\": \"PSTestDomain-ps4096\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps6868.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"013c838a-ba7e-43c1-85ff-d159d65f1997\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps6868\",\r\n \"name\": \"PSTestDomain-ps6868\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps5018.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"42da169c-69e6-49aa-b279-297c4a74ec46\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps5018\",\r\n \"name\": \"PSTestDomain-ps5018\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps6.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"93619799-32af-42f5-9a63-db265c88694c\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps6\",\r\n \"name\": \"PSTestDomain-ps6\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps7636.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"57dc31aa-63fd-4666-8016-66c75a86e7a3\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7636\",\r\n \"name\": \"PSTestDomain-ps7636\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps4165.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"9bd13a21-dc73-4ef2-a6c4-c44f9c7b50c3\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps4165\",\r\n \"name\": \"PSTestDomain-ps4165\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczc5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bcb97386-1b9b-4370-985e-18a4af1224eb" + "e81b6960-0ddd-40df-9e92-28782fe2bb44" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1065,25 +1065,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cbe3d48a-da7c-4fe6-8b1f-7c4efd7e70a4" + "e5da58e7-5fe2-46c3-bb5d-b20c9b53b50e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11999" ], "x-ms-correlation-request-id": [ - "2ee45d15-c6b1-4a0f-ab40-df26f2b11070" + "a1ff70ac-c79c-4697-912a-de3092f10dfc" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215310Z:2ee45d15-c6b1-4a0f-ab40-df26f2b11070" + "WESTUS2:20221006T020718Z:a1ff70ac-c79c-4697-912a-de3092f10dfc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:53:09 GMT" + "Thu, 06 Oct 2022 02:07:17 GMT" ], "Content-Length": [ "12" @@ -1099,24 +1099,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczc5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5263ce2d-ac10-46e6-8cf2-340fcc45d655" + "37892762-9a78-4c97-97b1-3124d63b7635" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1128,25 +1128,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "477b076c-fce0-451e-8d51-89041d386205" + "b73f3d7b-e309-4f0e-a89c-c055ae9126d4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11999" ], "x-ms-correlation-request-id": [ - "18559e3f-f568-4a52-aabc-caaeb41084dc" + "7901420a-2402-43a0-9fa7-3a80dde47004" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215310Z:18559e3f-f568-4a52-aabc-caaeb41084dc" + "WESTUS2:20221006T020718Z:7901420a-2402-43a0-9fa7-3a80dde47004" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:53:09 GMT" + "Thu, 06 Oct 2022 02:07:18 GMT" ], "Content-Length": [ "12" @@ -1162,24 +1162,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/domains?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnM/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/domains?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnM/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "264f8fe2-75bb-4879-96e6-3600a6fa781b" + "52b04b23-d88f-4eb2-bb08-d472c397245d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1188,32 +1188,32 @@ "no-cache" ], "x-ms-original-request-ids": [ - "093c4219-6284-4dd0-9bd6-beaba5fff976", - "d01697a9-97ad-41c2-8a48-06d09c916c8f", - "0c9d78ea-b8c9-46eb-8f30-90faa4ed8807", - "f62592cc-08c3-4dd0-aad1-93080a155cb3", - "cb6d3ea7-38d0-4bb7-82e5-5ce474754c74", - "cbb12384-9f79-4865-8cb6-78efc7325d96", - "ed903e9a-8bd1-4f0c-920a-31bdd841bee2", - "e0eeb244-1d23-4048-8095-38a9e147ba05", - "94d476c3-b45c-4c00-b213-2590decea537", - "0d1051d1-910c-415f-af16-d0a5d2726d28", - "d34e3fa1-cae6-4653-a48c-dd1a0b2ee477", - "421dcd70-0f5f-405c-af37-6f80fac242d6", - "e28e6d7d-b046-4cd0-9d8b-832262da6987", - "32937555-02cc-4833-811c-6ff45ccfc9c4" + "3996a384-6405-4da1-90aa-4a4c529900a9", + "ec6d32e1-0a15-4a03-9693-bd8baf5d4f4f", + "d7905428-56af-40fe-a24d-be4139a0eeac", + "9e4b8b6e-9a1b-4c2b-8841-3f15c047c86f", + "97851c42-539f-4258-9713-f4de4b5f2204", + "5040dff0-5264-4ae0-bf4a-283ef5aa9702", + "a8307fd7-57d0-4bf8-a221-8c6ebe660575", + "86724e55-2d81-4962-83ea-ba97a0a243bf", + "83adceae-3112-42c8-96ee-c1c0b6e1d03d", + "bddeb06d-2c65-47c4-bd9e-04d43a9c68ef", + "17a7e419-c817-4782-846f-b8d0c6531bfc", + "85685894-1b04-41bf-9bb4-d3ab422a1794", + "bcb84131-e9bf-41cc-9b2a-8f3af1bac4ac", + "a8c6ba0d-f3cf-4a62-b749-8f8107c3d9a1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11999" ], "x-ms-request-id": [ - "281dc56a-10af-418a-9c07-03de9293b147" + "33510770-b595-48ef-a6c8-a09a3f12bca2" ], "x-ms-correlation-request-id": [ - "281dc56a-10af-418a-9c07-03de9293b147" + "33510770-b595-48ef-a6c8-a09a3f12bca2" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215144Z:281dc56a-10af-418a-9c07-03de9293b147" + "WESTUS2:20221006T020545Z:33510770-b595-48ef-a6c8-a09a3f12bca2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1222,7 +1222,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:51:44 GMT" + "Thu, 06 Oct 2022 02:05:45 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1231,31 +1231,31 @@ "-1" ], "Content-Length": [ - "30203" + "30313" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomain3.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"8c2c8d2b-d07d-43a0-a9c7-1118cfa23fe5\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"405c34b5-6a06-4fa7-b278-84da4f864ac4\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"{tag1\": \"value1}\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomain3\",\r\n \"name\": \"testDomain3\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://kishdomain1.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f07ee48b-b4a4-40ea-ba28-5f915355af3d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/domains/kishdomain1\",\r\n \"name\": \"kishdomain1\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://ahamadeventgriddomain.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6df52b28-39cf-4077-a674-bc841fbbce07\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rg-ahamadeventgrid/providers/Microsoft.EventGrid/domains/ahamadeventgriddomain\",\r\n \"name\": \"ahamadeventgriddomain\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://diagnosticlogdomains.eastus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"69562a94-5c1e-42e8-bb7d-a04fff9363b0\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/diagnosticlogstestingtobedeleted/providers/Microsoft.EventGrid/domains/diagnosticlogdomains\",\r\n \"name\": \"diagnosticlogdomains\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomainpermission.eastus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a660ee42-0140-4bc0-8eda-6b1abdd42182\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"38fc1d76-d88e-46fb-a8ea-0427e9155a63\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomainPermission\",\r\n \"name\": \"testDomainPermission\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://msi-test.westus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b3c2ce3f-f055-4fd0-9f32-3ff45a89d474\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"6b1a416a-f09f-40f3-bc8f-3f909de0ab7f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/domains/msi-test\",\r\n \"name\": \"msi-test\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://brandonneff-domain.eastus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"4492d446-3b13-4515-9751-25fcfb32d74f\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/brandonneff-eastus2-dest/providers/Microsoft.EventGrid/domains/brandonneff-domain\",\r\n \"name\": \"brandonneff-domain\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://clifxbhdae2ghiqajm6tewxzoei6csmkc4wfxdol.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"85756ce7-823c-42bb-b79c-f4444783062f\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f/providers/Microsoft.EventGrid/domains/clifxbhdae2ghiqajm6tewxzoei6csmkc4wfxdol\",\r\n \"name\": \"clifxbhdae2ghiqajm6tewxzoei6csmkc4wfxdol\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://clifq6nvajq6b2rumcwewnjdceisqw3vuqeevgzs.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventV01Schema\",\r\n \"metricResourceId\": \"862a3be0-1042-4ea5-9578-b30dfec763a6\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f/providers/Microsoft.EventGrid/domains/clifq6nvajq6b2rumcwewnjdceisqw3vuqeevgzs\",\r\n \"name\": \"clifq6nvajq6b2rumcwewnjdceisqw3vuqeevgzs\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://clilg2sh5dyeu5fgwchw4lpng74am4roxajyj7wg.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": null\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopic\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": null\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"myEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": \"DefaultSubject\"\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": \"1.0\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"b5929ed6-3101-4eaf-b925-819df5ef79d9\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f/providers/Microsoft.EventGrid/domains/clilg2sh5dyeu5fgwchw4lpng74am4roxajyj7wg\",\r\n \"name\": \"clilg2sh5dyeu5fgwchw4lpng74am4roxajyj7wg\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps1490.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"7d59062a-4474-4f55-aaaa-2f2ad857be51\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9640/providers/Microsoft.EventGrid/domains/PSTestDomain-ps1490\",\r\n \"name\": \"PSTestDomain-ps1490\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps7903.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"2a8d38e9-55c4-4a7d-ab01-fefbe6805269\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7005/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7903\",\r\n \"name\": \"PSTestDomain-ps7903\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps4146.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9f1b2881-08a5-4398-8d20-b4acaa7e5ba1\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1831/providers/Microsoft.EventGrid/domains/PSTestDomain-ps4146\",\r\n \"name\": \"PSTestDomain-ps4146\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps5265.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"4849b7a4-9f17-45cf-92fa-1539d495ac23\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps5265\",\r\n \"name\": \"PSTestDomain-ps5265\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps7174.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"98841322-2457-4f80-8bb1-a41847b6dccf\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7174\",\r\n \"name\": \"PSTestDomain-ps7174\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps4096.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"400055b5-7b23-4dae-b1d1-5524c8b5f564\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps4096\",\r\n \"name\": \"PSTestDomain-ps4096\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps6868.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"013c838a-ba7e-43c1-85ff-d159d65f1997\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps6868\",\r\n \"name\": \"PSTestDomain-ps6868\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomainauce.australiacentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"88a48d35-21d8-4bf2-b263-d61dd3124961\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"australiacentral\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete/providers/Microsoft.EventGrid/domains/testdomainauce\",\r\n \"name\": \"testdomainauce\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://kishpdomain.southcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": null\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"data.one\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": null\r\n },\r\n \"eventType\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"10285d19-90e1-44e0-9489-20f008ebb278\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testRg1/providers/Microsoft.EventGrid/domains/kishpdomain\",\r\n \"name\": \"kishpdomain\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomaincentralindia.centralindia-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1f4604eb-3f56-4df4-acd1-16188510dd5a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralindia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted/providers/Microsoft.EventGrid/domains/testdomaincentralindia\",\r\n \"name\": \"testdomaincentralindia\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://domainjiowest.jioindiawest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c01c0189-6b01-4f80-b61f-6a9925bca45d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"jio india west\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/jioRg/providers/Microsoft.EventGrid/domains/domainjiowest\",\r\n \"name\": \"domainjiowest\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://domainjiocentral.jioindiacentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"8681adf1-b9a1-444e-9178-c2e735820030\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"jio india central\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/jioRg/providers/Microsoft.EventGrid/domains/domainjiocentral\",\r\n \"name\": \"domainjiocentral\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://domainswedencentral.swedencentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a9a15f3c-6580-4897-b48b-bf65612e42cf\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"sweden central\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/domains/domainswedencentral\",\r\n \"name\": \"domainswedencentral\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomaindup5.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b589ef01-2ca8-41c9-aa80-4bb99a938ea2\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomainDup5\",\r\n \"name\": \"testDomainDup5\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testcheckaccessdom.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"305420be-db54-4a4d-81bb-c7ac9dfc73c0\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"2863103f-0051-4efc-816e-dce2279932bb\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/domains/testcheckaccessdom\",\r\n \"name\": \"testcheckaccessdom\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-7615.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"423bef80-a31f-48bc-ab3d-4638d4934da3\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3411/providers/Microsoft.EventGrid/domains/sdk-Domain-7615\",\r\n \"name\": \"sdk-Domain-7615\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-8144.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"513972e7-51cf-4602-a7ef-033ca2ad838c\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8555/providers/Microsoft.EventGrid/domains/sdk-Domain-8144\",\r\n \"name\": \"sdk-Domain-8144\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-1520.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"3caa1c7c-4c40-4254-874e-5d76d7c9fa76\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3963/providers/Microsoft.EventGrid/domains/sdk-Domain-1520\",\r\n \"name\": \"sdk-Domain-1520\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-2066.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"01c819bf-353c-4096-a9f1-9ae2adff2a53\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2143/providers/Microsoft.EventGrid/domains/sdk-Domain-2066\",\r\n \"name\": \"sdk-Domain-2066\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-8257.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"efdaca7e-0da7-471d-8ace-026019de1ee5\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1261/providers/Microsoft.EventGrid/domains/sdk-Domain-8257\",\r\n \"name\": \"sdk-Domain-8257\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-2688.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ce049360-c956-46c9-8548-11de7b85f121\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-173/providers/Microsoft.EventGrid/domains/sdk-Domain-2688\",\r\n \"name\": \"sdk-Domain-2688\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://ce10domain.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": null\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"mytopicfield\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": null\r\n },\r\n \"eventType\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"c3ebca20-e118-46df-aef5-c591767240aa\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest/providers/Microsoft.EventGrid/domains/ce10domain\",\r\n \"name\": \"ce10domain\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-7896.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b6a2534a-1a66-4177-91a8-4583e4079d9f\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"12.35.67.98\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"12.35.90.100\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"updatedTag1\": \"updatedValue1\",\r\n \"updatedTag2\": \"updatedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2523/providers/Microsoft.EventGrid/domains/sdk-Domain-7896\",\r\n \"name\": \"sdk-Domain-7896\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-7215.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"dc4c3538-8b69-48b6-9a5f-a1453f43712a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2994/providers/Microsoft.EventGrid/domains/sdk-Domain-7215\",\r\n \"name\": \"sdk-Domain-7215\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://domain1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"14ffafe0-0af7-4d95-b2ee-53a13b81b3c0\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"k1\": \"v1\",\r\n \"k2\": \"v2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/domain1\",\r\n \"name\": \"domain1\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomaindup3.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"72674d38-323b-46b4-8ecc-2e8796c13440\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomainDup3\",\r\n \"name\": \"testDomainDup3\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomain1iprules.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"49e25f59-2b16-4c05-96b1-353ff4011aac\",\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.0.0.0/2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.70/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"cb40d9ec-0525-4c6b-9932-90af6d969ea5\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomain1IpRules\",\r\n \"name\": \"testDomain1IpRules\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomain1iprules3.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b883639b-4292-4e41-9652-8657d390528e\",\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"101.0.0.90/2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"101.0.0.70/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"43334277-98f7-4892-bba5-1b7ec2766660\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomain1IpRules3\",\r\n \"name\": \"testDomain1IpRules3\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomain1iprules4.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a3edc98f-ccda-4940-8a35-f1da15147cbb\",\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"19.12.43.90/20\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"19.12.43.70/23\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"ecea7475-58f7-44c1-9ab3-4993b5983568\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomain1IpRules4\",\r\n \"name\": \"testDomain1IpRules4\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-2228.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"67cd1def-742c-41f8-990f-c4bf54b938f6\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"updatedTag1\": \"updatedValue1\",\r\n \"updatedTag2\": \"updatedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8035/providers/Microsoft.EventGrid/domains/sdk-Domain-2228\",\r\n \"name\": \"sdk-Domain-2228\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-193.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"4b2096f9-bb04-4d1e-a57c-17fbea082205\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3772/providers/Microsoft.EventGrid/domains/sdk-Domain-193\",\r\n \"name\": \"sdk-Domain-193\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-9579.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"3fd59050-783d-4ba4-a750-e5d2d6610b6e\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5717/providers/Microsoft.EventGrid/domains/sdk-Domain-9579\",\r\n \"name\": \"sdk-Domain-9579\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomain12321.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"2a0e71c0-190a-4d2d-81d2-802b458a982b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomain12321\",\r\n \"name\": \"testDomain12321\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomainipfiltering1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1cdb87a6-c89b-4f4f-adf1-47f718d8b00e\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomainIpFiltering1\",\r\n \"name\": \"testDomainIpFiltering1\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomainipfiltering10.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ac61c0dd-8983-491c-9cb0-5f4d1609197b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomainIpFiltering10\",\r\n \"name\": \"testDomainIpFiltering10\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://domainswedensouth.swedensouth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"3ac3feaf-dd87-4630-8fbf-bf0dcaefc1c6\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"sweden south\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/domains/domainswedensouth\",\r\n \"name\": \"domainswedensouth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/domains?api-version=2021-12-01&%24skiptoken=TZBtT8IwEMe%2fy8J4NzY6xoCEmAqbTnkaT8aX7VpnwbVLW5BI%2bO62iMbmcv318s%2f%2f7np2OD3pCeN75QzOziiZrZdwslklG7hwBs671rUa%2bH6FOCppRbluoa%2bDpK1CVL46YFVIVmsmuPIj3MHdKKAe6OG%2b14n7gYdDhD1CMOn1SAziouPXUhwZoVL5U1ZIocSbbiVHY%2fsgGfGJqBDj6g7VzDsakfEdggC0vTbwgnazofammdhTPnQj7MbYBeD6NLcbIpsBXmZjyzFd6ZTCqdyBPIkULODPcUNiA4TLtZG1DayXI0MgMJitthYtJXND3SiKrCRdWAksE%2fpy6iRwnHxC%2bKpgef8od%2fsRTKvZvMxhKtJu%2bZGPYPacbfMM4ieCYTnWKv9tapwLM6VEvKS3ma9LVIz%2fW%2bGmqtDpr5imFmNiIyLNhha1%2bRjncvkG\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomain3.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"8c2c8d2b-d07d-43a0-a9c7-1118cfa23fe5\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"405c34b5-6a06-4fa7-b278-84da4f864ac4\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"{tag1\": \"value1}\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomain3\",\r\n \"name\": \"testDomain3\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://kishdomain1.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f07ee48b-b4a4-40ea-ba28-5f915355af3d\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/domains/kishdomain1\",\r\n \"name\": \"kishdomain1\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://ahamadeventgriddomain.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6df52b28-39cf-4077-a674-bc841fbbce07\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rg-ahamadeventgrid/providers/Microsoft.EventGrid/domains/ahamadeventgriddomain\",\r\n \"name\": \"ahamadeventgriddomain\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://diagnosticlogdomains.eastus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"69562a94-5c1e-42e8-bb7d-a04fff9363b0\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/diagnosticlogstestingtobedeleted/providers/Microsoft.EventGrid/domains/diagnosticlogdomains\",\r\n \"name\": \"diagnosticlogdomains\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomainpermission.eastus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a660ee42-0140-4bc0-8eda-6b1abdd42182\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"38fc1d76-d88e-46fb-a8ea-0427e9155a63\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomainPermission\",\r\n \"name\": \"testDomainPermission\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://msi-test.westus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b3c2ce3f-f055-4fd0-9f32-3ff45a89d474\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"6b1a416a-f09f-40f3-bc8f-3f909de0ab7f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/domains/msi-test\",\r\n \"name\": \"msi-test\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://bneff-domain.westus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1014a7db-682c-44b2-9e78-6cdb4da6a959\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [],\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/brandonneff/providers/Microsoft.EventGrid/domains/bneff-domain\",\r\n \"name\": \"bneff-domain\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://brandonneff-domain.eastus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"4492d446-3b13-4515-9751-25fcfb32d74f\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/brandonneff-eastus2-dest/providers/Microsoft.EventGrid/domains/brandonneff-domain\",\r\n \"name\": \"brandonneff-domain\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps1490.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"7d59062a-4474-4f55-aaaa-2f2ad857be51\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9640/providers/Microsoft.EventGrid/domains/PSTestDomain-ps1490\",\r\n \"name\": \"PSTestDomain-ps1490\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps7903.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"2a8d38e9-55c4-4a7d-ab01-fefbe6805269\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7005/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7903\",\r\n \"name\": \"PSTestDomain-ps7903\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps4146.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9f1b2881-08a5-4398-8d20-b4acaa7e5ba1\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1831/providers/Microsoft.EventGrid/domains/PSTestDomain-ps4146\",\r\n \"name\": \"PSTestDomain-ps4146\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps5018.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"42da169c-69e6-49aa-b279-297c4a74ec46\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps5018\",\r\n \"name\": \"PSTestDomain-ps5018\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps6.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"93619799-32af-42f5-9a63-db265c88694c\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps6\",\r\n \"name\": \"PSTestDomain-ps6\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps7636.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"57dc31aa-63fd-4666-8016-66c75a86e7a3\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7636\",\r\n \"name\": \"PSTestDomain-ps7636\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps4165.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"9bd13a21-dc73-4ef2-a6c4-c44f9c7b50c3\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps4165\",\r\n \"name\": \"PSTestDomain-ps4165\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomainauce.australiacentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"88a48d35-21d8-4bf2-b263-d61dd3124961\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"australiacentral\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete/providers/Microsoft.EventGrid/domains/testdomainauce\",\r\n \"name\": \"testdomainauce\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://kishpdomain.southcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": null\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"data.one\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": null\r\n },\r\n \"eventType\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"10285d19-90e1-44e0-9489-20f008ebb278\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testRg1/providers/Microsoft.EventGrid/domains/kishpdomain\",\r\n \"name\": \"kishpdomain\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomaincentralindia.centralindia-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1f4604eb-3f56-4df4-acd1-16188510dd5a\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralindia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted/providers/Microsoft.EventGrid/domains/testdomaincentralindia\",\r\n \"name\": \"testdomaincentralindia\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://domainjiowest.jioindiawest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c01c0189-6b01-4f80-b61f-6a9925bca45d\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"jio india west\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/jioRg/providers/Microsoft.EventGrid/domains/domainjiowest\",\r\n \"name\": \"domainjiowest\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://domainjiocentral.jioindiacentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"8681adf1-b9a1-444e-9178-c2e735820030\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"jio india central\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/jioRg/providers/Microsoft.EventGrid/domains/domainjiocentral\",\r\n \"name\": \"domainjiocentral\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://domainswedencentral.swedencentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a9a15f3c-6580-4897-b48b-bf65612e42cf\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"sweden central\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/domains/domainswedencentral\",\r\n \"name\": \"domainswedencentral\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomaindup5.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b589ef01-2ca8-41c9-aa80-4bb99a938ea2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomainDup5\",\r\n \"name\": \"testDomainDup5\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testcheckaccessdom.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"305420be-db54-4a4d-81bb-c7ac9dfc73c0\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"2863103f-0051-4efc-816e-dce2279932bb\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/domains/testcheckaccessdom\",\r\n \"name\": \"testcheckaccessdom\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-7615.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"423bef80-a31f-48bc-ab3d-4638d4934da3\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3411/providers/Microsoft.EventGrid/domains/sdk-Domain-7615\",\r\n \"name\": \"sdk-Domain-7615\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-8144.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"513972e7-51cf-4602-a7ef-033ca2ad838c\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8555/providers/Microsoft.EventGrid/domains/sdk-Domain-8144\",\r\n \"name\": \"sdk-Domain-8144\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-1520.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"3caa1c7c-4c40-4254-874e-5d76d7c9fa76\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3963/providers/Microsoft.EventGrid/domains/sdk-Domain-1520\",\r\n \"name\": \"sdk-Domain-1520\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-2066.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"01c819bf-353c-4096-a9f1-9ae2adff2a53\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2143/providers/Microsoft.EventGrid/domains/sdk-Domain-2066\",\r\n \"name\": \"sdk-Domain-2066\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-8257.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"efdaca7e-0da7-471d-8ace-026019de1ee5\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1261/providers/Microsoft.EventGrid/domains/sdk-Domain-8257\",\r\n \"name\": \"sdk-Domain-8257\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-2688.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ce049360-c956-46c9-8548-11de7b85f121\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-173/providers/Microsoft.EventGrid/domains/sdk-Domain-2688\",\r\n \"name\": \"sdk-Domain-2688\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://ce10domain.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": null\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"mytopicfield\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": null\r\n },\r\n \"eventType\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"c3ebca20-e118-46df-aef5-c591767240aa\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest/providers/Microsoft.EventGrid/domains/ce10domain\",\r\n \"name\": \"ce10domain\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-7896.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b6a2534a-1a66-4177-91a8-4583e4079d9f\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"12.35.67.98\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"12.35.90.100\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"updatedTag1\": \"updatedValue1\",\r\n \"updatedTag2\": \"updatedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2523/providers/Microsoft.EventGrid/domains/sdk-Domain-7896\",\r\n \"name\": \"sdk-Domain-7896\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-7215.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"dc4c3538-8b69-48b6-9a5f-a1453f43712a\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2994/providers/Microsoft.EventGrid/domains/sdk-Domain-7215\",\r\n \"name\": \"sdk-Domain-7215\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://domain1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"14ffafe0-0af7-4d95-b2ee-53a13b81b3c0\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"k1\": \"v1\",\r\n \"k2\": \"v2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/domain1\",\r\n \"name\": \"domain1\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomaindup3.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"72674d38-323b-46b4-8ecc-2e8796c13440\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomainDup3\",\r\n \"name\": \"testDomainDup3\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomain1iprules.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"49e25f59-2b16-4c05-96b1-353ff4011aac\",\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.0.0.0/2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.70/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"cb40d9ec-0525-4c6b-9932-90af6d969ea5\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomain1IpRules\",\r\n \"name\": \"testDomain1IpRules\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomain1iprules3.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b883639b-4292-4e41-9652-8657d390528e\",\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"101.0.0.90/2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"101.0.0.70/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"43334277-98f7-4892-bba5-1b7ec2766660\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomain1IpRules3\",\r\n \"name\": \"testDomain1IpRules3\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomain1iprules4.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a3edc98f-ccda-4940-8a35-f1da15147cbb\",\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"19.12.43.90/20\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"19.12.43.70/23\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"ecea7475-58f7-44c1-9ab3-4993b5983568\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomain1IpRules4\",\r\n \"name\": \"testDomain1IpRules4\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-2228.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"67cd1def-742c-41f8-990f-c4bf54b938f6\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"updatedTag1\": \"updatedValue1\",\r\n \"updatedTag2\": \"updatedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8035/providers/Microsoft.EventGrid/domains/sdk-Domain-2228\",\r\n \"name\": \"sdk-Domain-2228\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-193.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"4b2096f9-bb04-4d1e-a57c-17fbea082205\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3772/providers/Microsoft.EventGrid/domains/sdk-Domain-193\",\r\n \"name\": \"sdk-Domain-193\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-9579.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"3fd59050-783d-4ba4-a750-e5d2d6610b6e\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5717/providers/Microsoft.EventGrid/domains/sdk-Domain-9579\",\r\n \"name\": \"sdk-Domain-9579\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomain12321.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"2a0e71c0-190a-4d2d-81d2-802b458a982b\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomain12321\",\r\n \"name\": \"testDomain12321\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomainipfiltering1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1cdb87a6-c89b-4f4f-adf1-47f718d8b00e\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomainIpFiltering1\",\r\n \"name\": \"testDomainIpFiltering1\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomainipfiltering10.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ac61c0dd-8983-491c-9cb0-5f4d1609197b\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomainIpFiltering10\",\r\n \"name\": \"testDomainIpFiltering10\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://domainswedensouth.swedensouth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"3ac3feaf-dd87-4630-8fbf-bf0dcaefc1c6\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"sweden south\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/domains/domainswedensouth\",\r\n \"name\": \"domainswedensouth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/domains?api-version=2022-06-15&%24skiptoken=TZFtT9swEMe%2fS0R4RZrg1k2phKYjdbYMCiQtaLy0Y2NMFzuyTYeG%2bO6zO4SwTvbvTn%2fdk98SLV79ldI7lyzfkopcbzu4utuQO7hNlsmT96Nb5vlANZViENpP6N8XKya9GXL3wlxv1eiV0S7HbMbmuBAZWrCzbFaeFRmbUpZxzvhiwUtU9rN8tGavuLAuX6veGmce%2fYTsQ9rvVvGcm4Eq7b7RUWX7IAp5z1GBUFbMs1N8fOR2oZjZCX2eYpaWLEXo4IY3ndJ4I9Y1q8il2PhawNo%2bo5ZgBz38P%2bmUR0PTbhtkpwG2XRUIFQGbzX3ESOQm0BxjHCVtVQdvEai%2bjWKQRPRPMwIr8gfgwYG8%2bGGfdxXUw%2fWNbKE29Vz%2bbitoLpv7tgH2kzOQK%2b9%2bNQRqsg%2bhQxOhUh%2b6tlRL8THDYahB6S8jfagG%2bvoZrOuIJY%2bG%2bfGRN2NYVPJ%2bklA7gJRWSOoF38ZdhV%2bEbp28%2fwM%3d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/domains?api-version=2021-12-01&%24skiptoken=TZBtT8IwEMe%2fy8J4NzY6xoCEmAqbTnkaT8aX7VpnwbVLW5BI%2bO62iMbmcv318s%2f%2f7np2OD3pCeN75QzOziiZrZdwslklG7hwBs671rUa%2bH6FOCppRbluoa%2bDpK1CVL46YFVIVmsmuPIj3MHdKKAe6OG%2b14n7gYdDhD1CMOn1SAziouPXUhwZoVL5U1ZIocSbbiVHY%2fsgGfGJqBDj6g7VzDsakfEdggC0vTbwgnazofammdhTPnQj7MbYBeD6NLcbIpsBXmZjyzFd6ZTCqdyBPIkULODPcUNiA4TLtZG1DayXI0MgMJitthYtJXND3SiKrCRdWAksE%2fpy6iRwnHxC%2bKpgef8od%2fsRTKvZvMxhKtJu%2bZGPYPacbfMM4ieCYTnWKv9tapwLM6VEvKS3ma9LVIz%2fW%2bGmqtDpr5imFmNiIyLNhha1%2bRjncvkG", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnM/YXBpLXZlcnNpb249MjAyMS0xMi0wMSYlMjRza2lwdG9rZW49VFpCdFQ4SXdFTWUlMmZ5OEo0TnpZNnhvQ0VtQXFiVG5rYVQ4YVg3VnBud2JWTFc1QkklMmJPNjJpTWJtY3YzMThzJTJmJTJmN25wMk9EM3BDZU43NVF6T3ppaVpyWmR3c2xrbEc3aHdCczY3MXJVYSUyYkg2Rk9DcHBSYmx1b2ElMmJEcEsxQ1ZMNDZZRlZJVm1zbXVQSWozTUhkS0tBZTZPRyUyYjE0bjdnWWREaEQxQ01PbjFTQXppb3VQWFVod1pvVkw1VTFaSW9jU2JiaVZIWSUyZnNnR2ZHSnFCRGo2ZzdWekRzYWtmRWRnZ0MwdlRid2duYXpvZmFtbWRoVFBuUWo3TWJZQmVENk5MY2JJcHNCWG1aanl6RmQ2WlRDcWR5QlBJa1VMT0RQY1VOaUE0VEx0WkcxRGF5WEkwTWdNSml0dGhZdEpYTkQzU2lLckNSZFdBa3NFJTJmcHk2aVJ3bkh4QyUyYktwZ2VmOG9kJTJmc1JUS3Zadk14aEt0SnUlMmJaR1BZUGFjYmZNTTRpZUNZVG5XS3Y5dGFwd0xNNlZFdktTM21hOUxWSXolMmZXJTJiR21xdERwcjVpbUZtTmlJeUxOaGhhMSUyYlJqbmN2a0c=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/domains?api-version=2022-06-15&%24skiptoken=TZFtT9swEMe%2fS0R4RZrg1k2phKYjdbYMCiQtaLy0Y2NMFzuyTYeG%2bO6zO4SwTvbvTn%2fdk98SLV79ldI7lyzfkopcbzu4utuQO7hNlsmT96Nb5vlANZViENpP6N8XKya9GXL3wlxv1eiV0S7HbMbmuBAZWrCzbFaeFRmbUpZxzvhiwUtU9rN8tGavuLAuX6veGmce%2fYTsQ9rvVvGcm4Eq7b7RUWX7IAp5z1GBUFbMs1N8fOR2oZjZCX2eYpaWLEXo4IY3ndJ4I9Y1q8il2PhawNo%2bo5ZgBz38P%2bmUR0PTbhtkpwG2XRUIFQGbzX3ESOQm0BxjHCVtVQdvEai%2bjWKQRPRPMwIr8gfgwYG8%2bGGfdxXUw%2fWNbKE29Vz%2bbitoLpv7tgH2kzOQK%2b9%2bNQRqsg%2bhQxOhUh%2b6tlRL8THDYahB6S8jfagG%2bvoZrOuIJY%2bG%2bfGRN2NYVPJ%2bklA7gJRWSOoF38ZdhV%2bEbp28%2fwM%3d", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnM/YXBpLXZlcnNpb249MjAyMi0wNi0xNSYlMjRza2lwdG9rZW49VFpGdFQ5c3dFTWUlMmZTMFI0UlpyZzFrMnBoS1lqZGJZTUNpUXRhTHkwWTJOTUZ6dXlUWWVHJTJiTzZ6TzRTd1R2YnZUbiUyZmRrOThTTFY3OWxkSTdseXpma29wY2J6dTR1dHVRTzdoTmxzbVQ5Nk5iNXZsQU5aVmlFTnBQNk44WEt5YTlHWEwzd2x4djFlaVYwUzdIYk1ibXVCQVpXckN6YkZhZUZSbWJVcFp4enZoaXdVdFU5ck44dEdhdnVMQXVYNnZlR21jZSUyZllUc1E5cnZWdkdjbTRFcTdiN1JVV1g3SUFwNXoxR0JVRmJNczFOOGZPUjJvWmpaQ1gyZVlwYVdMRVhvNElZM25kSjRJOVkxcThpbDJQaGF3Tm8lMmJvNVpnQnozOFAlMmJtVVIwUFRiaHRrcHdHMlhSVUlGUUdielgzRVNPUW0wQnhqSENWdFZRZHZFYWklMmJqV0tRUlBSUE13SXI4Z2Znd1lHOCUyYkdHZmR4WFV3JTJmV05iS0UyOVZ6JTJiYml0b0xwdjd0Z0gya3pPUUslMmI5JTJiTlFScXNnJTJiaFF4T2hVaCUyYjZ0bFJMOFRIRFlhaEI2UzhqZmFnRyUyYnZvWnJPdUlKWSUyYkclMmJmR1JOMk5ZVlBKJTJia2xBN2dKUldTT29GMzhaZGhWJTJiRWJwMjglMmZ3TSUzZA==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "264f8fe2-75bb-4879-96e6-3600a6fa781b" + "52b04b23-d88f-4eb2-bb08-d472c397245d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1264,19 +1264,19 @@ "no-cache" ], "x-ms-original-request-ids": [ - "8db8e341-a5f2-487e-be83-5b4b493544a0" + "c873e3f1-0a08-400e-ab58-0fd098f2b3d0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11998" ], "x-ms-request-id": [ - "52f26f88-9c02-435d-95d7-8c9f8e08ad87" + "28a82dc1-0391-4ff5-bfb9-43063454bfe2" ], "x-ms-correlation-request-id": [ - "52f26f88-9c02-435d-95d7-8c9f8e08ad87" + "28a82dc1-0391-4ff5-bfb9-43063454bfe2" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215144Z:52f26f88-9c02-435d-95d7-8c9f8e08ad87" + "WESTUS2:20221006T020545Z:28a82dc1-0391-4ff5-bfb9-43063454bfe2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1285,7 +1285,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:51:44 GMT" + "Thu, 06 Oct 2022 02:05:45 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1294,29 +1294,28 @@ "-1" ], "Content-Length": [ - "6016" + "7518" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomainipfiltering11.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"52a3c764-c754-4f28-8e1b-6eddf99638ff\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomainIpFiltering11\",\r\n \"name\": \"testDomainIpFiltering11\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://msidomaintest.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"21579cac-a347-4dc1-8bcf-0fb418d214d4\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"40875041-7116-4b7c-b202-2de3912febe7\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msidomain/providers/Microsoft.EventGrid/domains/msidomaintest\",\r\n \"name\": \"msidomaintest\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://userdomain4.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ae43ae9e-3ea0-4e79-bcc3-c2f48360145b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/userassignedmsitest1\": {\r\n \"principalId\": \"a2f990d8-2f0b-4266-a334-c57cf3bb51b7\",\r\n \"clientId\": \"4b0f3242-b99d-4632-87ae-939e9754ae24\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/domains/userdomain4\",\r\n \"name\": \"userdomain4\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-3934.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"41bf6223-259d-4774-a67f-0fe82524a1fa\",\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"12.35.67.98\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"12.35.90.100\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5120/providers/Microsoft.EventGrid/domains/sdk-Domain-3934\",\r\n \"name\": \"sdk-Domain-3934\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testinbounddomain1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6b5d5acc-4137-444c-809a-fb3a96326c16\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.0.0.0/24\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testInBoundDomain1\",\r\n \"name\": \"testInBoundDomain1\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-2748.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"7ce45cba-2cdc-47c2-b860-99ea148c6a27\",\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"12.35.67.98\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"12.35.90.100\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4588/providers/Microsoft.EventGrid/domains/sdk-Domain-2748\",\r\n \"name\": \"sdk-Domain-2748\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomain.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"0636fe1f-a4f7-4222-b5cc-2b728552e5ed\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"d10c4de7-b717-47c5-9b72-2983f9d93eca\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/domains/testdomain\",\r\n \"name\": \"testdomain\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-4207.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"5f0dcd3c-59ed-4eb6-ace0-8270014c1a0f\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8612/providers/Microsoft.EventGrid/domains/sdk-Domain-4207\",\r\n \"name\": \"sdk-Domain-4207\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomainipfiltering11.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"52a3c764-c754-4f28-8e1b-6eddf99638ff\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomainIpFiltering11\",\r\n \"name\": \"testDomainIpFiltering11\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://msidomaintest.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"21579cac-a347-4dc1-8bcf-0fb418d214d4\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"40875041-7116-4b7c-b202-2de3912febe7\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msidomain/providers/Microsoft.EventGrid/domains/msidomaintest\",\r\n \"name\": \"msidomaintest\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://userdomain4.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ae43ae9e-3ea0-4e79-bcc3-c2f48360145b\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/userassignedmsitest1\": {\r\n \"principalId\": \"a2f990d8-2f0b-4266-a334-c57cf3bb51b7\",\r\n \"clientId\": \"4b0f3242-b99d-4632-87ae-939e9754ae24\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/domains/userdomain4\",\r\n \"name\": \"userdomain4\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-3934.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"41bf6223-259d-4774-a67f-0fe82524a1fa\",\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"12.35.67.98\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"12.35.90.100\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5120/providers/Microsoft.EventGrid/domains/sdk-Domain-3934\",\r\n \"name\": \"sdk-Domain-3934\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testinbounddomain1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6b5d5acc-4137-444c-809a-fb3a96326c16\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.0.0.0/24\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testInBoundDomain1\",\r\n \"name\": \"testInBoundDomain1\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-2748.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"7ce45cba-2cdc-47c2-b860-99ea148c6a27\",\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"12.35.67.98\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"12.35.90.100\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4588/providers/Microsoft.EventGrid/domains/sdk-Domain-2748\",\r\n \"name\": \"sdk-Domain-2748\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomain.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"0636fe1f-a4f7-4222-b5cc-2b728552e5ed\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"d10c4de7-b717-47c5-9b72-2983f9d93eca\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/domains/testdomain\",\r\n \"name\": \"testdomain\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-4207.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"5f0dcd3c-59ed-4eb6-ace0-8270014c1a0f\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8612/providers/Microsoft.EventGrid/domains/sdk-Domain-4207\",\r\n \"name\": \"sdk-Domain-4207\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-2169.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d3512874-d22d-4aad-85c8-f60c1fafac43\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-841/providers/Microsoft.EventGrid/domains/sdk-Domain-2169\",\r\n \"name\": \"sdk-Domain-2169\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-414.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d742fe4e-c180-4f53-80c7-924e875593fe\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1327/providers/Microsoft.EventGrid/domains/sdk-Domain-414\",\r\n \"name\": \"sdk-Domain-414\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps408?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM0MDg/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps1153?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczc5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHMxMTUzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"cUsTomEVeNTSchEma\",\r\n \"inputSchemaMapping\": {\r\n \"inputSchemaMappingType\": \"Json\",\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIdField\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"MyTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\"\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"MySubjectField\"\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": \"MyDataVersionField\"\r\n }\r\n }\r\n },\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7128969f-62b2-47f1-aac9-10a36298d629" + "1a7d1a28-7d20-4ca7-8c35-294f228849ff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1325,6 +1324,7 @@ "847" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"cUsTomEVeNTSchEma\",\r\n \"inputSchemaMapping\": {\r\n \"inputSchemaMappingType\": \"Json\",\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIdField\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"MyTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\"\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"MySubjectField\"\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": \"MyDataVersionField\"\r\n }\r\n }\r\n },\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1339,31 +1339,31 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/5701779E-844B-4C87-AD56-89AB7C8704F5?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/81010C9F-9259-475A-9243-FAA845A9F752?api-version=2022-06-15" ], "x-ms-request-id": [ - "0b33c471-cd52-46cc-abe6-7324e8202f27" + "a8a18e43-61a6-472f-a338-03233cead8b7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-correlation-request-id": [ - "a77d80b3-6664-4ee2-82b2-001ef2946afc" + "a646307e-1add-49cc-bd28-cc21eda76c9e" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215145Z:a77d80b3-6664-4ee2-82b2-001ef2946afc" + "WESTUS2:20221006T020547Z:a646307e-1add-49cc-bd28-cc21eda76c9e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:51:45 GMT" + "Thu, 06 Oct 2022 02:05:47 GMT" ], "Content-Length": [ - "900" + "902" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1372,25 +1372,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIdField\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"MyTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"MySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": \"MyDataVersionField\",\r\n \"defaultValue\": null\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps408\",\r\n \"name\": \"PSTestDomain-ps408\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIdField\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"MyTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"MySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": \"MyDataVersionField\",\r\n \"defaultValue\": null\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps1153\",\r\n \"name\": \"PSTestDomain-ps1153\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/5701779E-844B-4C87-AD56-89AB7C8704F5?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNTcwMTc3OUUtODQ0Qi00Qzg3LUFENTYtODlBQjdDODcwNEY1P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/81010C9F-9259-475A-9243-FAA845A9F752?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvODEwMTBDOUYtOTI1OS00NzVBLTkyNDMtRkFBODQ1QTlGNzUyP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7128969f-62b2-47f1-aac9-10a36298d629" + "1a7d1a28-7d20-4ca7-8c35-294f228849ff" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1402,25 +1402,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0ed8c79b-4da8-47c2-beb8-c4f6f1f7a132" + "ffb7acaa-6be2-4617-92ec-906822721b1c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11997" ], "x-ms-correlation-request-id": [ - "7a58606e-2bb0-4296-b155-6d70f66b8248" + "4957aa33-d104-4c25-a144-a545948cadae" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215155Z:7a58606e-2bb0-4296-b155-6d70f66b8248" + "WESTUS2:20221006T020558Z:4957aa33-d104-4c25-a144-a545948cadae" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:51:55 GMT" + "Thu, 06 Oct 2022 02:05:57 GMT" ], "Content-Length": [ "286" @@ -1432,25 +1432,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/5701779E-844B-4C87-AD56-89AB7C8704F5?api-version=2021-12-01\",\r\n \"name\": \"5701779e-844b-4c87-ad56-89ab7c8704f5\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/81010C9F-9259-475A-9243-FAA845A9F752?api-version=2022-06-15\",\r\n \"name\": \"81010c9f-9259-475a-9243-faa845a9f752\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps408?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM0MDg/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps1153?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczc5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHMxMTUzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7128969f-62b2-47f1-aac9-10a36298d629" + "1a7d1a28-7d20-4ca7-8c35-294f228849ff" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1462,28 +1462,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c9564962-8a90-4cba-b7b0-34a7b77b5058" + "1ba9acaf-267f-45de-9ce2-6866758e3c0d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11996" ], "x-ms-correlation-request-id": [ - "c9116493-31df-49ca-b93d-469628d05794" + "6bd4c864-5030-4dc3-be81-8e06781dcb50" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215156Z:c9116493-31df-49ca-b93d-469628d05794" + "WESTUS2:20221006T020558Z:6bd4c864-5030-4dc3-be81-8e06781dcb50" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:51:55 GMT" + "Thu, 06 Oct 2022 02:05:57 GMT" ], "Content-Length": [ - "1030" + "1073" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1492,28 +1492,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps408.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIdField\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"MyTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"MySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": \"MyDataVersionField\",\r\n \"defaultValue\": null\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"4b2002e6-e257-4046-b806-da2b671a3f3e\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps408\",\r\n \"name\": \"PSTestDomain-ps408\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps1153.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIdField\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"MyTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"MySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": \"MyDataVersionField\",\r\n \"defaultValue\": null\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"3520b2e5-8aed-4878-9a44-f9d909b85145\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps1153\",\r\n \"name\": \"PSTestDomain-ps1153\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps408?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM0MDg/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps1153?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczc5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHMxMTUzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc4dfe6b-8d50-4d7f-9421-76ce00834b64" + "539b1964-5814-43a7-b67e-b529d4e9e4d2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1525,28 +1525,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a7ab6755-3ce4-4d15-a184-99a6d93b2319" + "badf8e76-4647-4bce-8181-25078de43c26" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11999" ], "x-ms-correlation-request-id": [ - "af1985f9-48f0-4e27-bcf7-f04fd9decf2c" + "210c8685-c4c8-4031-b56b-375d6535cb41" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215207Z:af1985f9-48f0-4e27-bcf7-f04fd9decf2c" + "WESTUS2:20221006T020610Z:210c8685-c4c8-4031-b56b-375d6535cb41" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:52:06 GMT" + "Thu, 06 Oct 2022 02:06:10 GMT" ], "Content-Length": [ - "1030" + "1073" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1555,26 +1555,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps408.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIdField\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"MyTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"MySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": \"MyDataVersionField\",\r\n \"defaultValue\": null\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"4b2002e6-e257-4046-b806-da2b671a3f3e\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps408\",\r\n \"name\": \"PSTestDomain-ps408\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps1153.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIdField\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"MyTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"MySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": \"MyDataVersionField\",\r\n \"defaultValue\": null\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"3520b2e5-8aed-4878-9a44-f9d909b85145\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps1153\",\r\n \"name\": \"PSTestDomain-ps1153\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2357?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHMyMzU3P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps6324?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczc5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM2MzI0P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"customeventschema\",\r\n \"inputSchemaMapping\": {\r\n \"inputSchemaMappingType\": \"Json\",\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIdField\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"MyTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": \"MyEventTypeDefaultValue\"\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"MySubjectField\",\r\n \"defaultValue\": \"MySubjectDefaultValue\"\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": \"MyDataVersionField\",\r\n \"defaultValue\": \"MyDataVersionDefaultValue\"\r\n }\r\n }\r\n },\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "33b4d1d8-d1a1-4646-84af-76e67995ac40" + "f09288df-1752-49d0-b144-c7a325a77330" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1583,6 +1582,7 @@ "1009" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"customeventschema\",\r\n \"inputSchemaMapping\": {\r\n \"inputSchemaMappingType\": \"Json\",\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIdField\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"MyTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": \"MyEventTypeDefaultValue\"\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"MySubjectField\",\r\n \"defaultValue\": \"MySubjectDefaultValue\"\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": \"MyDataVersionField\",\r\n \"defaultValue\": \"MyDataVersionDefaultValue\"\r\n }\r\n }\r\n },\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1597,28 +1597,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/5987A67B-95DF-4F98-BD3D-0B7F1F3481BF?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E85317A1-37EF-4CF4-858E-B70C3BDF8262?api-version=2022-06-15" ], "x-ms-request-id": [ - "d6b34a20-3fc1-424e-ac87-5afddd114069" + "9d26b6f5-e1eb-47d0-ad0d-e4556b27267d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1199" ], "x-ms-correlation-request-id": [ - "c74e39ca-a1a9-4734-9029-46482b9cfc5e" + "320e3cb1-5a77-40ba-b796-b0496bc42558" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215157Z:c74e39ca-a1a9-4734-9029-46482b9cfc5e" + "WESTUS2:20221006T020600Z:320e3cb1-5a77-40ba-b796-b0496bc42558" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:51:56 GMT" + "Thu, 06 Oct 2022 02:05:59 GMT" ], "Content-Length": [ "965" @@ -1630,25 +1630,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIdField\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"MyTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": \"MyEventTypeDefaultValue\"\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"MySubjectField\",\r\n \"defaultValue\": \"MySubjectDefaultValue\"\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": \"MyDataVersionField\",\r\n \"defaultValue\": \"MyDataVersionDefaultValue\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2357\",\r\n \"name\": \"PSTestDomain-ps2357\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIdField\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"MyTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": \"MyEventTypeDefaultValue\"\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"MySubjectField\",\r\n \"defaultValue\": \"MySubjectDefaultValue\"\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": \"MyDataVersionField\",\r\n \"defaultValue\": \"MyDataVersionDefaultValue\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps6324\",\r\n \"name\": \"PSTestDomain-ps6324\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/5987A67B-95DF-4F98-BD3D-0B7F1F3481BF?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNTk4N0E2N0ItOTVERi00Rjk4LUJEM0QtMEI3RjFGMzQ4MUJGP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E85317A1-37EF-4CF4-858E-B70C3BDF8262?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRTg1MzE3QTEtMzdFRi00Q0Y0LTg1OEUtQjcwQzNCREY4MjYyP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33b4d1d8-d1a1-4646-84af-76e67995ac40" + "f09288df-1752-49d0-b144-c7a325a77330" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1660,25 +1660,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "906250e1-ff02-4b94-80ad-0248fbea55e0" + "2c936ead-5651-4146-bd91-2db688efc7f0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11999" ], "x-ms-correlation-request-id": [ - "3c26daaa-e92a-41cb-b176-a6e050507269" + "cbc992bd-cf4c-4f9c-96fe-528affe990d8" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215207Z:3c26daaa-e92a-41cb-b176-a6e050507269" + "WESTUS2:20221006T020610Z:cbc992bd-cf4c-4f9c-96fe-528affe990d8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:52:06 GMT" + "Thu, 06 Oct 2022 02:06:09 GMT" ], "Content-Length": [ "286" @@ -1690,25 +1690,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/5987A67B-95DF-4F98-BD3D-0B7F1F3481BF?api-version=2021-12-01\",\r\n \"name\": \"5987a67b-95df-4f98-bd3d-0b7f1f3481bf\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E85317A1-37EF-4CF4-858E-B70C3BDF8262?api-version=2022-06-15\",\r\n \"name\": \"e85317a1-37ef-4cf4-858e-b70c3bdf8262\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2357?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHMyMzU3P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps6324?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczc5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM2MzI0P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33b4d1d8-d1a1-4646-84af-76e67995ac40" + "f09288df-1752-49d0-b144-c7a325a77330" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1720,28 +1720,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "59ed498e-0084-48a1-adcc-d3357729e99b" + "fabbfb16-518a-4925-bf14-823ccdbfd0b6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11998" ], "x-ms-correlation-request-id": [ - "3fecfcd9-33a5-4e0c-adc8-e2ddd5a591fe" + "457b77d8-0e1d-4d0f-b491-87f3ad9ab339" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215207Z:3fecfcd9-33a5-4e0c-adc8-e2ddd5a591fe" + "WESTUS2:20221006T020610Z:457b77d8-0e1d-4d0f-b491-87f3ad9ab339" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:52:06 GMT" + "Thu, 06 Oct 2022 02:06:09 GMT" ], "Content-Length": [ - "1096" + "1136" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1750,28 +1750,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps2357.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIdField\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"MyTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": \"MyEventTypeDefaultValue\"\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"MySubjectField\",\r\n \"defaultValue\": \"MySubjectDefaultValue\"\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": \"MyDataVersionField\",\r\n \"defaultValue\": \"MyDataVersionDefaultValue\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"17e1a885-2cd0-489a-a6af-3226d00ff4c0\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2357\",\r\n \"name\": \"PSTestDomain-ps2357\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps6324.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIdField\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"MyTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": \"MyEventTypeDefaultValue\"\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"MySubjectField\",\r\n \"defaultValue\": \"MySubjectDefaultValue\"\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": \"MyDataVersionField\",\r\n \"defaultValue\": \"MyDataVersionDefaultValue\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"7194013f-18f6-4874-a27a-56fccf0caa3e\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps6324\",\r\n \"name\": \"PSTestDomain-ps6324\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps5265?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM1MjY1P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps5018?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczc5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM1MDE4P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4999c728-8273-496a-b6ab-6edd07965f0e" + "640dc6db-c8ba-4c17-beba-7277df52cb5a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1780,7 +1780,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/D0F9806F-E4B6-40D9-8F21-3F8F70439350?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/A67CF757-F526-4E8B-AA20-0FAD6719EE04?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -1789,7 +1789,7 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/D0F9806F-E4B6-40D9-8F21-3F8F70439350?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/A67CF757-F526-4E8B-AA20-0FAD6719EE04?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1798,19 +1798,19 @@ "14999" ], "x-ms-request-id": [ - "16b21950-4210-4078-9c66-1c9114a8a321" + "38dd84dc-2783-41b5-95ad-568554dc766f" ], "x-ms-correlation-request-id": [ - "16b21950-4210-4078-9c66-1c9114a8a321" + "38dd84dc-2783-41b5-95ad-568554dc766f" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215207Z:16b21950-4210-4078-9c66-1c9114a8a321" + "WESTUS2:20221006T020611Z:38dd84dc-2783-41b5-95ad-568554dc766f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:52:06 GMT" + "Thu, 06 Oct 2022 02:06:10 GMT" ], "Expires": [ "-1" @@ -1823,21 +1823,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/D0F9806F-E4B6-40D9-8F21-3F8F70439350?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRDBGOTgwNkYtRTRCNi00MEQ5LThGMjEtM0Y4RjcwNDM5MzUwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/A67CF757-F526-4E8B-AA20-0FAD6719EE04?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvQTY3Q0Y3NTctRjUyNi00RThCLUFBMjAtMEZBRDY3MTlFRTA0P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4999c728-8273-496a-b6ab-6edd07965f0e" + "640dc6db-c8ba-4c17-beba-7277df52cb5a" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1849,25 +1849,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c07d5884-86c2-44d0-a76e-4c047572af6e" + "07182b78-2ed2-4fca-bc88-4f2f4e87a277" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11999" ], "x-ms-correlation-request-id": [ - "5486e4d9-cb15-47f0-b883-63f62aec3c50" + "bc905d66-b482-4ac3-b98d-4d8df12c5c91" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215217Z:5486e4d9-cb15-47f0-b883-63f62aec3c50" + "WESTUS2:20221006T020621Z:bc905d66-b482-4ac3-b98d-4d8df12c5c91" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:52:17 GMT" + "Thu, 06 Oct 2022 02:06:20 GMT" ], "Content-Length": [ "286" @@ -1879,25 +1879,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/D0F9806F-E4B6-40D9-8F21-3F8F70439350?api-version=2021-12-01\",\r\n \"name\": \"d0f9806f-e4b6-40d9-8f21-3f8f70439350\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/A67CF757-F526-4E8B-AA20-0FAD6719EE04?api-version=2022-06-15\",\r\n \"name\": \"a67cf757-f526-4e8b-aa20-0fad6719ee04\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/D0F9806F-E4B6-40D9-8F21-3F8F70439350?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvRDBGOTgwNkYtRTRCNi00MEQ5LThGMjEtM0Y4RjcwNDM5MzUwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/A67CF757-F526-4E8B-AA20-0FAD6719EE04?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvQTY3Q0Y3NTctRjUyNi00RThCLUFBMjAtMEZBRDY3MTlFRTA0P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4999c728-8273-496a-b6ab-6edd07965f0e" + "640dc6db-c8ba-4c17-beba-7277df52cb5a" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1909,25 +1909,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "04d03160-af11-4811-be1f-75c2bcf9393a" + "dd094905-247e-48de-b2c0-56d33f1811de" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11998" ], "x-ms-correlation-request-id": [ - "fa57bbc9-81ed-4919-ad38-1150cc46b4f8" + "5da20350-1aae-4bd4-955b-902973aa6293" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215217Z:fa57bbc9-81ed-4919-ad38-1150cc46b4f8" + "WESTUS2:20221006T020621Z:5da20350-1aae-4bd4-955b-902973aa6293" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:52:17 GMT" + "Thu, 06 Oct 2022 02:06:20 GMT" ], "Expires": [ "-1" @@ -1940,24 +1940,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7174?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM3MTc0P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps6?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczc5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM2P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b3a1b42-584f-405e-90ed-255eae62cf88" + "ee1373aa-b788-45ec-9a3e-27114eac5a0f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1966,7 +1966,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/0C8E3588-647B-460F-8654-43BC692EDF91?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/E9CCB205-C938-4252-84F5-7BB1B4564FCF?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -1975,28 +1975,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/0C8E3588-647B-460F-8654-43BC692EDF91?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E9CCB205-C938-4252-84F5-7BB1B4564FCF?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-request-id": [ - "25db8e6f-50f5-4370-8ec3-a50e500b4539" + "85ba4d16-9728-4379-b733-31194096755f" ], "x-ms-correlation-request-id": [ - "25db8e6f-50f5-4370-8ec3-a50e500b4539" + "85ba4d16-9728-4379-b733-31194096755f" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215218Z:25db8e6f-50f5-4370-8ec3-a50e500b4539" + "WESTUS2:20221006T020623Z:85ba4d16-9728-4379-b733-31194096755f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:52:18 GMT" + "Thu, 06 Oct 2022 02:06:23 GMT" ], "Expires": [ "-1" @@ -2009,21 +2009,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/0C8E3588-647B-460F-8654-43BC692EDF91?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMEM4RTM1ODgtNjQ3Qi00NjBGLTg2NTQtNDNCQzY5MkVERjkxP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E9CCB205-C938-4252-84F5-7BB1B4564FCF?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRTlDQ0IyMDUtQzkzOC00MjUyLTg0RjUtN0JCMUI0NTY0RkNGP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b3a1b42-584f-405e-90ed-255eae62cf88" + "ee1373aa-b788-45ec-9a3e-27114eac5a0f" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2035,25 +2035,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3adb8d80-9258-4fd8-9532-a48fd9ef489e" + "bed562b3-f7fa-45e3-9b7b-80bfa455ae4e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11999" ], "x-ms-correlation-request-id": [ - "45f2a485-7ef1-409d-b0ec-ce042fd494ff" + "4a2331c7-aaee-4e3d-a054-6f98a3d9ad34" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215228Z:45f2a485-7ef1-409d-b0ec-ce042fd494ff" + "WESTUS2:20221006T020633Z:4a2331c7-aaee-4e3d-a054-6f98a3d9ad34" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:52:27 GMT" + "Thu, 06 Oct 2022 02:06:32 GMT" ], "Content-Length": [ "286" @@ -2065,25 +2065,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/0C8E3588-647B-460F-8654-43BC692EDF91?api-version=2021-12-01\",\r\n \"name\": \"0c8e3588-647b-460f-8654-43bc692edf91\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E9CCB205-C938-4252-84F5-7BB1B4564FCF?api-version=2022-06-15\",\r\n \"name\": \"e9ccb205-c938-4252-84f5-7bb1b4564fcf\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/0C8E3588-647B-460F-8654-43BC692EDF91?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMEM4RTM1ODgtNjQ3Qi00NjBGLTg2NTQtNDNCQzY5MkVERjkxP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/E9CCB205-C938-4252-84F5-7BB1B4564FCF?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvRTlDQ0IyMDUtQzkzOC00MjUyLTg0RjUtN0JCMUI0NTY0RkNGP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b3a1b42-584f-405e-90ed-255eae62cf88" + "ee1373aa-b788-45ec-9a3e-27114eac5a0f" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2095,25 +2095,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "042d4f20-20b7-44b0-9866-956247e74cc9" + "1b541649-8204-4a86-ac71-957a288ab881" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11998" ], "x-ms-correlation-request-id": [ - "704ea4f2-d369-415b-8a86-79d0fdeffe35" + "6d2268f1-9037-4304-a19d-9340601c444b" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215228Z:704ea4f2-d369-415b-8a86-79d0fdeffe35" + "WESTUS2:20221006T020633Z:6d2268f1-9037-4304-a19d-9340601c444b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:52:27 GMT" + "Thu, 06 Oct 2022 02:06:32 GMT" ], "Expires": [ "-1" @@ -2126,24 +2126,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps4096?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM0MDk2P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7636?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczc5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM3NjM2P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b223c5a0-784a-444d-b56a-faa448ec6eb1" + "c62a5097-dac9-4e8a-98a4-c4004c9a88cc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2152,7 +2152,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/C489DD01-976D-4269-9A60-4CB3EE030C47?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/6B4B2726-1787-49E2-8261-BB9D2F40E19C?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -2161,28 +2161,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/C489DD01-976D-4269-9A60-4CB3EE030C47?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/6B4B2726-1787-49E2-8261-BB9D2F40E19C?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-request-id": [ - "6583085b-ccfd-480a-b563-32845cb37617" + "729a3626-cd73-454c-890e-d96e171cb1d2" ], "x-ms-correlation-request-id": [ - "6583085b-ccfd-480a-b563-32845cb37617" + "729a3626-cd73-454c-890e-d96e171cb1d2" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215228Z:6583085b-ccfd-480a-b563-32845cb37617" + "WESTUS2:20221006T020634Z:729a3626-cd73-454c-890e-d96e171cb1d2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:52:28 GMT" + "Thu, 06 Oct 2022 02:06:33 GMT" ], "Expires": [ "-1" @@ -2195,21 +2195,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/C489DD01-976D-4269-9A60-4CB3EE030C47?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvQzQ4OUREMDEtOTc2RC00MjY5LTlBNjAtNENCM0VFMDMwQzQ3P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/6B4B2726-1787-49E2-8261-BB9D2F40E19C?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNkI0QjI3MjYtMTc4Ny00OUUyLTgyNjEtQkI5RDJGNDBFMTlDP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b223c5a0-784a-444d-b56a-faa448ec6eb1" + "c62a5097-dac9-4e8a-98a4-c4004c9a88cc" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2221,25 +2221,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3a503e8b-2d92-46b0-a50b-59646a76f328" + "24db23d0-1979-44c4-a99d-ce9cf1264fef" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11999" ], "x-ms-correlation-request-id": [ - "9da13dd6-84c5-4477-ac15-c5b9f80f9b9d" + "0e3e1d6c-e662-4c9d-9b54-d99a365af475" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215238Z:9da13dd6-84c5-4477-ac15-c5b9f80f9b9d" + "WESTUS2:20221006T020644Z:0e3e1d6c-e662-4c9d-9b54-d99a365af475" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:52:38 GMT" + "Thu, 06 Oct 2022 02:06:43 GMT" ], "Content-Length": [ "286" @@ -2251,25 +2251,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/C489DD01-976D-4269-9A60-4CB3EE030C47?api-version=2021-12-01\",\r\n \"name\": \"c489dd01-976d-4269-9a60-4cb3ee030c47\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/6B4B2726-1787-49E2-8261-BB9D2F40E19C?api-version=2022-06-15\",\r\n \"name\": \"6b4b2726-1787-49e2-8261-bb9d2f40e19c\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/C489DD01-976D-4269-9A60-4CB3EE030C47?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvQzQ4OUREMDEtOTc2RC00MjY5LTlBNjAtNENCM0VFMDMwQzQ3P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/6B4B2726-1787-49E2-8261-BB9D2F40E19C?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNkI0QjI3MjYtMTc4Ny00OUUyLTgyNjEtQkI5RDJGNDBFMTlDP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b223c5a0-784a-444d-b56a-faa448ec6eb1" + "c62a5097-dac9-4e8a-98a4-c4004c9a88cc" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2281,25 +2281,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0dc8fe04-1ce2-429f-b20f-733a194a0b67" + "ee0a8846-660e-431c-af45-c09610b5a3a5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11998" ], "x-ms-correlation-request-id": [ - "247fa03e-c561-406d-b3b3-33bf16fe5f4f" + "3a1572f2-e249-42e0-aa94-08737ac6e6bc" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215238Z:247fa03e-c561-406d-b3b3-33bf16fe5f4f" + "WESTUS2:20221006T020644Z:3a1572f2-e249-42e0-aa94-08737ac6e6bc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:52:38 GMT" + "Thu, 06 Oct 2022 02:06:43 GMT" ], "Expires": [ "-1" @@ -2312,24 +2312,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps6868?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM2ODY4P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps4165?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczc5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM0MTY1P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "65381ec2-de4a-4d67-8615-30fb103494e1" + "9d5e7650-457a-4481-893d-03c1e32f13d8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2338,7 +2338,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/7EF345EB-E354-415B-9D34-EC160C701FE2?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/AFC6086C-ABF6-4D0B-99BC-D06EA85791D7?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -2347,28 +2347,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/7EF345EB-E354-415B-9D34-EC160C701FE2?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/AFC6086C-ABF6-4D0B-99BC-D06EA85791D7?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14999" ], "x-ms-request-id": [ - "bedfb556-bf8f-4b6f-b892-116e94f0fd18" + "da809f93-9d1e-4f8f-8a43-92365484a29f" ], "x-ms-correlation-request-id": [ - "bedfb556-bf8f-4b6f-b892-116e94f0fd18" + "da809f93-9d1e-4f8f-8a43-92365484a29f" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215239Z:bedfb556-bf8f-4b6f-b892-116e94f0fd18" + "WESTUS2:20221006T020645Z:da809f93-9d1e-4f8f-8a43-92365484a29f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:52:38 GMT" + "Thu, 06 Oct 2022 02:06:44 GMT" ], "Expires": [ "-1" @@ -2381,21 +2381,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/7EF345EB-E354-415B-9D34-EC160C701FE2?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvN0VGMzQ1RUItRTM1NC00MTVCLTlEMzQtRUMxNjBDNzAxRkUyP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/AFC6086C-ABF6-4D0B-99BC-D06EA85791D7?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvQUZDNjA4NkMtQUJGNi00RDBCLTk5QkMtRDA2RUE4NTc5MUQ3P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "65381ec2-de4a-4d67-8615-30fb103494e1" + "9d5e7650-457a-4481-893d-03c1e32f13d8" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2407,25 +2407,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d6fe4320-1771-46d3-92b5-a6752931b459" + "b7994da2-496f-4ca6-833b-9e27e84ac668" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11997" ], "x-ms-correlation-request-id": [ - "a8316d2e-08b3-46b1-8a4c-9cf449a8b3b0" + "bd2e086c-826c-464b-bb91-762aaf23800d" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215249Z:a8316d2e-08b3-46b1-8a4c-9cf449a8b3b0" + "WESTUS2:20221006T020655Z:bd2e086c-826c-464b-bb91-762aaf23800d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:52:48 GMT" + "Thu, 06 Oct 2022 02:06:55 GMT" ], "Content-Length": [ "286" @@ -2437,25 +2437,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/7EF345EB-E354-415B-9D34-EC160C701FE2?api-version=2021-12-01\",\r\n \"name\": \"7ef345eb-e354-415b-9d34-ec160c701fe2\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/AFC6086C-ABF6-4D0B-99BC-D06EA85791D7?api-version=2022-06-15\",\r\n \"name\": \"afc6086c-abf6-4d0b-99bc-d06ea85791d7\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/7EF345EB-E354-415B-9D34-EC160C701FE2?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvN0VGMzQ1RUItRTM1NC00MTVCLTlEMzQtRUMxNjBDNzAxRkUyP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/AFC6086C-ABF6-4D0B-99BC-D06EA85791D7?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvQUZDNjA4NkMtQUJGNi00RDBCLTk5QkMtRDA2RUE4NTc5MUQ3P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "65381ec2-de4a-4d67-8615-30fb103494e1" + "9d5e7650-457a-4481-893d-03c1e32f13d8" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2467,25 +2467,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "03b49559-1f30-462f-8976-ddecf7264477" + "9ed0632e-cf38-4060-befe-b75019b8709a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11996" ], "x-ms-correlation-request-id": [ - "5cd78b4b-aefc-49c4-9b35-b41b316894bd" + "a4ac7732-4510-434c-9031-433bd857e6b2" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215249Z:5cd78b4b-aefc-49c4-9b35-b41b316894bd" + "WESTUS2:20221006T020655Z:a4ac7732-4510-434c-9031-433bd857e6b2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:52:48 GMT" + "Thu, 06 Oct 2022 02:06:55 GMT" ], "Expires": [ "-1" @@ -2498,24 +2498,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps408?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM0MDg/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps1153?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczc5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHMxMTUzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f2914c0-ba36-4ea1-816c-b0c08d497d11" + "d4997513-f141-4b14-97b9-ccdaba3070ca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2524,7 +2524,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/80B949C7-D8D6-4F9A-8B48-DE2061A61FBF?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/4A8767A1-114E-4AE2-9816-B586839A9B55?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -2533,28 +2533,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/80B949C7-D8D6-4F9A-8B48-DE2061A61FBF?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4A8767A1-114E-4AE2-9816-B586839A9B55?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14995" + "14998" ], "x-ms-request-id": [ - "2f253e53-56ae-46b2-a55e-1da64ff4117a" + "346103e2-83d0-461a-862b-009718ff6d0b" ], "x-ms-correlation-request-id": [ - "2f253e53-56ae-46b2-a55e-1da64ff4117a" + "346103e2-83d0-461a-862b-009718ff6d0b" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215249Z:2f253e53-56ae-46b2-a55e-1da64ff4117a" + "WESTUS2:20221006T020656Z:346103e2-83d0-461a-862b-009718ff6d0b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:52:49 GMT" + "Thu, 06 Oct 2022 02:06:56 GMT" ], "Expires": [ "-1" @@ -2567,21 +2567,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/80B949C7-D8D6-4F9A-8B48-DE2061A61FBF?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvODBCOTQ5QzctRDhENi00RjlBLThCNDgtREUyMDYxQTYxRkJGP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4A8767A1-114E-4AE2-9816-B586839A9B55?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNEE4NzY3QTEtMTE0RS00QUUyLTk4MTYtQjU4NjgzOUE5QjU1P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f2914c0-ba36-4ea1-816c-b0c08d497d11" + "d4997513-f141-4b14-97b9-ccdaba3070ca" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2593,25 +2593,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "16da78b7-13c7-4e63-9b38-11660599c1f8" + "84963354-e664-4106-842a-094ec587e48b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11997" ], "x-ms-correlation-request-id": [ - "32d810e9-a069-48c9-b02e-e49e8a4d6d79" + "7b5ab764-51fb-45e2-9da1-36acba8813cd" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215259Z:32d810e9-a069-48c9-b02e-e49e8a4d6d79" + "WESTUS2:20221006T020706Z:7b5ab764-51fb-45e2-9da1-36acba8813cd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:52:59 GMT" + "Thu, 06 Oct 2022 02:07:06 GMT" ], "Content-Length": [ "286" @@ -2623,25 +2623,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/80B949C7-D8D6-4F9A-8B48-DE2061A61FBF?api-version=2021-12-01\",\r\n \"name\": \"80b949c7-d8d6-4f9a-8b48-de2061a61fbf\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4A8767A1-114E-4AE2-9816-B586839A9B55?api-version=2022-06-15\",\r\n \"name\": \"4a8767a1-114e-4ae2-9816-b586839a9b55\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/80B949C7-D8D6-4F9A-8B48-DE2061A61FBF?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvODBCOTQ5QzctRDhENi00RjlBLThCNDgtREUyMDYxQTYxRkJGP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/4A8767A1-114E-4AE2-9816-B586839A9B55?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNEE4NzY3QTEtMTE0RS00QUUyLTk4MTYtQjU4NjgzOUE5QjU1P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f2914c0-ba36-4ea1-816c-b0c08d497d11" + "d4997513-f141-4b14-97b9-ccdaba3070ca" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2653,25 +2653,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3a3a5294-27a2-4400-acc5-f894add5575a" + "dd2780c2-100e-45b6-a287-9dfe1a582e9a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11996" ], "x-ms-correlation-request-id": [ - "113d987d-80ed-4659-a83f-efab3ab45bf8" + "eeb8524d-6697-4ad0-a0b8-0cfb1a5b2dd6" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215259Z:113d987d-80ed-4659-a83f-efab3ab45bf8" + "WESTUS2:20221006T020706Z:eeb8524d-6697-4ad0-a0b8-0cfb1a5b2dd6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:52:59 GMT" + "Thu, 06 Oct 2022 02:07:06 GMT" ], "Expires": [ "-1" @@ -2684,24 +2684,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2644/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2357?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHMyMzU3P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7943/providers/Microsoft.EventGrid/domains/PSTestDomain-ps6324?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczc5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM2MzI0P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f927277a-7c90-4207-96c3-f217b41c5e0f" + "0f1a7167-f32a-4026-a10b-4e24407cc1c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2710,7 +2710,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/1780FEF7-ECCF-4DEC-BE24-AD65B07091CC?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/852270D5-BA72-42F3-9968-9067AC892AB6?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -2719,28 +2719,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/1780FEF7-ECCF-4DEC-BE24-AD65B07091CC?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/852270D5-BA72-42F3-9968-9067AC892AB6?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14994" + "14999" ], "x-ms-request-id": [ - "2407d9ed-20cf-41a1-b82b-276c64256f26" + "1e7ba478-f17d-4fb3-926b-054cce071975" ], "x-ms-correlation-request-id": [ - "2407d9ed-20cf-41a1-b82b-276c64256f26" + "1e7ba478-f17d-4fb3-926b-054cce071975" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215259Z:2407d9ed-20cf-41a1-b82b-276c64256f26" + "WESTUS2:20221006T020707Z:1e7ba478-f17d-4fb3-926b-054cce071975" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:52:59 GMT" + "Thu, 06 Oct 2022 02:07:06 GMT" ], "Expires": [ "-1" @@ -2753,21 +2753,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/1780FEF7-ECCF-4DEC-BE24-AD65B07091CC?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMTc4MEZFRjctRUNDRi00REVDLUJFMjQtQUQ2NUIwNzA5MUNDP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/852270D5-BA72-42F3-9968-9067AC892AB6?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvODUyMjcwRDUtQkE3Mi00MkYzLTk5NjgtOTA2N0FDODkyQUI2P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f927277a-7c90-4207-96c3-f217b41c5e0f" + "0f1a7167-f32a-4026-a10b-4e24407cc1c5" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2779,25 +2779,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "45f8fa1e-02d7-4a74-bd80-c7240dd687a5" + "7d765f15-0631-442c-ac34-f5d3dc10c7df" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11999" ], "x-ms-correlation-request-id": [ - "f8e6ab22-78a0-4d9b-92b2-f5a6187d5d8f" + "cba55bb6-28dc-477c-8ae5-350f339f2514" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215310Z:f8e6ab22-78a0-4d9b-92b2-f5a6187d5d8f" + "WESTUS2:20221006T020717Z:cba55bb6-28dc-477c-8ae5-350f339f2514" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:53:09 GMT" + "Thu, 06 Oct 2022 02:07:17 GMT" ], "Content-Length": [ "286" @@ -2809,25 +2809,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/1780FEF7-ECCF-4DEC-BE24-AD65B07091CC?api-version=2021-12-01\",\r\n \"name\": \"1780fef7-eccf-4dec-be24-ad65b07091cc\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/852270D5-BA72-42F3-9968-9067AC892AB6?api-version=2022-06-15\",\r\n \"name\": \"852270d5-ba72-42f3-9968-9067ac892ab6\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/1780FEF7-ECCF-4DEC-BE24-AD65B07091CC?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMTc4MEZFRjctRUNDRi00REVDLUJFMjQtQUQ2NUIwNzA5MUNDP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/852270D5-BA72-42F3-9968-9067AC892AB6?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvODUyMjcwRDUtQkE3Mi00MkYzLTk5NjgtOTA2N0FDODkyQUI2P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f927277a-7c90-4207-96c3-f217b41c5e0f" + "0f1a7167-f32a-4026-a10b-4e24407cc1c5" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2839,25 +2839,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "db0854df-7092-4bdd-b5d4-2617f76a23b3" + "a21a54a5-37a5-4e7b-8c5e-7c902576d4b8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11998" ], "x-ms-correlation-request-id": [ - "016c70a5-bc7b-4fca-b4cd-a986350df515" + "0a66dfa6-0803-43cf-9e27-51cfafd141e0" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215310Z:016c70a5-bc7b-4fca-b4cd-a986350df515" + "WESTUS2:20221006T020717Z:0a66dfa6-0803-43cf-9e27-51cfafd141e0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:53:09 GMT" + "Thu, 06 Oct 2022 02:07:17 GMT" ], "Expires": [ "-1" @@ -2870,24 +2870,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps2644?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczI2NDQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps7943?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczc5NDM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "005aa3a3-4946-48c9-8eea-b67e41a04b34" + "d084436b-3c7e-4b06-b33f-738bc1194715" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2896,7 +2896,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzI2NDQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzc5NDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2905,13 +2905,13 @@ "14999" ], "x-ms-request-id": [ - "cbfa2a97-a8bd-4177-9591-cbcdc620ec89" + "f36f4721-3540-4e27-adb4-60c4b3e8d822" ], "x-ms-correlation-request-id": [ - "cbfa2a97-a8bd-4177-9591-cbcdc620ec89" + "f36f4721-3540-4e27-adb4-60c4b3e8d822" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215312Z:cbfa2a97-a8bd-4177-9591-cbcdc620ec89" + "WESTUS2:20221006T020719Z:f36f4721-3540-4e27-adb4-60c4b3e8d822" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2920,7 +2920,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:53:11 GMT" + "Thu, 06 Oct 2022 02:07:19 GMT" ], "Expires": [ "-1" @@ -2933,18 +2933,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzI2NDQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpJMk5EUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzc5NDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpjNU5ETXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2956,13 +2956,13 @@ "11999" ], "x-ms-request-id": [ - "2dacebf5-f963-468f-b573-1f49c3924f14" + "10c0daa1-aaad-4394-b170-ef6db43e6502" ], "x-ms-correlation-request-id": [ - "2dacebf5-f963-468f-b573-1f49c3924f14" + "10c0daa1-aaad-4394-b170-ef6db43e6502" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215327Z:2dacebf5-f963-468f-b573-1f49c3924f14" + "WESTUS2:20221006T020734Z:10c0daa1-aaad-4394-b170-ef6db43e6502" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2971,7 +2971,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:53:27 GMT" + "Thu, 06 Oct 2022 02:07:34 GMT" ], "Expires": [ "-1" @@ -2984,18 +2984,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzI2NDQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpJMk5EUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzc5NDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpjNU5ETXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3007,13 +3007,13 @@ "11998" ], "x-ms-request-id": [ - "32702a0f-6c47-4830-9919-0f088e5fd56c" + "2aa8ab51-961e-4f62-9b4b-8667d831461a" ], "x-ms-correlation-request-id": [ - "32702a0f-6c47-4830-9919-0f088e5fd56c" + "2aa8ab51-961e-4f62-9b4b-8667d831461a" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T215327Z:32702a0f-6c47-4830-9919-0f088e5fd56c" + "WESTUS2:20221006T020734Z:2aa8ab51-961e-4f62-9b4b-8667d831461a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3022,7 +3022,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:53:27 GMT" + "Thu, 06 Oct 2022 02:07:34 GMT" ], "Expires": [ "-1" @@ -3037,13 +3037,13 @@ ], "Names": { "": [ - "ps5265", - "ps7174", - "ps4096", - "ps6868", - "ps408", - "ps2357", - "ps2644" + "ps5018", + "ps6", + "ps7636", + "ps4165", + "ps1153", + "ps6324", + "ps7943" ] }, "Variables": { diff --git a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.DomainTests/EventGrid_DomainsNewKey.json b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.DomainTests/EventGrid_DomainsNewKey.json index acdd783b98bc..86eb4db557b3 100644 --- a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.DomainTests/EventGrid_DomainsNewKey.json +++ b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.DomainTests/EventGrid_DomainsNewKey.json @@ -1,22 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps4118?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczQxMTg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps6813?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczY4MTM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e549e49c-aae8-460a-a362-28cf8cbbf5b5" + "b703804a-96b1-41b9-90ff-03d2575aab1d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,6 +24,7 @@ "35" ] }, + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "4a7eecfc-3237-444b-be08-45f8d8f91013" + "c58b6193-0775-42ed-b156-36593b5ab369" ], "x-ms-correlation-request-id": [ - "4a7eecfc-3237-444b-be08-45f8d8f91013" + "c58b6193-0775-42ed-b156-36593b5ab369" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T215009Z:4a7eecfc-3237-444b-be08-45f8d8f91013" + "WESTUS2:20221006T020408Z:c58b6193-0775-42ed-b156-36593b5ab369" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:50:09 GMT" + "Thu, 06 Oct 2022 02:04:08 GMT" ], "Content-Length": [ "186" @@ -63,26 +63,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4118\",\r\n \"name\": \"RGName-ps4118\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6813\",\r\n \"name\": \"RGName-ps6813\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4118/providers/Microsoft.EventGrid/domains/PSTestDomain-ps964?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM5NjQ/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6813/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7231?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczY4MTMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM3MjMxP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9b88519c-2fdb-48dc-9d71-c496235f1e18" + "0981bafa-6f70-49d4-a5c1-a33b9ca7e947" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -91,6 +90,7 @@ "272" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -105,10 +105,10 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/5A5D7FED-6F59-4ED8-8FF4-7FBC785E8F08?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/FE302767-8D94-4D57-A4C1-57EE74F80EFE?api-version=2022-06-15" ], "x-ms-request-id": [ - "7a981d7c-fba0-479d-b8d1-de442601132e" + "37546058-b8c0-4564-a731-602cce780165" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -117,19 +117,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "1cf3b257-67cc-4cb3-93a2-2be5fa0954a2" + "30f2cf70-4fce-4593-96aa-0cc9bd8dfb9e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T215011Z:1cf3b257-67cc-4cb3-93a2-2be5fa0954a2" + "WESTUS2:20221006T020410Z:30f2cf70-4fce-4593-96aa-0cc9bd8dfb9e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:50:10 GMT" + "Thu, 06 Oct 2022 02:04:09 GMT" ], "Content-Length": [ - "508" + "510" ], "Content-Type": [ "application/json; charset=utf-8" @@ -138,25 +138,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4118/providers/Microsoft.EventGrid/domains/PSTestDomain-ps964\",\r\n \"name\": \"PSTestDomain-ps964\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6813/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7231\",\r\n \"name\": \"PSTestDomain-ps7231\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/5A5D7FED-6F59-4ED8-8FF4-7FBC785E8F08?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNUE1RDdGRUQtNkY1OS00RUQ4LThGRjQtN0ZCQzc4NUU4RjA4P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/FE302767-8D94-4D57-A4C1-57EE74F80EFE?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRkUzMDI3NjctOEQ5NC00RDU3LUE0QzEtNTdFRTc0RjgwRUZFP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b88519c-2fdb-48dc-9d71-c496235f1e18" + "0981bafa-6f70-49d4-a5c1-a33b9ca7e947" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -168,7 +168,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ca245060-57ba-41e2-a263-85caf51e6ce1" + "f027428c-72ac-4fba-99c7-c596bf1149e0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -177,16 +177,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "caad5b05-b314-4fab-af33-d290355511a7" + "cd1e3845-1720-4c4b-94e7-6240ed63b87b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T215021Z:caad5b05-b314-4fab-af33-d290355511a7" + "WESTUS2:20221006T020420Z:cd1e3845-1720-4c4b-94e7-6240ed63b87b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:50:20 GMT" + "Thu, 06 Oct 2022 02:04:19 GMT" ], "Content-Length": [ "286" @@ -198,25 +198,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/5A5D7FED-6F59-4ED8-8FF4-7FBC785E8F08?api-version=2021-12-01\",\r\n \"name\": \"5a5d7fed-6f59-4ed8-8ff4-7fbc785e8f08\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/FE302767-8D94-4D57-A4C1-57EE74F80EFE?api-version=2022-06-15\",\r\n \"name\": \"fe302767-8d94-4d57-a4c1-57ee74f80efe\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4118/providers/Microsoft.EventGrid/domains/PSTestDomain-ps964?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM5NjQ/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6813/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7231?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczY4MTMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM3MjMxP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b88519c-2fdb-48dc-9d71-c496235f1e18" + "0981bafa-6f70-49d4-a5c1-a33b9ca7e947" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -228,7 +228,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e1690469-f47f-4443-af7b-3172a6f246c0" + "cc50a0fa-0efe-4069-b858-59d1fa9ca415" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -237,19 +237,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "ce45876e-378f-4b90-ba9d-a10f30930c66" + "c38fe5fa-ab89-4c61-93ca-c6f4fcdcace3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T215021Z:ce45876e-378f-4b90-ba9d-a10f30930c66" + "WESTUS2:20221006T020420Z:c38fe5fa-ab89-4c61-93ca-c6f4fcdcace3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:50:20 GMT" + "Thu, 06 Oct 2022 02:04:20 GMT" ], "Content-Length": [ - "638" + "681" ], "Content-Type": [ "application/json; charset=utf-8" @@ -258,28 +258,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps964.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"87e9ca66-8541-40cf-9a61-1b808a8e53f2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4118/providers/Microsoft.EventGrid/domains/PSTestDomain-ps964\",\r\n \"name\": \"PSTestDomain-ps964\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps7231.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9f68b47e-2ed8-4772-92c5-4dab89caa03f\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6813/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7231\",\r\n \"name\": \"PSTestDomain-ps7231\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4118/providers/Microsoft.EventGrid/domains/PSTestDomain-ps964?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM5NjQ/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6813/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7231?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczY4MTMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM3MjMxP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7e17eb38-6724-467d-88e9-aee9d4752654" + "3cd3e372-d884-401a-8730-af2482d3e2ce" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -291,28 +291,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "283b7e89-cf94-456e-a38d-dbd27b961905" + "09e434ad-0076-46b7-aca0-2e8b9cbc15eb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-correlation-request-id": [ - "dd797648-2592-4605-81f4-10a8d6114ca3" + "8533da0b-ee0b-456b-a73b-115e73b08763" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T215022Z:dd797648-2592-4605-81f4-10a8d6114ca3" + "WESTUS2:20221006T020422Z:8533da0b-ee0b-456b-a73b-115e73b08763" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:50:21 GMT" + "Thu, 06 Oct 2022 02:04:21 GMT" ], "Content-Length": [ - "638" + "681" ], "Content-Type": [ "application/json; charset=utf-8" @@ -321,26 +321,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps964.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"87e9ca66-8541-40cf-9a61-1b808a8e53f2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4118/providers/Microsoft.EventGrid/domains/PSTestDomain-ps964\",\r\n \"name\": \"PSTestDomain-ps964\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps7231.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9f68b47e-2ed8-4772-92c5-4dab89caa03f\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6813/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7231\",\r\n \"name\": \"PSTestDomain-ps7231\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4118/providers/Microsoft.EventGrid/domains/PSTestDomain-ps964/regenerateKey?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM5NjQvcmVnZW5lcmF0ZUtleT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6813/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7231/regenerateKey?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczY4MTMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM3MjMxL3JlZ2VuZXJhdGVLZXk/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"keyName\": \"key1\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f8fbad76-edae-4c06-b5ff-eb17f5ba3241" + "24215677-56c3-459a-bd4f-d9f1c086ab63" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -349,6 +348,7 @@ "25" ] }, + "RequestBody": "{\r\n \"keyName\": \"key1\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -360,7 +360,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7fe5dff8-5621-4f1f-926a-51bfc3842463" + "eae7a354-51fd-42e3-9d4e-aef50db4b37e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -369,16 +369,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "0b94672d-9228-43f8-b9bb-59aa8a7838bb" + "c68231c3-4ff9-4645-a988-b0ea720a02d7" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T215021Z:0b94672d-9228-43f8-b9bb-59aa8a7838bb" + "WESTUS2:20221006T020421Z:c68231c3-4ff9-4645-a988-b0ea720a02d7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:50:21 GMT" + "Thu, 06 Oct 2022 02:04:20 GMT" ], "Content-Length": [ "109" @@ -390,26 +390,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"key1\": \"Wtp+2RiHuHkQ1cr1HS5MC1WBDgdOfvJv8VtpXK8hF3I=\",\r\n \"key2\": \"Gb05oYRz08UTrM2k7GXpPqYfWDMaa73KNiWcMpn9sYk=\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"gzffqomCSdJHqsmLNIxSG5ydfMhvzYMS6AC7C4DJdMo=\",\r\n \"key2\": \"VvBjEz2E9AeG60hHDTlItFObTiPdDOzuT10kMbc1UlU=\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4118/providers/Microsoft.EventGrid/domains/PSTestDomain-ps964/regenerateKey?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM5NjQvcmVnZW5lcmF0ZUtleT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6813/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7231/regenerateKey?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczY4MTMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM3MjMxL3JlZ2VuZXJhdGVLZXk/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"keyName\": \"key2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a6e6f803-fca2-4c97-93af-e06e778d9bc3" + "204a176e-8d1f-4b33-ad2a-b384c50d1bda" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -418,6 +417,7 @@ "25" ] }, + "RequestBody": "{\r\n \"keyName\": \"key2\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -429,25 +429,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "82593d66-0c6e-466a-979f-e43e2c4f2980" + "56145941-d16d-451d-a68d-634ec1913776" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "02bcbebc-0815-4432-aa78-adcad55a4aa9" + "67254985-3ca2-4f3a-9a34-102d7e5e639a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T215022Z:02bcbebc-0815-4432-aa78-adcad55a4aa9" + "WESTUS2:20221006T020421Z:67254985-3ca2-4f3a-9a34-102d7e5e639a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:50:21 GMT" + "Thu, 06 Oct 2022 02:04:21 GMT" ], "Content-Length": [ "109" @@ -459,26 +459,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"key1\": \"Wtp+2RiHuHkQ1cr1HS5MC1WBDgdOfvJv8VtpXK8hF3I=\",\r\n \"key2\": \"zbOdyIfReglUEi5gOdHJHsX3bQummgq5z+/UyEKBahk=\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"gzffqomCSdJHqsmLNIxSG5ydfMhvzYMS6AC7C4DJdMo=\",\r\n \"key2\": \"QdB11lnblRYn//X1wsDXddfigK1Wms/fK8JrimYzgHk=\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4118/providers/Microsoft.EventGrid/domains/PSTestDomain-ps964/regenerateKey?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM5NjQvcmVnZW5lcmF0ZUtleT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6813/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7231/regenerateKey?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczY4MTMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM3MjMxL3JlZ2VuZXJhdGVLZXk/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"keyName\": \"key2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7e17eb38-6724-467d-88e9-aee9d4752654" + "3cd3e372-d884-401a-8730-af2482d3e2ce" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -487,6 +486,7 @@ "25" ] }, + "RequestBody": "{\r\n \"keyName\": \"key2\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -498,25 +498,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "628e992f-111d-412a-8955-850395b59550" + "2027cf5a-c5db-4924-886c-1c2229cabf25" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "4f837671-3dc7-46c0-b5f0-5f1aeafd808b" + "fe31032d-e56e-4988-bc2e-6992189ce0bf" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T215022Z:4f837671-3dc7-46c0-b5f0-5f1aeafd808b" + "WESTUS2:20221006T020422Z:fe31032d-e56e-4988-bc2e-6992189ce0bf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:50:21 GMT" + "Thu, 06 Oct 2022 02:04:22 GMT" ], "Content-Length": [ "109" @@ -528,28 +528,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"key1\": \"Wtp+2RiHuHkQ1cr1HS5MC1WBDgdOfvJv8VtpXK8hF3I=\",\r\n \"key2\": \"VS2ONubIXRvzvTAxS/dcdy6svR46QEwtkBOT+QM1hw4=\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"gzffqomCSdJHqsmLNIxSG5ydfMhvzYMS6AC7C4DJdMo=\",\r\n \"key2\": \"MF4NQW5ainPUdS87Ups/ezFAcbKglrfPKNbjMtjO8w8=\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4118/providers/Microsoft.EventGrid/domains/PSTestDomain-ps964?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM5NjQ/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6813/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7231?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczY4MTMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM3MjMxP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "090146d5-3c47-4d0d-8b3e-9ee941a20de9" + "d3235a33-bdf6-4756-9b5f-adf331565e27" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -558,7 +558,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/A8C4291F-B744-401B-957D-27F9484C432E?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/DC24ED0F-26CB-4886-A91A-5860F1AFD7AA?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -567,7 +567,7 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/A8C4291F-B744-401B-957D-27F9484C432E?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/DC24ED0F-26CB-4886-A91A-5860F1AFD7AA?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -576,19 +576,19 @@ "14998" ], "x-ms-request-id": [ - "834a0da3-78db-4d35-9096-0a96586ecfb8" + "ebbd2f77-2a46-4ed2-b35a-338b6a3743cd" ], "x-ms-correlation-request-id": [ - "834a0da3-78db-4d35-9096-0a96586ecfb8" + "ebbd2f77-2a46-4ed2-b35a-338b6a3743cd" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T215022Z:834a0da3-78db-4d35-9096-0a96586ecfb8" + "WESTUS2:20221006T020423Z:ebbd2f77-2a46-4ed2-b35a-338b6a3743cd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:50:22 GMT" + "Thu, 06 Oct 2022 02:04:23 GMT" ], "Expires": [ "-1" @@ -601,21 +601,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/A8C4291F-B744-401B-957D-27F9484C432E?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvQThDNDI5MUYtQjc0NC00MDFCLTk1N0QtMjdGOTQ4NEM0MzJFP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/DC24ED0F-26CB-4886-A91A-5860F1AFD7AA?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvREMyNEVEMEYtMjZDQi00ODg2LUE5MUEtNTg2MEYxQUZEN0FBP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "090146d5-3c47-4d0d-8b3e-9ee941a20de9" + "d3235a33-bdf6-4756-9b5f-adf331565e27" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -627,25 +627,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f04f43e3-871d-4328-a221-6c0dee0f277d" + "37bafbed-7c27-43e3-bbda-44d9f00d604a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-correlation-request-id": [ - "019c65a3-e89f-4d2f-be21-952436fa95fd" + "4c5817de-92a0-42c1-808d-2d8affe029d7" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T215032Z:019c65a3-e89f-4d2f-be21-952436fa95fd" + "WESTUS2:20221006T020433Z:4c5817de-92a0-42c1-808d-2d8affe029d7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:50:32 GMT" + "Thu, 06 Oct 2022 02:04:33 GMT" ], "Content-Length": [ "286" @@ -657,25 +657,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/A8C4291F-B744-401B-957D-27F9484C432E?api-version=2021-12-01\",\r\n \"name\": \"a8c4291f-b744-401b-957d-27f9484c432e\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/DC24ED0F-26CB-4886-A91A-5860F1AFD7AA?api-version=2022-06-15\",\r\n \"name\": \"dc24ed0f-26cb-4886-a91a-5860f1afd7aa\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/A8C4291F-B744-401B-957D-27F9484C432E?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvQThDNDI5MUYtQjc0NC00MDFCLTk1N0QtMjdGOTQ4NEM0MzJFP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/DC24ED0F-26CB-4886-A91A-5860F1AFD7AA?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvREMyNEVEMEYtMjZDQi00ODg2LUE5MUEtNTg2MEYxQUZEN0FBP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "090146d5-3c47-4d0d-8b3e-9ee941a20de9" + "d3235a33-bdf6-4756-9b5f-adf331565e27" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -687,25 +687,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "47e30413-62de-45c2-8389-01ae8fb03145" + "5676e185-5e99-4477-98af-509cdf771992" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11997" ], "x-ms-correlation-request-id": [ - "4ab06c41-ee81-4512-b074-056c3e53d194" + "2cde464b-89a4-4091-9cb5-bf293d56628e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T215033Z:4ab06c41-ee81-4512-b074-056c3e53d194" + "WESTUS2:20221006T020433Z:2cde464b-89a4-4091-9cb5-bf293d56628e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:50:32 GMT" + "Thu, 06 Oct 2022 02:04:33 GMT" ], "Expires": [ "-1" @@ -718,24 +718,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps4118?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczQxMTg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps6813?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczY4MTM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "767c5ec3-24e0-4ebf-bf20-8b83c4931372" + "5d8462b1-5aad-4fea-a501-b4c754428383" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -744,22 +744,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzQxMTgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzY4MTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-request-id": [ - "44c66432-93ee-4fb5-9c57-dd029d49f99e" + "eab6fcc8-777d-4059-8dc8-5f910c2a3724" ], "x-ms-correlation-request-id": [ - "44c66432-93ee-4fb5-9c57-dd029d49f99e" + "eab6fcc8-777d-4059-8dc8-5f910c2a3724" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T215033Z:44c66432-93ee-4fb5-9c57-dd029d49f99e" + "WESTUS2:20221006T020435Z:eab6fcc8-777d-4059-8dc8-5f910c2a3724" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -768,7 +768,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:50:32 GMT" + "Thu, 06 Oct 2022 02:04:34 GMT" ], "Expires": [ "-1" @@ -781,18 +781,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzQxMTgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpReE1UZ3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzY4MTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpZNE1UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -801,16 +801,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11999" ], "x-ms-request-id": [ - "4e103cbf-1069-4a79-a501-841dea6a1f35" + "4a1a0f61-d3d7-4b92-a618-cd902dc22640" ], "x-ms-correlation-request-id": [ - "4e103cbf-1069-4a79-a501-841dea6a1f35" + "4a1a0f61-d3d7-4b92-a618-cd902dc22640" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T215048Z:4e103cbf-1069-4a79-a501-841dea6a1f35" + "WESTUS2:20221006T020450Z:4a1a0f61-d3d7-4b92-a618-cd902dc22640" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -819,7 +819,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:50:47 GMT" + "Thu, 06 Oct 2022 02:04:49 GMT" ], "Expires": [ "-1" @@ -832,18 +832,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzQxMTgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpReE1UZ3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzY4MTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpZNE1UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -852,16 +852,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11998" ], "x-ms-request-id": [ - "0cd8f778-1f21-425c-b231-3db054cd6a49" + "9ec950a0-040a-4ab2-8e23-86a6528801f5" ], "x-ms-correlation-request-id": [ - "0cd8f778-1f21-425c-b231-3db054cd6a49" + "9ec950a0-040a-4ab2-8e23-86a6528801f5" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T215048Z:0cd8f778-1f21-425c-b231-3db054cd6a49" + "WESTUS2:20221006T020450Z:9ec950a0-040a-4ab2-8e23-86a6528801f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -870,7 +870,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:50:47 GMT" + "Thu, 06 Oct 2022 02:04:49 GMT" ], "Expires": [ "-1" @@ -885,8 +885,8 @@ ], "Names": { "": [ - "ps964", - "ps4118" + "ps7231", + "ps6813" ] }, "Variables": { diff --git a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.DomainTests/EventGrid_DomainsidentityTests.json b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.DomainTests/EventGrid_DomainsidentityTests.json index 31588649283d..3ffe19d6898b 100644 --- a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.DomainTests/EventGrid_DomainsidentityTests.json +++ b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.DomainTests/EventGrid_DomainsidentityTests.json @@ -1,22 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps2841?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczI4NDE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps9576?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczk1NzY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3af16149-46a2-44df-b086-64027dccf05c" + "617a8a48-38b5-4bdb-be08-410ee1317f82" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,6 +24,7 @@ "35" ] }, + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "b73fc982-4043-4dca-b651-f2716d330fc1" + "b3a05318-333d-451a-9a88-16c6cea3c9d0" ], "x-ms-correlation-request-id": [ - "b73fc982-4043-4dca-b651-f2716d330fc1" + "b3a05318-333d-451a-9a88-16c6cea3c9d0" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T031814Z:b73fc982-4043-4dca-b651-f2716d330fc1" + "WESTUS2:20221006T020220Z:b3a05318-333d-451a-9a88-16c6cea3c9d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:18:14 GMT" + "Thu, 06 Oct 2022 02:02:20 GMT" ], "Content-Length": [ "186" @@ -63,26 +63,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2841\",\r\n \"name\": \"RGName-ps2841\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9576\",\r\n \"name\": \"RGName-ps9576\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps5393?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczUzOTM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps4654?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczQ2NTQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "23be0778-16e2-4c35-9640-44cbece01bc5" + "f79f0777-db54-4508-8e53-160a875dffd9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ], "Content-Type": [ "application/json; charset=utf-8" @@ -91,6 +90,7 @@ "35" ] }, + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "c7166179-1221-4aed-8e39-b8c94118cef4" + "3bb1a2d9-8f84-42f3-8f8b-e98e644b3527" ], "x-ms-correlation-request-id": [ - "c7166179-1221-4aed-8e39-b8c94118cef4" + "3bb1a2d9-8f84-42f3-8f8b-e98e644b3527" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T031814Z:c7166179-1221-4aed-8e39-b8c94118cef4" + "WESTUS2:20221006T020221Z:3bb1a2d9-8f84-42f3-8f8b-e98e644b3527" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,7 +117,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:18:14 GMT" + "Thu, 06 Oct 2022 02:02:21 GMT" ], "Content-Length": [ "186" @@ -129,26 +129,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5393\",\r\n \"name\": \"RGName-ps5393\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4654\",\r\n \"name\": \"RGName-ps4654\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2841/providers/Microsoft.EventGrid/domains/PSTestDomain-ps9770?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI4NDEvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM5NzcwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9576/providers/Microsoft.EventGrid/domains/PSTestDomain-ps4048?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczk1NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM0MDQ4P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1c34a14f-648d-4013-aa63-1f73090661f1" + "c2cf5e1e-bd9f-4e32-93b5-9a2de7f2673c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -157,6 +156,7 @@ "325" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -171,10 +171,10 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/FF105068-DF2A-4826-BA80-3F17D44DED08?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/83913550-3017-438E-933C-BD37F986C66E?api-version=2022-06-15" ], "x-ms-request-id": [ - "2a477bbb-5ac9-4a11-984d-8648df88d32e" + "037026b3-29bc-49cc-b0db-82c189832cff" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -183,16 +183,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "2b431858-184a-4eb0-86c9-c4e359f85721" + "fe48e627-d6d9-4ac3-8cf6-b1e908401257" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T031817Z:2b431858-184a-4eb0-86c9-c4e359f85721" + "WESTUS2:20221006T020224Z:fe48e627-d6d9-4ac3-8cf6-b1e908401257" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:18:17 GMT" + "Thu, 06 Oct 2022 02:02:23 GMT" ], "Content-Length": [ "680" @@ -204,25 +204,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"d72cd507-c0fb-4c3b-b049-c230e188bb15\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2841/providers/Microsoft.EventGrid/domains/PSTestDomain-ps9770\",\r\n \"name\": \"PSTestDomain-ps9770\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"d3b31370-2a39-4751-8c21-cb5818a38983\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9576/providers/Microsoft.EventGrid/domains/PSTestDomain-ps4048\",\r\n \"name\": \"PSTestDomain-ps4048\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/FF105068-DF2A-4826-BA80-3F17D44DED08?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRkYxMDUwNjgtREYyQS00ODI2LUJBODAtM0YxN0Q0NERFRDA4P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/83913550-3017-438E-933C-BD37F986C66E?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvODM5MTM1NTAtMzAxNy00MzhFLTkzM0MtQkQzN0Y5ODZDNjZFP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c34a14f-648d-4013-aa63-1f73090661f1" + "c2cf5e1e-bd9f-4e32-93b5-9a2de7f2673c" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -234,7 +234,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "67bfbd90-e198-455f-896e-2ea46d5ab789" + "faab55f9-42c2-4181-a5e2-624bcd2279b4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -243,16 +243,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "538a82fe-3806-4925-8519-5154515ee9c5" + "36fc75ba-02c3-4959-b1d8-1e59c021bdc6" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T031827Z:538a82fe-3806-4925-8519-5154515ee9c5" + "WESTUS2:20221006T020234Z:36fc75ba-02c3-4959-b1d8-1e59c021bdc6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:18:27 GMT" + "Thu, 06 Oct 2022 02:02:34 GMT" ], "Content-Length": [ "286" @@ -264,25 +264,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/FF105068-DF2A-4826-BA80-3F17D44DED08?api-version=2021-12-01\",\r\n \"name\": \"ff105068-df2a-4826-ba80-3f17d44ded08\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/83913550-3017-438E-933C-BD37F986C66E?api-version=2022-06-15\",\r\n \"name\": \"83913550-3017-438e-933c-bd37f986c66e\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2841/providers/Microsoft.EventGrid/domains/PSTestDomain-ps9770?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI4NDEvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM5NzcwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9576/providers/Microsoft.EventGrid/domains/PSTestDomain-ps4048?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczk1NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM0MDQ4P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c34a14f-648d-4013-aa63-1f73090661f1" + "c2cf5e1e-bd9f-4e32-93b5-9a2de7f2673c" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -294,7 +294,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "946a3604-32d9-4ea1-a69d-f389a539d252" + "5c19a900-2f21-42ec-99ec-f7db119e3c2f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -303,19 +303,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "b8366929-ffa5-4ffd-908e-bbc0792af922" + "8f012ac8-eddb-44ab-84a5-51e59e53d77d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T031827Z:b8366929-ffa5-4ffd-908e-bbc0792af922" + "WESTUS2:20221006T020234Z:8f012ac8-eddb-44ab-84a5-51e59e53d77d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:18:27 GMT" + "Thu, 06 Oct 2022 02:02:34 GMT" ], "Content-Length": [ - "811" + "851" ], "Content-Type": [ "application/json; charset=utf-8" @@ -324,26 +324,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps9770.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"8b456d4d-9ba0-4132-9280-9116664ba58d\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"d72cd507-c0fb-4c3b-b049-c230e188bb15\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2841/providers/Microsoft.EventGrid/domains/PSTestDomain-ps9770\",\r\n \"name\": \"PSTestDomain-ps9770\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps4048.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"99ae4f41-1de5-452e-91c4-9a3c755d81dc\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"d3b31370-2a39-4751-8c21-cb5818a38983\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9576/providers/Microsoft.EventGrid/domains/PSTestDomain-ps4048\",\r\n \"name\": \"PSTestDomain-ps4048\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5393/providers/Microsoft.EventGrid/domains/PSTestDomain-ps5332?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM1MzMyP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4654/providers/Microsoft.EventGrid/domains/PSTestDomain-ps8660?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQ2NTQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM4NjYwP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Dept\": \"IT\",\r\n \"Environment\": \"Test\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3bbc1fc4-9b2e-4fee-84ef-ceaf81df4c92" + "ad005adf-d118-407a-88e3-fb5b7e5efaac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -352,6 +351,7 @@ "380" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -366,28 +366,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/8E24F277-3933-4E90-972F-814ABAB64A40?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/FBA03A79-2CAA-4324-A14F-0A6D34510EB4?api-version=2022-06-15" ], "x-ms-request-id": [ - "6e22536f-5b0f-4efa-a401-57cca95a2569" + "52832d3f-ee9f-463a-9199-ed3569cc2d5f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "d6e4eab6-c9ad-4858-a166-361dd9546a87" + "3553721c-385e-4577-bde9-dad802efc51c" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T031828Z:d6e4eab6-c9ad-4858-a166-361dd9546a87" + "WESTUS2:20221006T020236Z:3553721c-385e-4577-bde9-dad802efc51c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:18:28 GMT" + "Thu, 06 Oct 2022 02:02:35 GMT" ], "Content-Length": [ "632" @@ -399,25 +399,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Dept\": \"IT\",\r\n \"Environment\": \"Test\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5393/providers/Microsoft.EventGrid/domains/PSTestDomain-ps5332\",\r\n \"name\": \"PSTestDomain-ps5332\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4654/providers/Microsoft.EventGrid/domains/PSTestDomain-ps8660\",\r\n \"name\": \"PSTestDomain-ps8660\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/8E24F277-3933-4E90-972F-814ABAB64A40?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvOEUyNEYyNzctMzkzMy00RTkwLTk3MkYtODE0QUJBQjY0QTQwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/FBA03A79-2CAA-4324-A14F-0A6D34510EB4?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRkJBMDNBNzktMkNBQS00MzI0LUExNEYtMEE2RDM0NTEwRUI0P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3bbc1fc4-9b2e-4fee-84ef-ceaf81df4c92" + "ad005adf-d118-407a-88e3-fb5b7e5efaac" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -429,25 +429,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ab29f563-317c-447b-9660-44bfea5dd7d9" + "41e58532-e8d0-46ab-ad89-a12b5249a13a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-correlation-request-id": [ - "473d6b8b-e2c6-4550-9e71-8d813dad420b" + "7116ab8e-b619-4dfe-9982-3689fc2ed903" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T031838Z:473d6b8b-e2c6-4550-9e71-8d813dad420b" + "WESTUS2:20221006T020246Z:7116ab8e-b619-4dfe-9982-3689fc2ed903" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:18:38 GMT" + "Thu, 06 Oct 2022 02:02:45 GMT" ], "Content-Length": [ "286" @@ -459,25 +459,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/8E24F277-3933-4E90-972F-814ABAB64A40?api-version=2021-12-01\",\r\n \"name\": \"8e24f277-3933-4e90-972f-814abab64a40\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/FBA03A79-2CAA-4324-A14F-0A6D34510EB4?api-version=2022-06-15\",\r\n \"name\": \"fba03a79-2caa-4324-a14f-0a6d34510eb4\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5393/providers/Microsoft.EventGrid/domains/PSTestDomain-ps5332?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM1MzMyP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4654/providers/Microsoft.EventGrid/domains/PSTestDomain-ps8660?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQ2NTQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM4NjYwP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3bbc1fc4-9b2e-4fee-84ef-ceaf81df4c92" + "ad005adf-d118-407a-88e3-fb5b7e5efaac" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -489,28 +489,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c26a760b-7efc-40a8-ade4-3adfbbf1fdd9" + "effb33bd-6634-4633-b073-f2eb0d53a937" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-correlation-request-id": [ - "2a213010-0cdd-4401-80be-34e7006e6ec6" + "f4942657-f04b-4b40-9158-4e2c368c3dab" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T031838Z:2a213010-0cdd-4401-80be-34e7006e6ec6" + "WESTUS2:20221006T020246Z:f4942657-f04b-4b40-9158-4e2c368c3dab" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:18:38 GMT" + "Thu, 06 Oct 2022 02:02:45 GMT" ], "Content-Length": [ - "763" + "803" ], "Content-Type": [ "application/json; charset=utf-8" @@ -519,26 +519,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps5332.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"2babd75f-b8b5-4a39-b8ce-d1197ef53914\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Dept\": \"IT\",\r\n \"Environment\": \"Test\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5393/providers/Microsoft.EventGrid/domains/PSTestDomain-ps5332\",\r\n \"name\": \"PSTestDomain-ps5332\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps8660.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"603409a8-78f5-4afe-b4e1-5d524518d25a\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4654/providers/Microsoft.EventGrid/domains/PSTestDomain-ps8660\",\r\n \"name\": \"PSTestDomain-ps8660\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5393/providers/Microsoft.EventGrid/domains/PSTestDomain-ps9709?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM5NzA5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4654/providers/Microsoft.EventGrid/domains/PSTestDomain-ps4804?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQ2NTQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM0ODA0P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testIdentity1\": {}\r\n }\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "53e34330-9661-41dc-8de9-e67461d8fd21" + "2fc95d66-450c-4eea-91ea-9e86790ec846" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -547,6 +546,7 @@ "521" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testIdentity1\": {}\r\n }\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -561,28 +561,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/21293D28-D425-4DF9-B9B0-A408E24C3152?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/90A81815-7B5C-4751-8335-BE92C24DC5A0?api-version=2022-06-15" ], "x-ms-request-id": [ - "1d8c22bb-37d3-457b-921a-76b60910d801" + "8dc58fdd-bb94-4a7e-baf0-4aae7f7d1a9f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "62a09c30-41a2-4cfa-876a-b410af3b450d" + "e2abe993-5fec-4868-91ba-efb26fb91e14" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T031839Z:62a09c30-41a2-4cfa-876a-b410af3b450d" + "WESTUS2:20221006T020248Z:e2abe993-5fec-4868-91ba-efb26fb91e14" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:18:39 GMT" + "Thu, 06 Oct 2022 02:02:48 GMT" ], "Content-Length": [ "790" @@ -594,25 +594,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testIdentity1\": {\r\n \"principalId\": null,\r\n \"clientId\": null\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5393/providers/Microsoft.EventGrid/domains/PSTestDomain-ps9709\",\r\n \"name\": \"PSTestDomain-ps9709\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testIdentity1\": {\r\n \"principalId\": null,\r\n \"clientId\": null\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4654/providers/Microsoft.EventGrid/domains/PSTestDomain-ps4804\",\r\n \"name\": \"PSTestDomain-ps4804\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/21293D28-D425-4DF9-B9B0-A408E24C3152?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMjEyOTNEMjgtRDQyNS00REY5LUI5QjAtQTQwOEUyNEMzMTUyP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/90A81815-7B5C-4751-8335-BE92C24DC5A0?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvOTBBODE4MTUtN0I1Qy00NzUxLTgzMzUtQkU5MkMyNERDNUEwP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "53e34330-9661-41dc-8de9-e67461d8fd21" + "2fc95d66-450c-4eea-91ea-9e86790ec846" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -624,25 +624,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fa7b0cb9-91a0-4fcd-96a4-a18facb8831d" + "735b2f32-89ae-4218-8433-3a97318b3f9b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11998" ], "x-ms-correlation-request-id": [ - "5107c1ce-b2ad-4ede-94b4-88e3a78c4f8d" + "1a8dbd23-1094-497d-9e14-a15a336edee0" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T031850Z:5107c1ce-b2ad-4ede-94b4-88e3a78c4f8d" + "WESTUS2:20221006T020258Z:1a8dbd23-1094-497d-9e14-a15a336edee0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:18:49 GMT" + "Thu, 06 Oct 2022 02:02:58 GMT" ], "Content-Length": [ "286" @@ -654,25 +654,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/21293D28-D425-4DF9-B9B0-A408E24C3152?api-version=2021-12-01\",\r\n \"name\": \"21293d28-d425-4df9-b9b0-a408e24c3152\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/90A81815-7B5C-4751-8335-BE92C24DC5A0?api-version=2022-06-15\",\r\n \"name\": \"90a81815-7b5c-4751-8335-be92c24dc5a0\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5393/providers/Microsoft.EventGrid/domains/PSTestDomain-ps9709?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM5NzA5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4654/providers/Microsoft.EventGrid/domains/PSTestDomain-ps4804?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQ2NTQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM0ODA0P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "53e34330-9661-41dc-8de9-e67461d8fd21" + "2fc95d66-450c-4eea-91ea-9e86790ec846" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -684,28 +684,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1f2a0d49-9d74-4eff-8192-93a12f9bd0ce" + "cae4ab0f-0bab-415a-a765-8be34c932621" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11997" ], "x-ms-correlation-request-id": [ - "eb9e15b9-4d2c-420f-9d0a-80f38fc9fdc7" + "47fd5b36-49ce-4e72-9a49-e466c40cdf7d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T031850Z:eb9e15b9-4d2c-420f-9d0a-80f38fc9fdc7" + "WESTUS2:20221006T020258Z:47fd5b36-49ce-4e72-9a49-e466c40cdf7d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:18:49 GMT" + "Thu, 06 Oct 2022 02:02:58 GMT" ], "Content-Length": [ - "989" + "1029" ], "Content-Type": [ "application/json; charset=utf-8" @@ -714,28 +714,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps9709.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"92ce03c1-0c16-4613-9d26-811002e41c09\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testIdentity1\": {\r\n \"principalId\": \"0558243c-d498-44a2-a8f9-92cb66e8bd68\",\r\n \"clientId\": \"2ecf32a2-baf0-493c-b3b7-eec5556c5327\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5393/providers/Microsoft.EventGrid/domains/PSTestDomain-ps9709\",\r\n \"name\": \"PSTestDomain-ps9709\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps4804.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"23e4f06f-d23b-4a86-a43d-c3cbb895695e\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testIdentity1\": {\r\n \"principalId\": \"0558243c-d498-44a2-a8f9-92cb66e8bd68\",\r\n \"clientId\": \"2ecf32a2-baf0-493c-b3b7-eec5556c5327\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4654/providers/Microsoft.EventGrid/domains/PSTestDomain-ps4804\",\r\n \"name\": \"PSTestDomain-ps4804\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2841/providers/Microsoft.EventGrid/domains/PSTestDomain-ps9770?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI4NDEvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM5NzcwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9576/providers/Microsoft.EventGrid/domains/PSTestDomain-ps4048?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczk1NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM0MDQ4P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a413c415-f0dd-4c37-9f2f-efea18266377" + "337f107e-76cd-4e44-9f04-083b5c1a8875" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -744,7 +744,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/E077048F-24CA-4228-9702-120F317BC8AC?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/A25BA68F-8E3B-4104-9914-416185C575ED?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -753,7 +753,7 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E077048F-24CA-4228-9702-120F317BC8AC?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/A25BA68F-8E3B-4104-9914-416185C575ED?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -762,19 +762,19 @@ "14999" ], "x-ms-request-id": [ - "6167f1dd-9fea-41a1-a1b2-e1e1b766a963" + "f507174d-bc1d-4a16-99dc-aa3f530606ad" ], "x-ms-correlation-request-id": [ - "6167f1dd-9fea-41a1-a1b2-e1e1b766a963" + "f507174d-bc1d-4a16-99dc-aa3f530606ad" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T031850Z:6167f1dd-9fea-41a1-a1b2-e1e1b766a963" + "WESTUS2:20221006T020259Z:f507174d-bc1d-4a16-99dc-aa3f530606ad" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:18:50 GMT" + "Thu, 06 Oct 2022 02:02:59 GMT" ], "Expires": [ "-1" @@ -787,21 +787,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E077048F-24CA-4228-9702-120F317BC8AC?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRTA3NzA0OEYtMjRDQS00MjI4LTk3MDItMTIwRjMxN0JDOEFDP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/A25BA68F-8E3B-4104-9914-416185C575ED?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvQTI1QkE2OEYtOEUzQi00MTA0LTk5MTQtNDE2MTg1QzU3NUVEP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a413c415-f0dd-4c37-9f2f-efea18266377" + "337f107e-76cd-4e44-9f04-083b5c1a8875" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -813,25 +813,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7406fdbc-424d-48c3-b276-59aaf3ad67b9" + "5b12aaf1-d698-48a6-9512-25e7c3641da3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11999" ], "x-ms-correlation-request-id": [ - "d7360d7c-84da-4929-aef4-32aa651d4919" + "ed87ad61-3536-463d-8f6f-8020c20d53b6" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T031900Z:d7360d7c-84da-4929-aef4-32aa651d4919" + "WESTUS2:20221006T020309Z:ed87ad61-3536-463d-8f6f-8020c20d53b6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:19:00 GMT" + "Thu, 06 Oct 2022 02:03:09 GMT" ], "Content-Length": [ "286" @@ -843,25 +843,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E077048F-24CA-4228-9702-120F317BC8AC?api-version=2021-12-01\",\r\n \"name\": \"e077048f-24ca-4228-9702-120f317bc8ac\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/A25BA68F-8E3B-4104-9914-416185C575ED?api-version=2022-06-15\",\r\n \"name\": \"a25ba68f-8e3b-4104-9914-416185c575ed\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/E077048F-24CA-4228-9702-120F317BC8AC?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvRTA3NzA0OEYtMjRDQS00MjI4LTk3MDItMTIwRjMxN0JDOEFDP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/A25BA68F-8E3B-4104-9914-416185C575ED?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvQTI1QkE2OEYtOEUzQi00MTA0LTk5MTQtNDE2MTg1QzU3NUVEP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a413c415-f0dd-4c37-9f2f-efea18266377" + "337f107e-76cd-4e44-9f04-083b5c1a8875" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -873,25 +873,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bab624e3-df57-4252-8798-ed16a56cc2f0" + "d7e2adba-3994-4825-9158-5f9270d8a405" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11998" ], "x-ms-correlation-request-id": [ - "3fc95e9b-7518-4d57-b3bc-956793af6353" + "b6f43559-a229-4b9a-a9b3-58b2a251c973" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T031900Z:3fc95e9b-7518-4d57-b3bc-956793af6353" + "WESTUS2:20221006T020310Z:b6f43559-a229-4b9a-a9b3-58b2a251c973" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:19:00 GMT" + "Thu, 06 Oct 2022 02:03:09 GMT" ], "Expires": [ "-1" @@ -904,24 +904,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5393/providers/Microsoft.EventGrid/domains/PSTestDomain-ps5332?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM1MzMyP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4654/providers/Microsoft.EventGrid/domains/PSTestDomain-ps8660?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQ2NTQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM4NjYwP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf8992e1-99cb-4123-a4c0-6a567b9ed102" + "ed6a6949-02b1-4a9c-b1ce-ec14644cd9c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -930,7 +930,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/F07B3E7C-7CC9-4774-A96B-6E8AC2EAA4DA?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/C4C3DA27-41AC-4BA6-AC80-26697B91AA1A?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -939,28 +939,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/F07B3E7C-7CC9-4774-A96B-6E8AC2EAA4DA?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/C4C3DA27-41AC-4BA6-AC80-26697B91AA1A?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-request-id": [ - "05555d84-5cc2-44c1-be66-843838e35ef9" + "e07ea6e1-f357-4287-b519-831022696226" ], "x-ms-correlation-request-id": [ - "05555d84-5cc2-44c1-be66-843838e35ef9" + "e07ea6e1-f357-4287-b519-831022696226" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T031901Z:05555d84-5cc2-44c1-be66-843838e35ef9" + "WESTUS2:20221006T020310Z:e07ea6e1-f357-4287-b519-831022696226" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:19:00 GMT" + "Thu, 06 Oct 2022 02:03:09 GMT" ], "Expires": [ "-1" @@ -973,21 +973,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/F07B3E7C-7CC9-4774-A96B-6E8AC2EAA4DA?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRjA3QjNFN0MtN0NDOS00Nzc0LUE5NkItNkU4QUMyRUFBNERBP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/C4C3DA27-41AC-4BA6-AC80-26697B91AA1A?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvQzRDM0RBMjctNDFBQy00QkE2LUFDODAtMjY2OTdCOTFBQTFBP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf8992e1-99cb-4123-a4c0-6a567b9ed102" + "ed6a6949-02b1-4a9c-b1ce-ec14644cd9c0" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -999,25 +999,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f3222d91-30ed-49d1-abc0-64e8e5173d5e" + "17b0018a-af97-448d-8243-3c1170869d0e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11999" ], "x-ms-correlation-request-id": [ - "e7d6c48b-2a87-4823-a0fd-7250851808f4" + "62ac1c80-be92-4669-a152-926ec66aacca" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T031911Z:e7d6c48b-2a87-4823-a0fd-7250851808f4" + "WESTUS2:20221006T020321Z:62ac1c80-be92-4669-a152-926ec66aacca" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:19:10 GMT" + "Thu, 06 Oct 2022 02:03:21 GMT" ], "Content-Length": [ "286" @@ -1029,25 +1029,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/F07B3E7C-7CC9-4774-A96B-6E8AC2EAA4DA?api-version=2021-12-01\",\r\n \"name\": \"f07b3e7c-7cc9-4774-a96b-6e8ac2eaa4da\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/C4C3DA27-41AC-4BA6-AC80-26697B91AA1A?api-version=2022-06-15\",\r\n \"name\": \"c4c3da27-41ac-4ba6-ac80-26697b91aa1a\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/F07B3E7C-7CC9-4774-A96B-6E8AC2EAA4DA?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvRjA3QjNFN0MtN0NDOS00Nzc0LUE5NkItNkU4QUMyRUFBNERBP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/C4C3DA27-41AC-4BA6-AC80-26697B91AA1A?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvQzRDM0RBMjctNDFBQy00QkE2LUFDODAtMjY2OTdCOTFBQTFBP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf8992e1-99cb-4123-a4c0-6a567b9ed102" + "ed6a6949-02b1-4a9c-b1ce-ec14644cd9c0" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1059,25 +1059,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1d5795de-98c8-4682-b14c-b64b724ed3f7" + "81f0426c-5ee4-4bb3-875c-fc044db6df2f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11998" ], "x-ms-correlation-request-id": [ - "b8516958-ab88-4bc3-854e-efefca081d52" + "d57c4183-d6e1-46c8-b9a7-cc5c2ebf6aa6" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T031911Z:b8516958-ab88-4bc3-854e-efefca081d52" + "WESTUS2:20221006T020321Z:d57c4183-d6e1-46c8-b9a7-cc5c2ebf6aa6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:19:10 GMT" + "Thu, 06 Oct 2022 02:03:21 GMT" ], "Expires": [ "-1" @@ -1090,24 +1090,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5393/providers/Microsoft.EventGrid/domains/PSTestDomain-ps9709?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM5NzA5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4654/providers/Microsoft.EventGrid/domains/PSTestDomain-ps4804?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQ2NTQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM0ODA0P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1aa41bb-0d94-4df4-8de3-17d86300fa60" + "7a2c2ff6-19f0-42de-a803-f27474e12a70" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1116,7 +1116,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/11CE43E0-E185-4DE1-96DE-36DF0AD8AECB?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/AB11A835-736E-4B9F-A7C2-0E571E0B5809?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -1125,28 +1125,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/11CE43E0-E185-4DE1-96DE-36DF0AD8AECB?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/AB11A835-736E-4B9F-A7C2-0E571E0B5809?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-request-id": [ - "e5278578-fed2-4eea-b71d-80af210fcbac" + "970ca8ad-45c1-4b35-9bac-f397c585f0a9" ], "x-ms-correlation-request-id": [ - "e5278578-fed2-4eea-b71d-80af210fcbac" + "970ca8ad-45c1-4b35-9bac-f397c585f0a9" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T031911Z:e5278578-fed2-4eea-b71d-80af210fcbac" + "WESTUS2:20221006T020322Z:970ca8ad-45c1-4b35-9bac-f397c585f0a9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:19:10 GMT" + "Thu, 06 Oct 2022 02:03:22 GMT" ], "Expires": [ "-1" @@ -1159,21 +1159,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/11CE43E0-E185-4DE1-96DE-36DF0AD8AECB?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMTFDRTQzRTAtRTE4NS00REUxLTk2REUtMzZERjBBRDhBRUNCP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/AB11A835-736E-4B9F-A7C2-0E571E0B5809?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvQUIxMUE4MzUtNzM2RS00QjlGLUE3QzItMEU1NzFFMEI1ODA5P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1aa41bb-0d94-4df4-8de3-17d86300fa60" + "7a2c2ff6-19f0-42de-a803-f27474e12a70" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1185,25 +1185,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4b332732-62d0-4b0d-bc23-cc65d129a97f" + "729991d5-d460-45b8-8870-01c781d2d62e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11999" ], "x-ms-correlation-request-id": [ - "50237b47-02de-482b-a9e4-ad5558497b3b" + "22676664-fb02-4711-85f7-a5795ef0aaa8" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T031921Z:50237b47-02de-482b-a9e4-ad5558497b3b" + "WESTUS2:20221006T020332Z:22676664-fb02-4711-85f7-a5795ef0aaa8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:19:20 GMT" + "Thu, 06 Oct 2022 02:03:32 GMT" ], "Content-Length": [ "286" @@ -1215,25 +1215,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/11CE43E0-E185-4DE1-96DE-36DF0AD8AECB?api-version=2021-12-01\",\r\n \"name\": \"11ce43e0-e185-4de1-96de-36df0ad8aecb\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/AB11A835-736E-4B9F-A7C2-0E571E0B5809?api-version=2022-06-15\",\r\n \"name\": \"ab11a835-736e-4b9f-a7c2-0e571e0b5809\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/11CE43E0-E185-4DE1-96DE-36DF0AD8AECB?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMTFDRTQzRTAtRTE4NS00REUxLTk2REUtMzZERjBBRDhBRUNCP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/AB11A835-736E-4B9F-A7C2-0E571E0B5809?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvQUIxMUE4MzUtNzM2RS00QjlGLUE3QzItMEU1NzFFMEI1ODA5P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1aa41bb-0d94-4df4-8de3-17d86300fa60" + "7a2c2ff6-19f0-42de-a803-f27474e12a70" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1245,25 +1245,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "63d0d8c4-358e-405a-97ec-f4d7c0331a2a" + "a9627e2b-8cfc-48e4-84a5-e38788556a4c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11998" ], "x-ms-correlation-request-id": [ - "3b19ed97-fbc6-4b58-a343-4944a8a34344" + "07403c56-38fa-48e3-8e2c-2777331dbc34" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T031921Z:3b19ed97-fbc6-4b58-a343-4944a8a34344" + "WESTUS2:20221006T020332Z:07403c56-38fa-48e3-8e2c-2777331dbc34" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:19:20 GMT" + "Thu, 06 Oct 2022 02:03:32 GMT" ], "Expires": [ "-1" @@ -1276,24 +1276,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2841/providers/Microsoft.EventGrid/domains?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI4NDEvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9576/providers/Microsoft.EventGrid/domains?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczk1NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5335b71c-3776-4edb-a498-69a129ef84c2" + "c30e32ae-1537-44f8-bed8-ab3770f1c003" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1302,16 +1302,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11998" ], "x-ms-request-id": [ - "197ba3b6-4462-4704-a0e8-d51dc7d11c0a" + "54518752-93a7-4037-90bc-004205b34e01" ], "x-ms-correlation-request-id": [ - "197ba3b6-4462-4704-a0e8-d51dc7d11c0a" + "54518752-93a7-4037-90bc-004205b34e01" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T031921Z:197ba3b6-4462-4704-a0e8-d51dc7d11c0a" + "WESTUS2:20221006T020332Z:54518752-93a7-4037-90bc-004205b34e01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1320,7 +1320,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:19:20 GMT" + "Thu, 06 Oct 2022 02:03:31 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1336,24 +1336,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5393/providers/Microsoft.EventGrid/domains?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4654/providers/Microsoft.EventGrid/domains?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQ2NTQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab3a2af7-10ab-45b2-afed-f0f6edd5b1ca" + "085f7cc8-81be-475c-98ca-1d36012b47af" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1365,25 +1365,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "66f0618a-d171-4a2b-9c06-d2a154311862" + "a25494ec-afff-4c61-a3a4-393c09403830" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11998" ], "x-ms-correlation-request-id": [ - "530db42f-efec-4069-b502-6ce89ecf99ff" + "17bb45e6-35dd-45a0-bb7b-672946f160fd" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T031921Z:530db42f-efec-4069-b502-6ce89ecf99ff" + "WESTUS2:20221006T020332Z:17bb45e6-35dd-45a0-bb7b-672946f160fd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:19:21 GMT" + "Thu, 06 Oct 2022 02:03:32 GMT" ], "Content-Length": [ "12" @@ -1399,24 +1399,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps2841?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczI4NDE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps9576?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczk1NzY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6b4991e-8838-419e-9597-177a7cb3f88d" + "0f41111d-6e4f-4c17-a9b7-53321c89e58e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1425,7 +1425,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzI4NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzk1NzYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1434,13 +1434,13 @@ "14999" ], "x-ms-request-id": [ - "3554ea92-b274-4d66-b91f-eb75b3cc89dc" + "f2f253cb-6ca9-4d2a-816e-44edf1e12a92" ], "x-ms-correlation-request-id": [ - "3554ea92-b274-4d66-b91f-eb75b3cc89dc" + "f2f253cb-6ca9-4d2a-816e-44edf1e12a92" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T031922Z:3554ea92-b274-4d66-b91f-eb75b3cc89dc" + "WESTUS2:20221006T020333Z:f2f253cb-6ca9-4d2a-816e-44edf1e12a92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1449,7 +1449,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:19:21 GMT" + "Thu, 06 Oct 2022 02:03:33 GMT" ], "Expires": [ "-1" @@ -1462,18 +1462,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzI4NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpJNE5ERXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzk1NzYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXprMU56WXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1482,16 +1482,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "224c823f-5bb4-4ad6-92ed-48f11a81c560" + "a8071dc3-8b4d-4bec-b493-ed39a0a1a481" ], "x-ms-correlation-request-id": [ - "224c823f-5bb4-4ad6-92ed-48f11a81c560" + "a8071dc3-8b4d-4bec-b493-ed39a0a1a481" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T031937Z:224c823f-5bb4-4ad6-92ed-48f11a81c560" + "WESTUS2:20221006T020348Z:a8071dc3-8b4d-4bec-b493-ed39a0a1a481" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1500,7 +1500,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:19:36 GMT" + "Thu, 06 Oct 2022 02:03:48 GMT" ], "Expires": [ "-1" @@ -1513,18 +1513,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzI4NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpJNE5ERXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzk1NzYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXprMU56WXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1533,16 +1533,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-request-id": [ - "bffe2d13-b62e-4503-8100-67d7720891d6" + "d96b3dee-60d8-4935-b508-e2cdf4cfa75b" ], "x-ms-correlation-request-id": [ - "bffe2d13-b62e-4503-8100-67d7720891d6" + "d96b3dee-60d8-4935-b508-e2cdf4cfa75b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T031937Z:bffe2d13-b62e-4503-8100-67d7720891d6" + "WESTUS2:20221006T020348Z:d96b3dee-60d8-4935-b508-e2cdf4cfa75b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1551,7 +1551,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:19:36 GMT" + "Thu, 06 Oct 2022 02:03:48 GMT" ], "Expires": [ "-1" @@ -1564,24 +1564,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps5393?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczUzOTM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps4654?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczQ2NTQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4f143e97-698a-4ea9-87bd-745ea0c1d2d2" + "60d0fcec-d55a-44ea-9907-d3b0ef2cc24b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1590,22 +1590,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzUzOTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzQ2NTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-request-id": [ - "487a56e9-5f5b-4e1c-bd7f-ff4530a5686e" + "e01cfe86-be5e-4d9d-9627-0ef3968376eb" ], "x-ms-correlation-request-id": [ - "487a56e9-5f5b-4e1c-bd7f-ff4530a5686e" + "e01cfe86-be5e-4d9d-9627-0ef3968376eb" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T031937Z:487a56e9-5f5b-4e1c-bd7f-ff4530a5686e" + "WESTUS2:20221006T020349Z:e01cfe86-be5e-4d9d-9627-0ef3968376eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1614,7 +1614,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:19:36 GMT" + "Thu, 06 Oct 2022 02:03:49 GMT" ], "Expires": [ "-1" @@ -1627,18 +1627,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzUzOTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpVek9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzQ2NTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpRMk5UUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1647,16 +1647,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-request-id": [ - "3e37a55e-5ab0-4df7-87ad-8b5826a42b6d" + "188b6cec-1110-46a2-83d5-51d1478219e3" ], "x-ms-correlation-request-id": [ - "3e37a55e-5ab0-4df7-87ad-8b5826a42b6d" + "188b6cec-1110-46a2-83d5-51d1478219e3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T031952Z:3e37a55e-5ab0-4df7-87ad-8b5826a42b6d" + "WESTUS2:20221006T020404Z:188b6cec-1110-46a2-83d5-51d1478219e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1665,7 +1665,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:19:51 GMT" + "Thu, 06 Oct 2022 02:04:04 GMT" ], "Expires": [ "-1" @@ -1678,18 +1678,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzUzOTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpVek9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzQ2NTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpRMk5UUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1698,16 +1698,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-request-id": [ - "63eb9a51-034a-4797-b9d6-42b788f875ad" + "18caa11e-7113-4812-b64f-c7f5309296a3" ], "x-ms-correlation-request-id": [ - "63eb9a51-034a-4797-b9d6-42b788f875ad" + "18caa11e-7113-4812-b64f-c7f5309296a3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T031952Z:63eb9a51-034a-4797-b9d6-42b788f875ad" + "WESTUS2:20221006T020405Z:18caa11e-7113-4812-b64f-c7f5309296a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1716,7 +1716,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:19:51 GMT" + "Thu, 06 Oct 2022 02:04:04 GMT" ], "Expires": [ "-1" @@ -1731,12 +1731,12 @@ ], "Names": { "": [ - "ps9770", - "ps5332", - "ps9709", - "ps6764", - "ps2841", - "ps5393" + "ps4048", + "ps8660", + "ps4804", + "ps2599", + "ps9576", + "ps4654" ] }, "Variables": { diff --git a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.EventSubscriptionTests/EventGrid_EventSubscription_AzureSubscription2.json b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.EventSubscriptionTests/EventGrid_EventSubscription_AzureSubscription2.json index 9d4837506e89..1c903a2540a5 100644 --- a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.EventSubscriptionTests/EventGrid_EventSubscription_AzureSubscription2.json +++ b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.EventSubscriptionTests/EventGrid_EventSubscription_AzureSubscription2.json @@ -1,22 +1,21 @@ { "Entries": [ { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps368?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHMzNjg/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7505?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3NTA1P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "88d84b04-9e67-4e07-86f9-b4e91e56fcaf" + "c1404e40-5178-4701-b41e-7ce4a4c41814" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,6 +24,7 @@ "535" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -39,10 +39,10 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/120D91BA-59BB-4FE0-B305-CCD33264B7A7?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/9BDD2BE0-8C4D-4D61-8E0C-07DBACBAFD97?api-version=2022-06-15" ], "x-ms-request-id": [ - "4fc780ef-37b0-4a45-8273-d4cc727a3791" + "661269da-9f81-46dd-9035-7392e3135adc" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -51,19 +51,19 @@ "899" ], "x-ms-correlation-request-id": [ - "f42bf46a-e7fb-47ea-b6b1-2953082a57a5" + "3f9c401a-c6fe-48f2-a56b-83fc7371962f" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212847Z:f42bf46a-e7fb-47ea-b6b1-2953082a57a5" + "WESTUS2:20221005T224122Z:3f9c401a-c6fe-48f2-a56b-83fc7371962f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:28:47 GMT" + "Wed, 05 Oct 2022 22:41:22 GMT" ], "Content-Length": [ - "1116" + "1118" ], "Content-Type": [ "application/json; charset=utf-8" @@ -72,85 +72,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps368\",\r\n \"name\": \"EventSubscription-ps368\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7505\",\r\n \"name\": \"EventSubscription-ps7505\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/120D91BA-59BB-4FE0-B305-CCD33264B7A7?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvbnNTdGF0dXMvMTIwRDkxQkEtNTlCQi00RkUwLUIzMDUtQ0NEMzMyNjRCN0E3P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/9BDD2BE0-8C4D-4D61-8E0C-07DBACBAFD97?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvbnNTdGF0dXMvOUJERDJCRTAtOEM0RC00RDYxLThFMEMtMDdEQkFDQkFGRDk3P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "88d84b04-9e67-4e07-86f9-b4e91e56fcaf" + "c1404e40-5178-4701-b41e-7ce4a4c41814" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "910639a4-85db-4531-8b81-634bce34453b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "8b9babba-c27f-427f-a8ed-b16ee4b35372" - ], - "x-ms-routing-request-id": [ - "WESTUS:20220501T212858Z:8b9babba-c27f-427f-a8ed-b16ee4b35372" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sun, 01 May 2022 21:28:57 GMT" - ], - "Content-Length": [ - "263" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/120D91BA-59BB-4FE0-B305-CCD33264B7A7?api-version=2021-12-01\",\r\n \"name\": \"120d91ba-59bb-4fe0-b305-ccd33264b7a7\",\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/120D91BA-59BB-4FE0-B305-CCD33264B7A7?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvbnNTdGF0dXMvMTIwRDkxQkEtNTlCQi00RkUwLUIzMDUtQ0NEMzMyNjRCN0E3P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", - "RequestMethod": "GET", "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "88d84b04-9e67-4e07-86f9-b4e91e56fcaf" - ], - "User-Agent": [ - "FxVersion/4.700.22.16002", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" - ] - }, "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -162,25 +102,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d29f9325-6201-4236-9e21-3d0158112022" + "f74e819a-578d-45f9-b1c7-c7338bb59ddc" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "37a8777f-daa3-4632-ba3f-5a7e1953fc2e" + "ef2cdf03-571d-4446-8c6c-abe4cc2cbcac" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212908Z:37a8777f-daa3-4632-ba3f-5a7e1953fc2e" + "WESTUS2:20221005T224133Z:ef2cdf03-571d-4446-8c6c-abe4cc2cbcac" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:29:07 GMT" + "Wed, 05 Oct 2022 22:41:32 GMT" ], "Content-Length": [ "263" @@ -192,25 +132,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/120D91BA-59BB-4FE0-B305-CCD33264B7A7?api-version=2021-12-01\",\r\n \"name\": \"120d91ba-59bb-4fe0-b305-ccd33264b7a7\",\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/9BDD2BE0-8C4D-4D61-8E0C-07DBACBAFD97?api-version=2022-06-15\",\r\n \"name\": \"9bdd2be0-8c4d-4d61-8e0c-07dbacbafd97\",\r\n \"status\": \"InProgress\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/120D91BA-59BB-4FE0-B305-CCD33264B7A7?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvbnNTdGF0dXMvMTIwRDkxQkEtNTlCQi00RkUwLUIzMDUtQ0NEMzMyNjRCN0E3P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/9BDD2BE0-8C4D-4D61-8E0C-07DBACBAFD97?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvbnNTdGF0dXMvOUJERDJCRTAtOEM0RC00RDYxLThFMEMtMDdEQkFDQkFGRDk3P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "88d84b04-9e67-4e07-86f9-b4e91e56fcaf" + "c1404e40-5178-4701-b41e-7ce4a4c41814" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -222,25 +162,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b1ffbfc5-a4f3-4a02-8c89-497a7c534495" + "4b359111-16d5-41ec-b452-98ccc0650f2d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "64df8ea1-3963-4cfd-80d0-ed31418d0f03" + "bfb8b3bf-e0fe-48d7-8f04-8d30158077e3" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212918Z:64df8ea1-3963-4cfd-80d0-ed31418d0f03" + "WESTUS2:20221005T224143Z:bfb8b3bf-e0fe-48d7-8f04-8d30158077e3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:29:17 GMT" + "Wed, 05 Oct 2022 22:41:42 GMT" ], "Content-Length": [ "262" @@ -252,25 +192,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/120D91BA-59BB-4FE0-B305-CCD33264B7A7?api-version=2021-12-01\",\r\n \"name\": \"120d91ba-59bb-4fe0-b305-ccd33264b7a7\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/9BDD2BE0-8C4D-4D61-8E0C-07DBACBAFD97?api-version=2022-06-15\",\r\n \"name\": \"9bdd2be0-8c4d-4d61-8e0c-07dbacbafd97\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps368?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHMzNjg/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7505?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3NTA1P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "88d84b04-9e67-4e07-86f9-b4e91e56fcaf" + "c1404e40-5178-4701-b41e-7ce4a4c41814" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -282,28 +222,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "88544c98-3a7e-4c20-99d7-595ac6e1b81a" + "a645cd8e-091e-4a6e-8144-c874abe11800" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-correlation-request-id": [ - "088d2dc1-0f3d-4db0-a83b-93cf265a58b5" + "34d8d39f-6501-4207-aab3-892a5a124bac" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212918Z:088d2dc1-0f3d-4db0-a83b-93cf265a58b5" + "WESTUS2:20221005T224143Z:34d8d39f-6501-4207-aab3-892a5a124bac" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:29:17 GMT" + "Wed, 05 Oct 2022 22:41:42 GMT" ], "Content-Length": [ - "1218" + "1220" ], "Content-Type": [ "application/json; charset=utf-8" @@ -312,28 +252,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps368\",\r\n \"name\": \"EventSubscription-ps368\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7505\",\r\n \"name\": \"EventSubscription-ps7505\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps368?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHMzNjg/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7505?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3NTA1P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb8c2c31-b57a-44b6-acb3-e5251f3041dd" + "03c52826-c7f8-4448-9343-8b48586cb013" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -345,28 +285,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "86a86ea3-e1c3-4da7-b5f4-f16dd44cbba0" + "7182cdd8-ce84-4221-91d1-ad76e36f49e6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11985" ], "x-ms-correlation-request-id": [ - "d64daa12-3350-4662-bcdf-aacfba0717c3" + "782cbc48-c9d3-4c24-9eec-c53547c0a13c" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212929Z:d64daa12-3350-4662-bcdf-aacfba0717c3" + "WESTUS2:20221005T224154Z:782cbc48-c9d3-4c24-9eec-c53547c0a13c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:29:29 GMT" + "Wed, 05 Oct 2022 22:41:54 GMT" ], "Content-Length": [ - "1218" + "1220" ], "Content-Type": [ "application/json; charset=utf-8" @@ -375,26 +315,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps368\",\r\n \"name\": \"EventSubscription-ps368\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7505\",\r\n \"name\": \"EventSubscription-ps7505\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps9462?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM5NDYyP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps3340?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHMzMzQwP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteSuccess\"\r\n ],\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"eventDeliverySchema\": \"EventGridSchema\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7750354b-801a-4da3-ba1d-f0a0535bc8ef" + "fb7d4509-30ae-4562-8586-30684488557b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -403,6 +342,7 @@ "626" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteSuccess\"\r\n ],\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"eventDeliverySchema\": \"EventGridSchema\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -417,28 +357,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/3C86DAAC-9059-41D7-A19E-915FA7EE4334?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/17D9087B-4434-4720-AB7F-F14D1BFCB1AA?api-version=2022-06-15" ], "x-ms-request-id": [ - "a8592077-ece7-427e-8edc-dad74c1f4eeb" + "3aacd683-e9c5-4896-b277-ca65e8100063" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "898" + "899" ], "x-ms-correlation-request-id": [ - "d87b765b-afe5-4ebd-9582-a21de056d3c2" + "3c2886d9-eb7c-4dda-9292-44012920781d" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212919Z:d87b765b-afe5-4ebd-9582-a21de056d3c2" + "WESTUS2:20221005T224144Z:3c2886d9-eb7c-4dda-9292-44012920781d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:29:18 GMT" + "Wed, 05 Oct 2022 22:41:43 GMT" ], "Content-Length": [ "802" @@ -450,25 +390,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteSuccess\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps9462\",\r\n \"name\": \"EventSubscription-ps9462\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteSuccess\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps3340\",\r\n \"name\": \"EventSubscription-ps3340\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/3C86DAAC-9059-41D7-A19E-915FA7EE4334?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvbnNTdGF0dXMvM0M4NkRBQUMtOTA1OS00MUQ3LUExOUUtOTE1RkE3RUU0MzM0P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/17D9087B-4434-4720-AB7F-F14D1BFCB1AA?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvbnNTdGF0dXMvMTdEOTA4N0ItNDQzNC00NzIwLUFCN0YtRjE0RDFCRkNCMUFBP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7750354b-801a-4da3-ba1d-f0a0535bc8ef" + "fb7d4509-30ae-4562-8586-30684488557b" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -480,25 +420,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "83337305-dd18-43f8-8314-bbb9c585e970" + "87394f4f-707b-4ad5-a026-060dbf1a790f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11999" ], "x-ms-correlation-request-id": [ - "54f5e1f8-1dc8-416b-82ba-b2c76a7ae704" + "2c1a73b0-721a-43d6-a91d-49a18c526ffd" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212929Z:54f5e1f8-1dc8-416b-82ba-b2c76a7ae704" + "WESTUS2:20221005T224154Z:2c1a73b0-721a-43d6-a91d-49a18c526ffd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:29:29 GMT" + "Wed, 05 Oct 2022 22:41:53 GMT" ], "Content-Length": [ "262" @@ -510,25 +450,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/3C86DAAC-9059-41D7-A19E-915FA7EE4334?api-version=2021-12-01\",\r\n \"name\": \"3c86daac-9059-41d7-a19e-915fa7ee4334\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/17D9087B-4434-4720-AB7F-F14D1BFCB1AA?api-version=2022-06-15\",\r\n \"name\": \"17d9087b-4434-4720-ab7f-f14d1bfcb1aa\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps9462?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM5NDYyP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps3340?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHMzMzQwP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7750354b-801a-4da3-ba1d-f0a0535bc8ef" + "fb7d4509-30ae-4562-8586-30684488557b" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -540,25 +480,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cf13bf77-36f7-413a-ad49-a481119b8b8a" + "b6cd7877-0250-47e7-9a69-1bec553ecff8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11998" ], "x-ms-correlation-request-id": [ - "c272de2e-e6fa-492a-90b7-5803da60bb04" + "8e9188ad-c25c-49ca-97b2-e5d21740347b" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212929Z:c272de2e-e6fa-492a-90b7-5803da60bb04" + "WESTUS2:20221005T224154Z:8e9188ad-c25c-49ca-97b2-e5d21740347b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:29:29 GMT" + "Wed, 05 Oct 2022 22:41:54 GMT" ], "Content-Length": [ "904" @@ -570,28 +510,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteSuccess\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps9462\",\r\n \"name\": \"EventSubscription-ps9462\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteSuccess\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps3340\",\r\n \"name\": \"EventSubscription-ps3340\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps368/getFullUrl?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHMzNjgvZ2V0RnVsbFVybD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7505/getFullUrl?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3NTA1L2dldEZ1bGxVcmw/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb8c2c31-b57a-44b6-acb3-e5251f3041dd" + "03c52826-c7f8-4448-9343-8b48586cb013" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -603,7 +543,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "009208d2-9c4d-43a0-9080-14f5777b0e2a" + "e268b927-bb53-450a-b022-39ff1c2d7bd6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -612,16 +552,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "4fb83563-c8c5-4cae-bd6d-8bb91fcb8d3f" + "40ead230-7aaf-40b7-8553-199657be1e3c" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212929Z:4fb83563-c8c5-4cae-bd6d-8bb91fcb8d3f" + "WESTUS2:20221005T224155Z:40ead230-7aaf-40b7-8553-199657be1e3c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:29:29 GMT" + "Wed, 05 Oct 2022 22:41:54 GMT" ], "Content-Length": [ "188" @@ -637,87 +577,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8f8aa231-4a46-47b1-a3d0-bfb52ddb1ba6" + "99810e7e-b7a0-4dfc-81ee-7058a0d4d1b7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "53a4d52f-a796-43c3-a438-33cc970a7e3e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-correlation-request-id": [ - "2e5dca79-71f1-401a-84a0-13dd1f3e6e68" - ], - "x-ms-routing-request-id": [ - "WESTUS:20220501T212930Z:2e5dca79-71f1-401a-84a0-13dd1f3e6e68" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sun, 01 May 2022 21:29:29 GMT" - ], - "Content-Length": [ - "16285" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/gridresourcegroup\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://requestb.in/1fun9ou1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/gridResourceGroup/providers/Microsoft.EventGrid/eventSubscriptions/mysub600\",\r\n \"name\": \"mysub600\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/gridResourceGroup\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://prod-18.brazilus.logic.azure.com/workflows/c22dee70ada34ffca23b5fc89232166a/triggers/When_a_resource_event_occurs/versions/08586988636200583748/run\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/gridResourceGroup/providers/Microsoft.EventGrid/eventSubscriptions/LogicApp46d74b10-aa69-484e-aec2-52bfac87e2d9\",\r\n \"name\": \"LogicApp46d74b10-aa69-484e-aec2-52bfac87e2d9\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-EventHub-EASTUS2EUAP\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://prod-01.brazilus.logic.azure.com/workflows/87f6a4a8c5f3473ab9fd50076da6e909/triggers/On_a_resource_event/versions/08586988571716815965/run\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-EventHub-EASTUS2EUAP/providers/Microsoft.EventGrid/eventSubscriptions/LogicApp4a6316a3-5bda-44c8-ae67-bfb83aa31d1e\",\r\n \"name\": \"LogicApp4a6316a3-5bda-44c8-ae67-bfb83aa31d1e\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://requestb.in/10jslly1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg/providers/Microsoft.EventGrid/eventSubscriptions/kalses112\",\r\n \"name\": \"kalses112\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/egprodtestingrg\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://kishpdummyapp.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/egprodtestingrg/providers/Microsoft.EventGrid/eventSubscriptions/subValid\",\r\n \"name\": \"subValid\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cesartopics\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://requestb.in/11x4isl1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cesartopics/providers/Microsoft.EventGrid/eventSubscriptions/cesarArmRgTest\",\r\n \"name\": \"cesarArmRgTest\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/gridresourcegroup\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://requestb.in/1jimsdh1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/gridResourceGroup/providers/Microsoft.EventGrid/eventSubscriptions/rgsub1\",\r\n \"name\": \"rgsub1\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cesartopics\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://eventgridtestfunctionapp.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": [\r\n \"\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cesartopics/providers/Microsoft.EventGrid/eventSubscriptions/cesarTest3\",\r\n \"name\": \"cesarTest3\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/snorop\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://eventgridtestfunctionapp.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": [\r\n \"\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Snorop/providers/Microsoft.EventGrid/eventSubscriptions/SomeSubNameHere\",\r\n \"name\": \"SomeSubNameHere\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://requestb.in/ue9kc5ue\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg/providers/Microsoft.EventGrid/eventSubscriptions/armswitchtest\",\r\n \"name\": \"armswitchtest\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://requestb.in/ue9kc5ue\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg/providers/Microsoft.EventGrid/eventSubscriptions/armswitchtest2\",\r\n \"name\": \"armswitchtest2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://requestb.in/ue9kc5ue\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg/providers/Microsoft.EventGrid/eventSubscriptions/armswitchtest3\",\r\n \"name\": \"armswitchtest3\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://requestb.in/15ksip71\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg/providers/Microsoft.EventGrid/eventSubscriptions/examplesubscription2\",\r\n \"name\": \"examplesubscription2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://requestb.in/15ksip71\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg/providers/Microsoft.EventGrid/eventSubscriptions/examplesubscription4\",\r\n \"name\": \"examplesubscription4\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventHub/namespaces/EventHubTestWithEventGrid1/eventhubs/egarmrunnereventhublocaltestwestus2\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventGrid/eventSubscriptions/eg-crud-runner-subscription-c5f6c255-West-US-2\",\r\n \"name\": \"eg-crud-runner-subscription-c5f6c255-West-US-2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventHub/namespaces/EventHubTestWithEventGrid1/eventhubs/egarmrunnereventhublocaltestwestus2\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventGrid/eventSubscriptions/eg-crud-runner-subscription-88e492c5-West-US-2\",\r\n \"name\": \"eg-crud-runner-subscription-88e492c5-West-US-2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventHub/namespaces/EventHubTestWithEventGrid1/eventhubs/egarmrunnereventhublocaltestwestus2\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventGrid/eventSubscriptions/eg-crud-runner-subscription-86f9994d-West-US-2\",\r\n \"name\": \"eg-crud-runner-subscription-86f9994d-West-US-2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/demo-devopsautomation\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://s13events.azure-automation.net/webhooks\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/Demo-DevOpsAutomation/providers/Microsoft.Compute/virtualMachines\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Demo-DevOpsAutomation/providers/Microsoft.EventGrid/eventSubscriptions/AzureAutomation\",\r\n \"name\": \"AzureAutomation\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/contosovms\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://s13events.azure-automation.net/webhooks\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/contosovms/providers/Microsoft.Compute/virtualMachines\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/contosovms/providers/Microsoft.EventGrid/eventSubscriptions/VMCreation\",\r\n \"name\": \"VMCreation\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/contosovms\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://requestb.in/165j5xt1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/contosovms/providers/Microsoft.Compute/virtualMachines\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/contosovms/providers/Microsoft.EventGrid/eventSubscriptions/VMEventAudit\",\r\n \"name\": \"VMEventAudit\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2021-12-01&$skiptoken=%5b%7b%22token%22%3a%22%2bRID%3a%7e9fgUAOy9bAK5CwAAAAAAAA%3d%3d%23RT%3a1%23TRC%3a20%23ISV%3a2%23IEO%3a65551%23FPC%3aAgEAdQAYALELAG7ZhgGGqoDxDiQAPYfIgBECACgUgwEYAEEvRAASgAHAgAHtggWAAoAhARwAoQOQCQICAFaBBAgAeIcBwAICMoIJEADREAwAcQMAw8WHEoDxCJhhMwIA%2bpBICgBxMTQAUgvgIQQAdAQAe5xEgHUEAN%2b4AIA%3d%22%2c%22range%22%3a%7b%22min%22%3a%22%22%2c%22max%22%3a%22FF%22%7d%7d%5d&$top=20\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2021-12-01&$skiptoken=%5b%7B%22token%22%3a%22%2bRID%3a~9fgUAOy9bAK5CwAAAAAAAA%3d%3d%23RT%3a1%23TRC%3a20%23ISV%3a2%23IEO%3a65551%23FPC%3aAgEAdQAYALELAG7ZhgGGqoDxDiQAPYfIgBECACgUgwEYAEEvRAASgAHAgAHtggWAAoAhARwAoQOQCQICAFaBBAgAeIcBwAICMoIJEADREAwAcQMAw8WHEoDxCJhhMwIA%2bpBICgBxMTQAUgvgIQQAdAQAe5xEgHUEAN%2b4AIA%3d%22%2c%22range%22%3a%7B%22min%22%3a%22%22%2c%22max%22%3a%22FF%22%7D%7D%5d&$top=20", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTEyLTAxJiRza2lwdG9rZW49JTViJTdCJTIydG9rZW4lMjIlM2ElMjIlMmJSSUQlM2F+OWZnVUFPeTliQUs1Q3dBQUFBQUFBQSUzZCUzZCUyM1JUJTNhMSUyM1RSQyUzYTIwJTIzSVNWJTNhMiUyM0lFTyUzYTY1NTUxJTIzRlBDJTNhQWdFQWRRQVlBTEVMQUc3WmhnR0dxb0R4RGlRQVBZZklnQkVDQUNnVWd3RVlBRUV2UkFBU2dBSEFnQUh0Z2dXQUFvQWhBUndBb1FPUUNRSUNBRmFCQkFnQWVJY0J3QUlDTW9JSkVBRFJFQXdBY1FNQXc4V0hFb0R4Q0poaE13SUElMmJwQklDZ0J4TVRRQVVndmdJUVFBZEFRQWU1eEVnSFVFQU4lMmI0QUlBJTNkJTIyJTJjJTIycmFuZ2UlMjIlM2ElN0IlMjJtaW4lMjIlM2ElMjIlMjIlMmMlMjJtYXglMjIlM2ElMjJGRiUyMiU3RCU3RCU1ZCYkdG9wPTIw", - "RequestMethod": "GET", "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8f8aa231-4a46-47b1-a3d0-bfb52ddb1ba6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.16002", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" - ] - }, "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -729,28 +606,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "49482756-3669-4d83-832c-919f308c2308" + "7ba0ec86-b15e-4623-8c19-feea226ca5e6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11999" ], "x-ms-correlation-request-id": [ - "1a669094-7c00-4a68-849a-7726ccfbd233" + "d4de23bf-1a6d-4228-b73e-f672eda21905" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212930Z:1a669094-7c00-4a68-849a-7726ccfbd233" + "WESTUS2:20221005T224155Z:d4de23bf-1a6d-4228-b73e-f672eda21905" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:29:29 GMT" + "Wed, 05 Oct 2022 22:41:54 GMT" ], "Content-Length": [ - "16581" + "15423" ], "Content-Type": [ "application/json; charset=utf-8" @@ -759,28 +636,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/contosovms\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://babanisafun.azurewebsites.net/admin/extensions/EventGridExtensionConfig\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": [\r\n \"\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/contosovms/providers/Microsoft.EventGrid/eventSubscriptions/SQLchanges\",\r\n \"name\": \"SQLchanges\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/contosovms\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://babanisafun.azurewebsites.net/admin/extensions/EventGridExtensionConfig\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": [\r\n \"\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/contosovms/providers/Microsoft.EventGrid/eventSubscriptions/AllProdChanges\",\r\n \"name\": \"AllProdChanges\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/contosovms\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://prod-12.westus2.logic.azure.com/workflows/92fc8cf8a9394e48a0f22738070d9132/triggers/manual/paths/invoke\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": [\r\n \"\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/contosovms/providers/Microsoft.EventGrid/eventSubscriptions/AllDogfoodChanges\",\r\n \"name\": \"AllDogfoodChanges\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/contosovms\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://prod-12.westus2.logic.azure.com/workflows/92fc8cf8a9394e48a0f22738070d9132/triggers/manual/paths/invoke\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": [\r\n \"\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/contosovms/providers/Microsoft.EventGrid/eventSubscriptions/DeploymentFailures\",\r\n \"name\": \"DeploymentFailures\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/FrancosResources\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://prod-14.westcentralus.logic.azure.com/workflows/d5ef6d3cf09147529f40e36172992ff1/triggers/When_a_resource_event_occurs/versions/08586809618926790378/run\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/FrancosResources/providers/Microsoft.EventGrid/eventSubscriptions/LogicApp8597fc52-2559-4c2b-b9a5-6179d2eea8d0\",\r\n \"name\": \"LogicApp8597fc52-2559-4c2b-b9a5-6179d2eea8d0\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgdyoajzoke3lbxojr7omt6m6oasvyr7zsho5fidxigg36zbgvesajzqx4fzlyrltzi\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://kalsfunc1.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"mysubject_prefix\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgdyoajzoke3lbxojr7omt6m6oasvyr7zsho5fidxigg36zbgvesajzqx4fzlyrltzi/providers/Microsoft.EventGrid/eventSubscriptions/eventsubscription2\",\r\n \"name\": \"eventsubscription2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgggqagcer44su5icztostiufuauqsivdligimbgtoufsw5t24uauwgtqvks5eucndv\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://kalsfunc1.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"mysubject_prefix\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgggqagcer44su5icztostiufuauqsivdligimbgtoufsw5t24uauwgtqvks5eucndv/providers/Microsoft.EventGrid/eventSubscriptions/eventsubscription2\",\r\n \"name\": \"eventsubscription2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testpsrg\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://eventgridrunnerfunction.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testPsRG/providers/Microsoft.EventGrid/eventSubscriptions/testPsRgES111333\",\r\n \"name\": \"testPsRgES111333\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testpsrg\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://eventgridrunnerfunction.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"CloudEventV01Schema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testPsRG/providers/Microsoft.EventGrid/eventSubscriptions/testPsRgES11134444\",\r\n \"name\": \"testPsRgES11134444\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgnekak4bfydypjqukzgxjt4gl6oajnbxrkdwnuxzner4nbwa3bl62udrdrieg5timj\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://eventgridclilivetest.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"mysubject_prefix\",\r\n \"subjectEndsWith\": \".jpg\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgnekak4bfydypjqukzgxjt4gl6oajnbxrkdwnuxzner4nbwa3bl62udrdrieg5timj/providers/Microsoft.EventGrid/eventSubscriptions/eventsubscription2\",\r\n \"name\": \"eventsubscription2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgb2lttd5wuitcf4ja4j2tqhzvpy5wpdw6qidzrjje2nji4nhdhgnms7vpn7a6kolqq\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://eventgridclilivetest.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"mysubject_suffix\",\r\n \"includedEventTypes\": [\r\n \"blobCreated\",\r\n \"blobUpdated\"\r\n ],\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgb2lttd5wuitcf4ja4j2tqhzvpy5wpdw6qidzrjje2nji4nhdhgnms7vpn7a6kolqq/providers/Microsoft.EventGrid/eventSubscriptions/eventsubscription2\",\r\n \"name\": \"eventsubscription2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalstest\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/55f3dcd4-cac7-43b4-990b-a139d62a1eb2/resourcegroups/kalstest/providers/Microsoft.Storage/storageAccounts/kalsdemo\",\r\n \"queueName\": \"armqueue\"\r\n },\r\n \"endpointType\": \"StorageQueue\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"CloudEventV01Schema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalstest/providers/Microsoft.EventGrid/eventSubscriptions/es1\",\r\n \"name\": \"es1\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalstest\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/55f3dcd4-cac7-43b4-990b-a139d62a1eb2/resourcegroups/kalstest/providers/Microsoft.Storage/storageAccounts/kalsdemo\",\r\n \"queueName\": \"armqueue\"\r\n },\r\n \"endpointType\": \"StorageQueue\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalstest/providers/Microsoft.EventGrid/eventSubscriptions/es11\",\r\n \"name\": \"es11\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/FrancosResources\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/alitest/providers/Microsoft.Relay/namespaces/ali-relay-test/hybridconnections/somehybridconnection\"\r\n },\r\n \"endpointType\": \"HybridConnection\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": [],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/FrancosResources/providers/Microsoft.EventGrid/eventSubscriptions/something\",\r\n \"name\": \"something\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/serverlessdevops\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://resourcelogger.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": [\r\n \"\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/ServerlessDevOps/providers/Microsoft.EventGrid/eventSubscriptions/undefined\",\r\n \"name\": \"undefined\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/ServerlessDevOps\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://resourcelogger.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": [],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/ServerlessDevOps/providers/Microsoft.EventGrid/eventSubscriptions/devopssubscription\",\r\n \"name\": \"devopssubscription\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://eventgridrunnerfunction.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/eventSubscriptions/domainTopic1ES1\",\r\n \"name\": \"domainTopic1ES1\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://eventgridrunnerfunction.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/eventSubscriptions/domaintest11topic44ES8888\",\r\n \"name\": \"domaintest11topic44ES8888\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://eventgridrunnerfunction.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/eventSubscriptions/domaintest11topic44ES9999\",\r\n \"name\": \"domaintest11topic44ES9999\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rg74y2zekmuezgdxxvu5o6xw7noral7kktz6kdzii7nfantnybh5b4542bptb3ynnif\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/55f3dcd4-cac7-43b4-990b-a139d62a1eb2/resourcegroups/kalstest/providers/Microsoft.Relay/namespaces/kalsdemo/hybridConnections/kalstest\"\r\n },\r\n \"endpointType\": \"HybridConnection\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 20,\r\n \"eventTimeToLiveInMinutes\": 1000\r\n },\r\n \"deadLetterDestination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/55f3dcd4-cac7-43b4-990b-a139d62a1eb2/resourcegroups/kalstest/providers/Microsoft.Storage/storageAccounts/kalsdemo\",\r\n \"blobContainerName\": \"dlq\"\r\n },\r\n \"endpointType\": \"StorageBlob\"\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rg74y2zekmuezgdxxvu5o6xw7noral7kktz6kdzii7nfantnybh5b4542bptb3ynnif/providers/Microsoft.EventGrid/eventSubscriptions/eventsubscription2\",\r\n \"name\": \"eventsubscription2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2021-12-01&$skiptoken=%5b%7b%22token%22%3a%22%2bRID%3a%7e9fgUAOy9bAJtcgAAAAAAAA%3d%3d%23RT%3a2%23TRC%3a40%23ISV%3a2%23IEO%3a65551%23FPC%3aAgEBdQEOAG2yBYACgCEBHAChA5AJAgIAVoEECAB4hwHAAgIyggkQANEQDABxAwDDxYcSgPEImGEzAgD6kEgKAHExNABSC%2bAhBAB0BAB7nESAdQQA37gAgA%3d%3d%22%2c%22range%22%3a%7b%22min%22%3a%22%22%2c%22max%22%3a%22FF%22%7d%7d%5d&$top=20\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/gridresourcegroup\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://requestb.in/1fun9ou1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/gridResourceGroup/providers/Microsoft.EventGrid/eventSubscriptions/mysub600\",\r\n \"name\": \"mysub600\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/gridResourceGroup\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://prod-18.brazilus.logic.azure.com/workflows/c22dee70ada34ffca23b5fc89232166a/triggers/When_a_resource_event_occurs/versions/08586988636200583748/run\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/gridResourceGroup/providers/Microsoft.EventGrid/eventSubscriptions/LogicApp46d74b10-aa69-484e-aec2-52bfac87e2d9\",\r\n \"name\": \"LogicApp46d74b10-aa69-484e-aec2-52bfac87e2d9\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-EventHub-EASTUS2EUAP\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://prod-01.brazilus.logic.azure.com/workflows/87f6a4a8c5f3473ab9fd50076da6e909/triggers/On_a_resource_event/versions/08586988571716815965/run\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-EventHub-EASTUS2EUAP/providers/Microsoft.EventGrid/eventSubscriptions/LogicApp4a6316a3-5bda-44c8-ae67-bfb83aa31d1e\",\r\n \"name\": \"LogicApp4a6316a3-5bda-44c8-ae67-bfb83aa31d1e\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://requestb.in/10jslly1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg/providers/Microsoft.EventGrid/eventSubscriptions/kalses112\",\r\n \"name\": \"kalses112\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cesartopics\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://requestb.in/11x4isl1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cesartopics/providers/Microsoft.EventGrid/eventSubscriptions/cesarArmRgTest\",\r\n \"name\": \"cesarArmRgTest\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/gridresourcegroup\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://requestb.in/1jimsdh1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/gridResourceGroup/providers/Microsoft.EventGrid/eventSubscriptions/rgsub1\",\r\n \"name\": \"rgsub1\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cesartopics\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://eventgridtestfunctionapp.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": [\r\n \"\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cesartopics/providers/Microsoft.EventGrid/eventSubscriptions/cesarTest3\",\r\n \"name\": \"cesarTest3\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://requestb.in/ue9kc5ue\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg/providers/Microsoft.EventGrid/eventSubscriptions/armswitchtest\",\r\n \"name\": \"armswitchtest\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://requestb.in/ue9kc5ue\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg/providers/Microsoft.EventGrid/eventSubscriptions/armswitchtest2\",\r\n \"name\": \"armswitchtest2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://requestb.in/ue9kc5ue\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg/providers/Microsoft.EventGrid/eventSubscriptions/armswitchtest3\",\r\n \"name\": \"armswitchtest3\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/contosovms\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://s13events.azure-automation.net/webhooks\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/contosovms/providers/Microsoft.Compute/virtualMachines\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/contosovms/providers/Microsoft.EventGrid/eventSubscriptions/VMCreation\",\r\n \"name\": \"VMCreation\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/contosovms\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://requestb.in/165j5xt1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/contosovms/providers/Microsoft.Compute/virtualMachines\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/contosovms/providers/Microsoft.EventGrid/eventSubscriptions/VMEventAudit\",\r\n \"name\": \"VMEventAudit\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/contosovms\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://babanisafun.azurewebsites.net/admin/extensions/EventGridExtensionConfig\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": [\r\n \"\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/contosovms/providers/Microsoft.EventGrid/eventSubscriptions/SQLchanges\",\r\n \"name\": \"SQLchanges\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/contosovms\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://babanisafun.azurewebsites.net/admin/extensions/EventGridExtensionConfig\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": [\r\n \"\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/contosovms/providers/Microsoft.EventGrid/eventSubscriptions/AllProdChanges\",\r\n \"name\": \"AllProdChanges\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/contosovms\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://prod-12.westus2.logic.azure.com/workflows/92fc8cf8a9394e48a0f22738070d9132/triggers/manual/paths/invoke\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": [\r\n \"\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/contosovms/providers/Microsoft.EventGrid/eventSubscriptions/AllDogfoodChanges\",\r\n \"name\": \"AllDogfoodChanges\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/contosovms\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://prod-12.westus2.logic.azure.com/workflows/92fc8cf8a9394e48a0f22738070d9132/triggers/manual/paths/invoke\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": [\r\n \"\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/contosovms/providers/Microsoft.EventGrid/eventSubscriptions/DeploymentFailures\",\r\n \"name\": \"DeploymentFailures\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalstest\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/55f3dcd4-cac7-43b4-990b-a139d62a1eb2/resourcegroups/kalstest/providers/Microsoft.Storage/storageAccounts/kalsdemo\",\r\n \"queueName\": \"armqueue\"\r\n },\r\n \"endpointType\": \"StorageQueue\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"CloudEventV01Schema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalstest/providers/Microsoft.EventGrid/eventSubscriptions/es1\",\r\n \"name\": \"es1\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalstest\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/55f3dcd4-cac7-43b4-990b-a139d62a1eb2/resourcegroups/kalstest/providers/Microsoft.Storage/storageAccounts/kalsdemo\",\r\n \"queueName\": \"armqueue\"\r\n },\r\n \"endpointType\": \"StorageQueue\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalstest/providers/Microsoft.EventGrid/eventSubscriptions/es11\",\r\n \"name\": \"es11\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalstest\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://kalsfunc1.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalstest/providers/Microsoft.EventGrid/eventSubscriptions/es1008\",\r\n \"name\": \"es1008\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalstest\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://kalsfunc1.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"CloudEventV01Schema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalstest/providers/Microsoft.EventGrid/eventSubscriptions/es1009\",\r\n \"name\": \"es1009\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2022-06-15&$skiptoken=%5b%7b%22token%22%3a%22%2bRID%3a%7e9fgUAOy9bAKzcwAAAAAAAA%3d%3d%23RT%3a1%23TRC%3a20%23ISV%3a2%23IEO%3a65551%23QCF%3a8%23FPC%3aAgEBkgEGALEzGACkgwkEAFEUAMBIBADdvAKAkgIAlJo%3d%22%2c%22range%22%3a%7b%22min%22%3a%22%22%2c%22max%22%3a%2205C1E0%22%7d%7d%5d&$top=20\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2021-12-01&$skiptoken=%5b%7B%22token%22%3a%22%2bRID%3a~9fgUAOy9bAJtcgAAAAAAAA%3d%3d%23RT%3a2%23TRC%3a40%23ISV%3a2%23IEO%3a65551%23FPC%3aAgEBdQEOAG2yBYACgCEBHAChA5AJAgIAVoEECAB4hwHAAgIyggkQANEQDABxAwDDxYcSgPEImGEzAgD6kEgKAHExNABSC%2bAhBAB0BAB7nESAdQQA37gAgA%3d%3d%22%2c%22range%22%3a%7B%22min%22%3a%22%22%2c%22max%22%3a%22FF%22%7D%7D%5d&$top=20", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTEyLTAxJiRza2lwdG9rZW49JTViJTdCJTIydG9rZW4lMjIlM2ElMjIlMmJSSUQlM2F+OWZnVUFPeTliQUp0Y2dBQUFBQUFBQSUzZCUzZCUyM1JUJTNhMiUyM1RSQyUzYTQwJTIzSVNWJTNhMiUyM0lFTyUzYTY1NTUxJTIzRlBDJTNhQWdFQmRRRU9BRzJ5QllBQ2dDRUJIQUNoQTVBSkFnSUFWb0VFQ0FCNGh3SEFBZ0l5Z2drUUFORVFEQUJ4QXdERHhZY1NnUEVJbUdFekFnRDZrRWdLQUhFeE5BQlNDJTJiQWhCQUIwQkFCN25FU0FkUVFBMzdnQWdBJTNkJTNkJTIyJTJjJTIycmFuZ2UlMjIlM2ElN0IlMjJtaW4lMjIlM2ElMjIlMjIlMmMlMjJtYXglMjIlM2ElMjJGRiUyMiU3RCU3RCU1ZCYkdG9wPTIw", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2022-06-15&$skiptoken=%5b%7B%22token%22%3a%22%2bRID%3a~9fgUAOy9bAKzcwAAAAAAAA%3d%3d%23RT%3a1%23TRC%3a20%23ISV%3a2%23IEO%3a65551%23QCF%3a8%23FPC%3aAgEBkgEGALEzGACkgwkEAFEUAMBIBADdvAKAkgIAlJo%3d%22%2c%22range%22%3a%7B%22min%22%3a%22%22%2c%22max%22%3a%2205C1E0%22%7D%7D%5d&$top=20", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1JiRza2lwdG9rZW49JTViJTdCJTIydG9rZW4lMjIlM2ElMjIlMmJSSUQlM2F+OWZnVUFPeTliQUt6Y3dBQUFBQUFBQSUzZCUzZCUyM1JUJTNhMSUyM1RSQyUzYTIwJTIzSVNWJTNhMiUyM0lFTyUzYTY1NTUxJTIzUUNGJTNhOCUyM0ZQQyUzYUFnRUJrZ0VHQUxFekdBQ2tnd2tFQUZFVUFNQklCQURkdkFLQWtnSUFsSm8lM2QlMjIlMmMlMjJyYW5nZSUyMiUzYSU3QiUyMm1pbiUyMiUzYSUyMiUyMiUyYyUyMm1heCUyMiUzYSUyMjA1QzFFMCUyMiU3RCU3RCU1ZCYkdG9wPTIw", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8f8aa231-4a46-47b1-a3d0-bfb52ddb1ba6" + "99810e7e-b7a0-4dfc-81ee-7058a0d4d1b7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -792,28 +669,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d94b1a42-afda-4dd4-ac27-e42820e513bc" + "d23367be-5260-4101-b1cb-e97c69ec7852" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11998" ], "x-ms-correlation-request-id": [ - "2543013a-61d4-49b2-8533-41b472a484c9" + "dde114dd-10f0-49b6-8cc1-ddf42ce18873" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212930Z:2543013a-61d4-49b2-8533-41b472a484c9" + "WESTUS2:20221005T224155Z:dde114dd-10f0-49b6-8cc1-ddf42ce18873" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:29:30 GMT" + "Wed, 05 Oct 2022 22:41:55 GMT" ], "Content-Length": [ - "21632" + "8196" ], "Content-Type": [ "application/json; charset=utf-8" @@ -822,28 +699,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgvhw2gbrofn2qxabjqukojmpfvu2c6ppkwrshlbht6j4tlb7zwgci6o3m2vt4vhvvc\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/55f3dcd4-cac7-43b4-990b-a139d62a1eb2/resourcegroups/kalstest/providers/Microsoft.Relay/namespaces/kalsdemo/hybridConnections/kalstest\"\r\n },\r\n \"endpointType\": \"HybridConnection\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 20,\r\n \"eventTimeToLiveInMinutes\": 1000\r\n },\r\n \"deadLetterDestination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/55f3dcd4-cac7-43b4-990b-a139d62a1eb2/resourcegroups/kalstest/providers/Microsoft.Storage/storageAccounts/kalsdemo\",\r\n \"blobContainerName\": \"dlq\"\r\n },\r\n \"endpointType\": \"StorageBlob\"\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgvhw2gbrofn2qxabjqukojmpfvu2c6ppkwrshlbht6j4tlb7zwgci6o3m2vt4vhvvc/providers/Microsoft.EventGrid/eventSubscriptions/eventsubscription2\",\r\n \"name\": \"eventsubscription2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgy6k3wf2huzlkvq6ji2yppns5t7bd4jcnyrhry3rl3berje3it76xf3mrsvceehtqi\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/55f3dcd4-cac7-43b4-990b-a139d62a1eb2/resourcegroups/kalstest/providers/Microsoft.Relay/namespaces/kalsdemo/hybridConnections/kalstest\"\r\n },\r\n \"endpointType\": \"HybridConnection\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 20,\r\n \"eventTimeToLiveInMinutes\": 1000\r\n },\r\n \"deadLetterDestination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/55f3dcd4-cac7-43b4-990b-a139d62a1eb2/resourcegroups/kalstest/providers/Microsoft.Storage/storageAccounts/kalsdemo\",\r\n \"blobContainerName\": \"dlq\"\r\n },\r\n \"endpointType\": \"StorageBlob\"\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgy6k3wf2huzlkvq6ji2yppns5t7bd4jcnyrhry3rl3berje3it76xf3mrsvceehtqi/providers/Microsoft.EventGrid/eventSubscriptions/eventsubscription2\",\r\n \"name\": \"eventsubscription2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalstest\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://kalsfunc1.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalstest/providers/Microsoft.EventGrid/eventSubscriptions/es1008\",\r\n \"name\": \"es1008\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalstest\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://kalsfunc1.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"CloudEventV01Schema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalstest/providers/Microsoft.EventGrid/eventSubscriptions/es1009\",\r\n \"name\": \"es1009\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalstest\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://kalsfunc1.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalstest/providers/Microsoft.EventGrid/eventSubscriptions/es1011\",\r\n \"name\": \"es1011\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalstest\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://kalsfunc1.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalstest/providers/Microsoft.EventGrid/eventSubscriptions/es1012\",\r\n \"name\": \"es1012\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgwtsmk2x74lq5ucz23le446fmndtllskbag7b4cl33bobnkwb452lax3k2dyv4zs5l\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/55f3dcd4-cac7-43b4-990b-a139d62a1eb2/resourcegroups/kalstest/providers/Microsoft.Relay/namespaces/kalsdemo/hybridConnections/kalstest\"\r\n },\r\n \"endpointType\": \"HybridConnection\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 20,\r\n \"eventTimeToLiveInMinutes\": 1000\r\n },\r\n \"deadLetterDestination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/55f3dcd4-cac7-43b4-990b-a139d62a1eb2/resourcegroups/kalstest/providers/Microsoft.Storage/storageAccounts/kalsdemo\",\r\n \"blobContainerName\": \"dlq\"\r\n },\r\n \"endpointType\": \"StorageBlob\"\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgwtsmk2x74lq5ucz23le446fmndtllskbag7b4cl33bobnkwb452lax3k2dyv4zs5l/providers/Microsoft.EventGrid/eventSubscriptions/eventsubscription2\",\r\n \"name\": \"eventsubscription2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgfftva5fki4yts7dqyuie2d25ojzese5hvuxefdhm37mmsh473opiullf2svyxzpcy\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://kalsfunc1.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"mysubject_suffix\",\r\n \"includedEventTypes\": [\r\n \"blobCreated\",\r\n \"blobUpdated\"\r\n ],\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgfftva5fki4yts7dqyuie2d25ojzese5hvuxefdhm37mmsh473opiullf2svyxzpcy/providers/Microsoft.EventGrid/eventSubscriptions/eventsubscription2\",\r\n \"name\": \"eventsubscription2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgk2nqhsv4yqjhh63oe7ysznuc7noe2u2s6xiwty2su66vmcbbnx6cwn6xccjhzexvp\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://kalsfunc1.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"mysubject_prefix\",\r\n \"subjectEndsWith\": \".jpg\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgk2nqhsv4yqjhh63oe7ysznuc7noe2u2s6xiwty2su66vmcbbnx6cwn6xccjhzexvp/providers/Microsoft.EventGrid/eventSubscriptions/eventsubscription2\",\r\n \"name\": \"eventsubscription2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgjhoug6n3blyjwbza3pjaqllge43n3vzn6tprw3hs7ig2puwjkwxm2m6z34tbcnfni\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/55f3dcd4-cac7-43b4-990b-a139d62a1eb2/resourcegroups/kalstest/providers/Microsoft.Relay/namespaces/kalsdemo/hybridConnections/kalstest\"\r\n },\r\n \"endpointType\": \"HybridConnection\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 20,\r\n \"eventTimeToLiveInMinutes\": 1000\r\n },\r\n \"deadLetterDestination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/55f3dcd4-cac7-43b4-990b-a139d62a1eb2/resourcegroups/kalstest/providers/Microsoft.Storage/storageAccounts/kalsdemo\",\r\n \"blobContainerName\": \"dlq\"\r\n },\r\n \"endpointType\": \"StorageBlob\"\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgjhoug6n3blyjwbza3pjaqllge43n3vzn6tprw3hs7ig2puwjkwxm2m6z34tbcnfni/providers/Microsoft.EventGrid/eventSubscriptions/eventsubscription2\",\r\n \"name\": \"eventsubscription2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/test1\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://kishpdummyapp.azurewebsites.net/admin/extensions/EventGridExtensionConfig\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"fsdfsdfsdfsdfsdfsdfsdffsdfsdf\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ],\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"functions-eventgridtriggercsharp2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/test1/providers/Microsoft.EventGrid/eventSubscriptions/testsub553\",\r\n \"name\": \"testsub553\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgugwoshphzozagzimymgwgvjnxmvzqp5ocopvh4ub7q73mqn7mqwyjbyndb5nktvnf\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.ServiceBus/namespaces/devexpservicebus/queues/devexpdestination\"\r\n },\r\n \"endpointType\": \"ServiceBusQueue\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 1200\r\n },\r\n \"deadLetterDestination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"blobContainerName\": \"dlq\"\r\n },\r\n \"endpointType\": \"StorageBlob\"\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgugwoshphzozagzimymgwgvjnxmvzqp5ocopvh4ub7q73mqn7mqwyjbyndb5nktvnf/providers/Microsoft.EventGrid/eventSubscriptions/CliTestEventsubscription3\",\r\n \"name\": \"CliTestEventsubscription3\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgrspxro5j5byy6snwchqdopfyeicquub4wrl634l7wztbfzcl6z444qgmetrcz22wz\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.ServiceBus/namespaces/devexpservicebus/queues/devexpdestination\"\r\n },\r\n \"endpointType\": \"ServiceBusQueue\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 1200\r\n },\r\n \"deadLetterDestination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"blobContainerName\": \"dlq\"\r\n },\r\n \"endpointType\": \"StorageBlob\"\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgrspxro5j5byy6snwchqdopfyeicquub4wrl634l7wztbfzcl6z444qgmetrcz22wz/providers/Microsoft.EventGrid/eventSubscriptions/CliTestEventsubscription3\",\r\n \"name\": \"CliTestEventsubscription3\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rguifwywhuf62tpj3ax6e3kqu4ebf5zhhhgjdkvhkgur2kzsui6bravtrgh3tlyyniu\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"mysubject_prefix\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rguifwywhuf62tpj3ax6e3kqu4ebf5zhhhgjdkvhkgur2kzsui6bravtrgh3tlyyniu/providers/Microsoft.EventGrid/eventSubscriptions/eventsubscription2\",\r\n \"name\": \"eventsubscription2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps7238\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"Marketing\",\r\n \"Sales\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7238/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8462\",\r\n \"name\": \"EventSubscription-ps8462\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps7238\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteSuccess\"\r\n ]\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7238/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7656\",\r\n \"name\": \"EventSubscription-ps7656\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2395\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"Marketing\",\r\n \"Sales\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2395/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps5611\",\r\n \"name\": \"EventSubscription-ps5611\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2395\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteSuccess\"\r\n ]\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2395/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4207\",\r\n \"name\": \"EventSubscription-ps4207\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2089\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"Marketing\",\r\n \"Sales\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2089/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps370\",\r\n \"name\": \"EventSubscription-ps370\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2089\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteSuccess\"\r\n ]\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2089/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps9349\",\r\n \"name\": \"EventSubscription-ps9349\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2021-12-01&$skiptoken=%5b%7b%22token%22%3a%22%2bRID%3a%7e9fgUAOy9bAJfVAIAAAAAAA%3d%3d%23RT%3a3%23TRC%3a60%23ISV%3a2%23IEO%3a65551%23FPC%3aAgEJdQkKAF%2bUxYcSgPEImGEzAgD6kEgKAHExNABSC%2bAhBAB0BAB7nESAdQQA37gAgA%3d%3d%22%2c%22range%22%3a%7b%22min%22%3a%22%22%2c%22max%22%3a%22FF%22%7d%7d%5d&$top=20\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalstest\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://kalsfunc1.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalstest/providers/Microsoft.EventGrid/eventSubscriptions/es1011\",\r\n \"name\": \"es1011\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalstest\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://kalsfunc1.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalstest/providers/Microsoft.EventGrid/eventSubscriptions/es1012\",\r\n \"name\": \"es1012\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2089\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"Marketing\",\r\n \"Sales\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2089/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps370\",\r\n \"name\": \"EventSubscription-ps370\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2089\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteSuccess\"\r\n ]\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2089/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps9349\",\r\n \"name\": \"EventSubscription-ps9349\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testglobalmsirg1013/providers/microsoft.communication/communicationservices/testcommservices1015\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": null,\r\n \"deliveryWithResourceIdentity\": {\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentity\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/amh/providers/microsoft.managedidentity/userassignedidentities/testidentity2\"\r\n },\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/1196a38f-8e8a-4916-9056-787c19a53125/resourceGroups/PPGTest/providers/Microsoft.ServiceBus/namespaces/TestSBMigDLa0824/topics/t1\"\r\n },\r\n \"endpointType\": \"ServiceBusTopic\"\r\n }\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Communication.UserDisconnected\",\r\n \"Microsoft.Communication.ChatMessageDeletedInThread\",\r\n \"Microsoft.Communication.ChatMessageEditedInThread\",\r\n \"Microsoft.Communication.ChatThreadParticipantRemoved\",\r\n \"Microsoft.Communication.ChatMessageReceivedInThread\",\r\n \"Microsoft.Communication.ChatThreadParticipantAdded\",\r\n \"Microsoft.Communication.ChatThreadPropertiesUpdated\",\r\n \"Microsoft.Communication.ChatThreadDeleted\",\r\n \"Microsoft.Communication.ChatParticipantRemovedFromThreadWithUser\",\r\n \"Microsoft.Communication.ChatParticipantAddedToThreadWithUser\",\r\n \"Microsoft.Communication.RecordingFileStatusUpdated\",\r\n \"Microsoft.Communication.ChatMemberAddedToThreadWithUser\",\r\n \"Microsoft.Communication.ChatThreadPropertiesUpdatedPerUser\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": true\r\n },\r\n \"labels\": [],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/TESTGLOBALMSIRG1013/providers/MICROSOFT.COMMUNICATION/COMMUNICATIONSERVICES/TESTCOMMSERVICES1015/providers/Microsoft.EventGrid/eventSubscriptions/TestEGS1\",\r\n \"name\": \"TestEGS1\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testglobalmsirg1013/providers/microsoft.communication/communicationservices/testcommservices1015\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": null,\r\n \"deliveryWithResourceIdentity\": {\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/1196a38f-8e8a-4916-9056-787c19a53125/resourceGroups/PPGTest/providers/Microsoft.ServiceBus/namespaces/TestSBMigDLa0824/topics/t1\"\r\n },\r\n \"endpointType\": \"ServiceBusTopic\"\r\n }\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Communication.ChatThreadCreated\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": true\r\n },\r\n \"labels\": [],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/TESTGLOBALMSIRG1013/providers/MICROSOFT.COMMUNICATION/COMMUNICATIONSERVICES/TESTCOMMSERVICES1015/providers/Microsoft.EventGrid/eventSubscriptions/TestEGS2\",\r\n \"name\": \"TestEGS2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kevin\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.Storage/storageAccounts/kisheastus2\",\r\n \"queueName\": \"qu1\",\r\n \"queueMessageTimeToLiveInSeconds\": 604800\r\n },\r\n \"endpointType\": \"StorageQueue\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": true,\r\n \"advancedFilters\": [\r\n {\r\n \"values\": [\r\n \"test\"\r\n ],\r\n \"operatorType\": \"StringBeginsWith\",\r\n \"key\": \"id\"\r\n }\r\n ]\r\n },\r\n \"labels\": [],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/KEVIN/providers/Microsoft.EventGrid/eventSubscriptions/kevinsubscription\",\r\n \"name\": \"kevinsubscription\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2022-06-15&$skiptoken=%5b%7b%22token%22%3anull%2c%22range%22%3a%7b%22min%22%3a%2205C1E0%22%2c%22max%22%3a%22FF%22%7d%7d%5d&$top=20\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2021-12-01&$skiptoken=%5b%7B%22token%22%3a%22%2bRID%3a~9fgUAOy9bAJfVAIAAAAAAA%3d%3d%23RT%3a3%23TRC%3a60%23ISV%3a2%23IEO%3a65551%23FPC%3aAgEJdQkKAF%2bUxYcSgPEImGEzAgD6kEgKAHExNABSC%2bAhBAB0BAB7nESAdQQA37gAgA%3d%3d%22%2c%22range%22%3a%7B%22min%22%3a%22%22%2c%22max%22%3a%22FF%22%7D%7D%5d&$top=20", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTEyLTAxJiRza2lwdG9rZW49JTViJTdCJTIydG9rZW4lMjIlM2ElMjIlMmJSSUQlM2F+OWZnVUFPeTliQUpmVkFJQUFBQUFBQSUzZCUzZCUyM1JUJTNhMyUyM1RSQyUzYTYwJTIzSVNWJTNhMiUyM0lFTyUzYTY1NTUxJTIzRlBDJTNhQWdFSmRRa0tBRiUyYlV4WWNTZ1BFSW1HRXpBZ0Q2a0VnS0FIRXhOQUJTQyUyYkFoQkFCMEJBQjduRVNBZFFRQTM3Z0FnQSUzZCUzZCUyMiUyYyUyMnJhbmdlJTIyJTNhJTdCJTIybWluJTIyJTNhJTIyJTIyJTJjJTIybWF4JTIyJTNhJTIyRkYlMjIlN0QlN0QlNWQmJHRvcD0yMA==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2022-06-15&$skiptoken=%5b%7B%22token%22%3anull%2c%22range%22%3a%7B%22min%22%3a%2205C1E0%22%2c%22max%22%3a%22FF%22%7D%7D%5d&$top=20", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1JiRza2lwdG9rZW49JTViJTdiJTIydG9rZW4lMjIlM2FudWxsJTJjJTIycmFuZ2UlMjIlM2ElN2IlMjJtaW4lMjIlM2ElMjIwNUMxRTAlMjIlMmMlMjJtYXglMjIlM2ElMjJGRiUyMiU3ZCU3ZCU1ZCYkdG9wPTIw", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8f8aa231-4a46-47b1-a3d0-bfb52ddb1ba6" + "99810e7e-b7a0-4dfc-81ee-7058a0d4d1b7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -855,28 +732,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ec294f3b-556a-4511-923a-9f7b3750143a" + "e55df9e7-660b-4913-8de9-7cf2e4e6184f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11997" ], "x-ms-correlation-request-id": [ - "d4cc8341-c687-426a-88cd-92ecbf7a1c5d" + "2b35ea5c-34df-407b-8c04-579cfa2d4a3e" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212930Z:d4cc8341-c687-426a-88cd-92ecbf7a1c5d" + "WESTUS2:20221005T224155Z:2b35ea5c-34df-407b-8c04-579cfa2d4a3e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:29:30 GMT" + "Wed, 05 Oct 2022 22:41:55 GMT" ], "Content-Length": [ - "25946" + "17299" ], "Content-Type": [ "application/json; charset=utf-8" @@ -885,28 +762,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgbmkajelng45muwemcbenm4vwwex3zicdp4ih3gg3ngztiy7iy4ptgbamcerlf52k5\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Relay/namespaces/DevExpRelayNamespace/hybridConnections/hydbridconnectiondestination\"\r\n },\r\n \"endpointType\": \"HybridConnection\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 20,\r\n \"eventTimeToLiveInMinutes\": 1000\r\n },\r\n \"deadLetterDestination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"blobContainerName\": \"dlq\"\r\n },\r\n \"endpointType\": \"StorageBlob\"\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgbmkajelng45muwemcbenm4vwwex3zicdp4ih3gg3ngztiy7iy4ptgbamcerlf52k5/providers/Microsoft.EventGrid/eventSubscriptions/eventsubscription2\",\r\n \"name\": \"eventsubscription2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rghws7xajkhx3pjjk7tu3prfirukcwtyxvbkxhydc4bdtsl4fjuiufohsg5o6vok7mi\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Relay/namespaces/DevExpRelayNamespace/hybridConnections/hydbridconnectiondestination\"\r\n },\r\n \"endpointType\": \"HybridConnection\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 20,\r\n \"eventTimeToLiveInMinutes\": 1000\r\n },\r\n \"deadLetterDestination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"blobContainerName\": \"dlq\"\r\n },\r\n \"endpointType\": \"StorageBlob\"\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rghws7xajkhx3pjjk7tu3prfirukcwtyxvbkxhydc4bdtsl4fjuiufohsg5o6vok7mi/providers/Microsoft.EventGrid/eventSubscriptions/eventsubscription2\",\r\n \"name\": \"eventsubscription2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgrgsowriy7z3xmcopkjvo2vgwfgop34f4qguqozphrnazibjpyxb5qr76im4brdsbo\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"mysubject_prefix\",\r\n \"subjectEndsWith\": \".jpg\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgrgsowriy7z3xmcopkjvo2vgwfgop34f4qguqozphrnazibjpyxb5qr76im4brdsbo/providers/Microsoft.EventGrid/eventSubscriptions/eventsubscription2\",\r\n \"name\": \"eventsubscription2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgkhl4spsq65s3jryi63y2ebprwaavpa7mth3723q4wyc7dxjumpyiehr4y2q3mlpk7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"mysubject_suffix\",\r\n \"includedEventTypes\": [\r\n \"blobCreated\",\r\n \"blobUpdated\"\r\n ],\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgkhl4spsq65s3jryi63y2ebprwaavpa7mth3723q4wyc7dxjumpyiehr4y2q3mlpk7/providers/Microsoft.EventGrid/eventSubscriptions/eventsubscription2\",\r\n \"name\": \"eventsubscription2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rg7ns2ya23i7sb56d65h7whit6ftnnwahn34levwd37eijjrabesohhknemuhzamd6n\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"mysubject_suffix\",\r\n \"includedEventTypes\": [\r\n \"blobCreated\",\r\n \"blobUpdated\"\r\n ],\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rg7ns2ya23i7sb56d65h7whit6ftnnwahn34levwd37eijjrabesohhknemuhzamd6n/providers/Microsoft.EventGrid/eventSubscriptions/eventsubscription2\",\r\n \"name\": \"eventsubscription2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgji7mk3pmpcj4aq3x65fbeuiquxgr5htg56bljplug7o5lwbwpyk6sgcd2dxjq557b\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"mysubject_prefix\",\r\n \"subjectEndsWith\": \".jpg\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgji7mk3pmpcj4aq3x65fbeuiquxgr5htg56bljplug7o5lwbwpyk6sgcd2dxjq557b/providers/Microsoft.EventGrid/eventSubscriptions/eventsubscription2\",\r\n \"name\": \"eventsubscription2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgpdtpzyvohfkwaar2vxuhy6vaijkjjk46ft46ra2p2cmn7cjorzkvbnuwbvilgkke7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"mysubject_suffix\",\r\n \"includedEventTypes\": [\r\n \"blobCreated\",\r\n \"blobUpdated\"\r\n ],\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgpdtpzyvohfkwaar2vxuhy6vaijkjjk46ft46ra2p2cmn7cjorzkvbnuwbvilgkke7/providers/Microsoft.EventGrid/eventSubscriptions/eventsubscription2\",\r\n \"name\": \"eventsubscription2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgajxohel3ydkzph2ksrkxcpnljjyvwnh2g3dc35vf7zpwqczmkivh5qd6kth5hr7xg\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"mysubject_prefix\",\r\n \"subjectEndsWith\": \".jpg\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgajxohel3ydkzph2ksrkxcpnljjyvwnh2g3dc35vf7zpwqczmkivh5qd6kth5hr7xg/providers/Microsoft.EventGrid/eventSubscriptions/eventsubscription2\",\r\n \"name\": \"eventsubscription2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventHub/namespaces/testeventhublocalusw2/eventhubs/testeventhublocalusw2\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1439\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventGrid/eventSubscriptions/eg-arm-runner-subscription-West-US-2\",\r\n \"name\": \"eg-arm-runner-subscription-West-US-2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testglobalmsirg1013\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": null,\r\n \"deliveryWithResourceIdentity\": {\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/1196a38f-8e8a-4916-9056-787c19a53125/resourceGroups/PPGTest/providers/Microsoft.ServiceBus/namespaces/TestSBMigDLa0824/queues/q1\"\r\n },\r\n \"endpointType\": \"ServiceBusQueue\"\r\n }\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": true\r\n },\r\n \"labels\": [],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/TESTGLOBALMSIRG1013/providers/Microsoft.EventGrid/eventSubscriptions/TestEGS1\",\r\n \"name\": \"TestEGS1\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testglobalmsirg1013\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": null,\r\n \"deliveryWithResourceIdentity\": {\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentity\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/amh/providers/microsoft.managedidentity/userassignedidentities/testidentity1\"\r\n },\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/1196a38f-8e8a-4916-9056-787c19a53125/resourceGroups/PPGTest/providers/Microsoft.ServiceBus/namespaces/TestSBMigDLa0824/topics/t1\"\r\n },\r\n \"endpointType\": \"ServiceBusTopic\"\r\n }\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": true\r\n },\r\n \"labels\": [],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/TESTGLOBALMSIRG1013/providers/Microsoft.EventGrid/eventSubscriptions/TestEGS2\",\r\n \"name\": \"TestEGS2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testglobalmsirg1013\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": null,\r\n \"deliveryWithResourceIdentity\": {\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentity\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/amh/providers/microsoft.managedidentity/userassignedidentities/testidentity2\"\r\n },\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/1196a38f-8e8a-4916-9056-787c19a53125/resourceGroups/PPGGEO/providers/Microsoft.EventHub/namespaces/TestEHSanGeo0521/eventhubs/testehgeo\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n }\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": true\r\n },\r\n \"labels\": [],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/TESTGLOBALMSIRG1013/providers/Microsoft.EventGrid/eventSubscriptions/TestEGS3\",\r\n \"name\": \"TestEGS3\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/1196a38f-8e8a-4916-9056-787c19a53125/resourceGroups/PPGTest/providers/Microsoft.ServiceBus/namespaces/TestSBMigDLa0824/queues/q1\"\r\n },\r\n \"endpointType\": \"ServiceBusQueue\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.PolicyInsights.PolicyStateChanged\",\r\n \"Microsoft.PolicyInsights.PolicyStateCreated\",\r\n \"Microsoft.PolicyInsights.PolicyStateDeleted\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": true\r\n },\r\n \"labels\": [],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/RG*NONE/providers/MICROSOFT.POLICYINSIGHTS/POLICYSTATES/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/eventSubscriptions/TestEGS1\",\r\n \"name\": \"TestEGS1\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": null,\r\n \"deliveryWithResourceIdentity\": {\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/1196a38f-8e8a-4916-9056-787c19a53125/resourceGroups/PPGTest/providers/Microsoft.ServiceBus/namespaces/TestSBMigDLa0824/queues/q1\"\r\n },\r\n \"endpointType\": \"ServiceBusQueue\"\r\n }\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.PolicyInsights.PolicyStateChanged\",\r\n \"Microsoft.PolicyInsights.PolicyStateCreated\",\r\n \"Microsoft.PolicyInsights.PolicyStateDeleted\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": true\r\n },\r\n \"labels\": [],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/RG*NONE/providers/MICROSOFT.POLICYINSIGHTS/POLICYSTATES/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/eventSubscriptions/TestEGS2\",\r\n \"name\": \"TestEGS2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": null,\r\n \"deliveryWithResourceIdentity\": {\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentity\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/ppgtest/providers/microsoft.managedidentity/userassignedidentities/testuai0412new\"\r\n },\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/1196a38f-8e8a-4916-9056-787c19a53125/resourceGroups/PPGGEO/providers/Microsoft.EventHub/namespaces/TestEHSanGeo0521/eventhubs/testehgeo\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n }\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.PolicyInsights.PolicyStateChanged\",\r\n \"Microsoft.PolicyInsights.PolicyStateCreated\",\r\n \"Microsoft.PolicyInsights.PolicyStateDeleted\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": true\r\n },\r\n \"labels\": [],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/RG*NONE/providers/MICROSOFT.POLICYINSIGHTS/POLICYSTATES/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/eventSubscriptions/TestEGS3\",\r\n \"name\": \"TestEGS3\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": null,\r\n \"deliveryWithResourceIdentity\": {\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentity\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/ppgtest/providers/microsoft.managedidentity/userassignedidentities/testuai0506\"\r\n },\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/1196a38f-8e8a-4916-9056-787c19a53125/resourceGroups/PPGTest/providers/Microsoft.ServiceBus/namespaces/TestSBPremMigDLA0824/topics/t1\"\r\n },\r\n \"endpointType\": \"ServiceBusTopic\"\r\n }\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.PolicyInsights.PolicyStateChanged\",\r\n \"Microsoft.PolicyInsights.PolicyStateCreated\",\r\n \"Microsoft.PolicyInsights.PolicyStateDeleted\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": true\r\n },\r\n \"labels\": [],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/RG*NONE/providers/MICROSOFT.POLICYINSIGHTS/POLICYSTATES/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/providers/Microsoft.EventGrid/eventSubscriptions/TestEGS4\",\r\n \"name\": \"TestEGS4\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testglobalmsirg1013/providers/microsoft.communication/communicationservices/testcommservices1015\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": null,\r\n \"deliveryWithResourceIdentity\": {\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentity\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/amh/providers/microsoft.managedidentity/userassignedidentities/testidentity2\"\r\n },\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/1196a38f-8e8a-4916-9056-787c19a53125/resourceGroups/PPGTest/providers/Microsoft.ServiceBus/namespaces/TestSBMigDLa0824/topics/t1\"\r\n },\r\n \"endpointType\": \"ServiceBusTopic\"\r\n }\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Communication.UserDisconnected\",\r\n \"Microsoft.Communication.ChatMessageDeletedInThread\",\r\n \"Microsoft.Communication.ChatMessageEditedInThread\",\r\n \"Microsoft.Communication.ChatThreadParticipantRemoved\",\r\n \"Microsoft.Communication.ChatMessageReceivedInThread\",\r\n \"Microsoft.Communication.ChatThreadParticipantAdded\",\r\n \"Microsoft.Communication.ChatThreadPropertiesUpdated\",\r\n \"Microsoft.Communication.ChatThreadDeleted\",\r\n \"Microsoft.Communication.ChatParticipantRemovedFromThreadWithUser\",\r\n \"Microsoft.Communication.ChatParticipantAddedToThreadWithUser\",\r\n \"Microsoft.Communication.RecordingFileStatusUpdated\",\r\n \"Microsoft.Communication.ChatMemberAddedToThreadWithUser\",\r\n \"Microsoft.Communication.ChatThreadPropertiesUpdatedPerUser\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": true\r\n },\r\n \"labels\": [],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/TESTGLOBALMSIRG1013/providers/MICROSOFT.COMMUNICATION/COMMUNICATIONSERVICES/TESTCOMMSERVICES1015/providers/Microsoft.EventGrid/eventSubscriptions/TestEGS1\",\r\n \"name\": \"TestEGS1\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testglobalmsirg1013/providers/microsoft.communication/communicationservices/testcommservices1015\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": null,\r\n \"deliveryWithResourceIdentity\": {\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/1196a38f-8e8a-4916-9056-787c19a53125/resourceGroups/PPGTest/providers/Microsoft.ServiceBus/namespaces/TestSBMigDLa0824/topics/t1\"\r\n },\r\n \"endpointType\": \"ServiceBusTopic\"\r\n }\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Communication.ChatThreadCreated\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": true\r\n },\r\n \"labels\": [],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/TESTGLOBALMSIRG1013/providers/MICROSOFT.COMMUNICATION/COMMUNICATIONSERVICES/TESTCOMMSERVICES1015/providers/Microsoft.EventGrid/eventSubscriptions/TestEGS2\",\r\n \"name\": \"TestEGS2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/customeruser1rg1\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/CustomerUser1Rg1/providers/Microsoft.Storage/storageAccounts/samplepartnerstorageacct\",\r\n \"queueName\": \"queue1\"\r\n },\r\n \"endpointType\": \"StorageQueue\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceDeleteSuccess\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1439\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/CustomerUser1Rg1/providers/Microsoft.EventGrid/eventSubscriptions/subscriptionName-4112fb00\",\r\n \"name\": \"subscriptionName-4112fb00\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/customeruser1rg1\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/CustomerUser1Rg1/providers/Microsoft.Storage/storageAccounts/samplepartnerstorageacct\",\r\n \"queueName\": \"queue1\"\r\n },\r\n \"endpointType\": \"StorageQueue\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceDeleteSuccess\"\r\n ],\r\n \"advancedFilters\": [\r\n {\r\n \"values\": [\r\n \"Microsoft.EventGrid/partnerNamespaces/channels/delete\"\r\n ],\r\n \"operatorType\": \"StringIn\",\r\n \"key\": \"data.operationName\"\r\n }\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1439\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/CustomerUser1Rg1/providers/Microsoft.EventGrid/eventSubscriptions/subscriptionName-8164cf3c\",\r\n \"name\": \"subscriptionName-8164cf3c\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2021-12-01&$skiptoken=%5b%7b%22token%22%3a%22%2bRID%3a%7e9fgUAOy9bALEHB0AAAAAAA%3d%3d%23RT%3a4%23TRC%3a80%23ISV%3a2%23IEO%3a65551%23FPC%3aAgF0dXQCAMScdQQA37gAgA%3d%3d%22%2c%22range%22%3a%7b%22min%22%3a%22%22%2c%22max%22%3a%22FF%22%7d%7d%5d&$top=20\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/egprodtestingrg\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://kishpdummyapp.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/egprodtestingrg/providers/Microsoft.EventGrid/eventSubscriptions/subValid\",\r\n \"name\": \"subValid\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/snorop\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://eventgridtestfunctionapp.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": [\r\n \"\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Snorop/providers/Microsoft.EventGrid/eventSubscriptions/SomeSubNameHere\",\r\n \"name\": \"SomeSubNameHere\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://requestb.in/15ksip71\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg/providers/Microsoft.EventGrid/eventSubscriptions/examplesubscription2\",\r\n \"name\": \"examplesubscription2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://requestb.in/15ksip71\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg/providers/Microsoft.EventGrid/eventSubscriptions/examplesubscription4\",\r\n \"name\": \"examplesubscription4\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventHub/namespaces/EventHubTestWithEventGrid1/eventhubs/egarmrunnereventhublocaltestwestus2\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventGrid/eventSubscriptions/eg-crud-runner-subscription-c5f6c255-West-US-2\",\r\n \"name\": \"eg-crud-runner-subscription-c5f6c255-West-US-2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventHub/namespaces/EventHubTestWithEventGrid1/eventhubs/egarmrunnereventhublocaltestwestus2\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventGrid/eventSubscriptions/eg-crud-runner-subscription-88e492c5-West-US-2\",\r\n \"name\": \"eg-crud-runner-subscription-88e492c5-West-US-2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventHub/namespaces/EventHubTestWithEventGrid1/eventhubs/egarmrunnereventhublocaltestwestus2\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventGrid/eventSubscriptions/eg-crud-runner-subscription-86f9994d-West-US-2\",\r\n \"name\": \"eg-crud-runner-subscription-86f9994d-West-US-2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/demo-devopsautomation\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://s13events.azure-automation.net/webhooks\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/Demo-DevOpsAutomation/providers/Microsoft.Compute/virtualMachines\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Demo-DevOpsAutomation/providers/Microsoft.EventGrid/eventSubscriptions/AzureAutomation\",\r\n \"name\": \"AzureAutomation\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/FrancosResources\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://prod-14.westcentralus.logic.azure.com/workflows/d5ef6d3cf09147529f40e36172992ff1/triggers/When_a_resource_event_occurs/versions/08586809618926790378/run\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/FrancosResources/providers/Microsoft.EventGrid/eventSubscriptions/LogicApp8597fc52-2559-4c2b-b9a5-6179d2eea8d0\",\r\n \"name\": \"LogicApp8597fc52-2559-4c2b-b9a5-6179d2eea8d0\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testpsrg\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://eventgridrunnerfunction.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testPsRG/providers/Microsoft.EventGrid/eventSubscriptions/testPsRgES111333\",\r\n \"name\": \"testPsRgES111333\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testpsrg\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://eventgridrunnerfunction.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"CloudEventV01Schema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testPsRG/providers/Microsoft.EventGrid/eventSubscriptions/testPsRgES11134444\",\r\n \"name\": \"testPsRgES11134444\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/FrancosResources\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/alitest/providers/Microsoft.Relay/namespaces/ali-relay-test/hybridconnections/somehybridconnection\"\r\n },\r\n \"endpointType\": \"HybridConnection\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": [],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/FrancosResources/providers/Microsoft.EventGrid/eventSubscriptions/something\",\r\n \"name\": \"something\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/serverlessdevops\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://resourcelogger.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": [\r\n \"\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/ServerlessDevOps/providers/Microsoft.EventGrid/eventSubscriptions/undefined\",\r\n \"name\": \"undefined\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/ServerlessDevOps\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://resourcelogger.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": [],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/ServerlessDevOps/providers/Microsoft.EventGrid/eventSubscriptions/devopssubscription\",\r\n \"name\": \"devopssubscription\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://eventgridrunnerfunction.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/eventSubscriptions/domainTopic1ES1\",\r\n \"name\": \"domainTopic1ES1\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://eventgridrunnerfunction.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/eventSubscriptions/domaintest11topic44ES8888\",\r\n \"name\": \"domaintest11topic44ES8888\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://eventgridrunnerfunction.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/eventSubscriptions/domaintest11topic44ES9999\",\r\n \"name\": \"domaintest11topic44ES9999\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/test1\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://kishpdummyapp.azurewebsites.net/admin/extensions/EventGridExtensionConfig\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"fsdfsdfsdfsdfsdfsdfsdffsdfsdf\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ],\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"functions-eventgridtriggercsharp2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/test1/providers/Microsoft.EventGrid/eventSubscriptions/testsub553\",\r\n \"name\": \"testsub553\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps7238\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"Marketing\",\r\n \"Sales\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7238/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8462\",\r\n \"name\": \"EventSubscription-ps8462\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps7238\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteSuccess\"\r\n ]\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7238/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7656\",\r\n \"name\": \"EventSubscription-ps7656\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2022-06-15&$skiptoken=%5b%7b%22token%22%3a%22%2bRID%3a%7e9fgUAOy9bALTUAIAAAAAAA%3d%3d%23RT%3a1%23TRC%3a20%23ISV%3a2%23IEO%3a65551%23QCF%3a8%23FPC%3aAggJAAAAAAAAAAoAAAAAEAAACQAAAAAAAAAGANOQcQMAAzMAAAAAAAAAAgD6kEgAAAAAAAAABABxMTQAdAAAAAAAAAAEAHucRICBAAAAAAAAAAIAsJuIAAAAAAAAAAIAbowKAAAAABAAAAQAMRoADA%3d%3d%22%2c%22range%22%3a%7b%22min%22%3a%2205C1E0%22%2c%22max%22%3a%22FF%22%7d%7d%5d&$top=20\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2021-12-01&$skiptoken=%5b%7B%22token%22%3a%22%2bRID%3a~9fgUAOy9bALEHB0AAAAAAA%3d%3d%23RT%3a4%23TRC%3a80%23ISV%3a2%23IEO%3a65551%23FPC%3aAgF0dXQCAMScdQQA37gAgA%3d%3d%22%2c%22range%22%3a%7B%22min%22%3a%22%22%2c%22max%22%3a%22FF%22%7D%7D%5d&$top=20", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTEyLTAxJiRza2lwdG9rZW49JTViJTdCJTIydG9rZW4lMjIlM2ElMjIlMmJSSUQlM2F+OWZnVUFPeTliQUxFSEIwQUFBQUFBQSUzZCUzZCUyM1JUJTNhNCUyM1RSQyUzYTgwJTIzSVNWJTNhMiUyM0lFTyUzYTY1NTUxJTIzRlBDJTNhQWdGMGRYUUNBTVNjZFFRQTM3Z0FnQSUzZCUzZCUyMiUyYyUyMnJhbmdlJTIyJTNhJTdCJTIybWluJTIyJTNhJTIyJTIyJTJjJTIybWF4JTIyJTNhJTIyRkYlMjIlN0QlN0QlNWQmJHRvcD0yMA==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2022-06-15&$skiptoken=%5b%7B%22token%22%3a%22%2bRID%3a~9fgUAOy9bALTUAIAAAAAAA%3d%3d%23RT%3a1%23TRC%3a20%23ISV%3a2%23IEO%3a65551%23QCF%3a8%23FPC%3aAggJAAAAAAAAAAoAAAAAEAAACQAAAAAAAAAGANOQcQMAAzMAAAAAAAAAAgD6kEgAAAAAAAAABABxMTQAdAAAAAAAAAAEAHucRICBAAAAAAAAAAIAsJuIAAAAAAAAAAIAbowKAAAAABAAAAQAMRoADA%3d%3d%22%2c%22range%22%3a%7B%22min%22%3a%2205C1E0%22%2c%22max%22%3a%22FF%22%7D%7D%5d&$top=20", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1JiRza2lwdG9rZW49JTViJTdCJTIydG9rZW4lMjIlM2ElMjIlMmJSSUQlM2F+OWZnVUFPeTliQUxUVUFJQUFBQUFBQSUzZCUzZCUyM1JUJTNhMSUyM1RSQyUzYTIwJTIzSVNWJTNhMiUyM0lFTyUzYTY1NTUxJTIzUUNGJTNhOCUyM0ZQQyUzYUFnZ0pBQUFBQUFBQUFBb0FBQUFBRUFBQUNRQUFBQUFBQUFBR0FOT1FjUU1BQXpNQUFBQUFBQUFBQWdENmtFZ0FBQUFBQUFBQUJBQnhNVFFBZEFBQUFBQUFBQUFFQUh1Y1JJQ0JBQUFBQUFBQUFBSUFzSnVJQUFBQUFBQUFBQUlBYm93S0FBQUFBQkFBQUFRQU1Sb0FEQSUzZCUzZCUyMiUyYyUyMnJhbmdlJTIyJTNhJTdCJTIybWluJTIyJTNhJTIyMDVDMUUwJTIyJTJjJTIybWF4JTIyJTNhJTIyRkYlMjIlN0QlN0QlNWQmJHRvcD0yMA==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8f8aa231-4a46-47b1-a3d0-bfb52ddb1ba6" + "99810e7e-b7a0-4dfc-81ee-7058a0d4d1b7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -918,28 +795,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "014c51e3-e46d-4f30-84ca-19c03a6438fb" + "4ec50b9b-7940-430e-a04b-f098fe86fac1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11996" ], "x-ms-correlation-request-id": [ - "c676be57-87eb-4052-8137-53030c45091b" + "7ed059bc-98a1-445b-b9ac-ff33c0ee5efe" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212930Z:c676be57-87eb-4052-8137-53030c45091b" + "WESTUS2:20221005T224155Z:7ed059bc-98a1-445b-b9ac-ff33c0ee5efe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:29:30 GMT" + "Wed, 05 Oct 2022 22:41:55 GMT" ], "Content-Length": [ - "2135" + "14412" ], "Content-Type": [ "application/json; charset=utf-8" @@ -948,28 +825,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps368\",\r\n \"name\": \"EventSubscription-ps368\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteSuccess\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps9462\",\r\n \"name\": \"EventSubscription-ps9462\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2395\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"Marketing\",\r\n \"Sales\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2395/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps5611\",\r\n \"name\": \"EventSubscription-ps5611\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2395\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteSuccess\"\r\n ]\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2395/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4207\",\r\n \"name\": \"EventSubscription-ps4207\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventHub/namespaces/testeventhublocalusw2/eventhubs/testeventhublocalusw2\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1439\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventGrid/eventSubscriptions/eg-arm-runner-subscription-West-US-2\",\r\n \"name\": \"eg-arm-runner-subscription-West-US-2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testglobalmsirg1013\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": null,\r\n \"deliveryWithResourceIdentity\": {\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/1196a38f-8e8a-4916-9056-787c19a53125/resourceGroups/PPGTest/providers/Microsoft.ServiceBus/namespaces/TestSBMigDLa0824/queues/q1\"\r\n },\r\n \"endpointType\": \"ServiceBusQueue\"\r\n }\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": true\r\n },\r\n \"labels\": [],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/TESTGLOBALMSIRG1013/providers/Microsoft.EventGrid/eventSubscriptions/TestEGS1\",\r\n \"name\": \"TestEGS1\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testglobalmsirg1013\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": null,\r\n \"deliveryWithResourceIdentity\": {\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentity\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/amh/providers/microsoft.managedidentity/userassignedidentities/testidentity1\"\r\n },\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/1196a38f-8e8a-4916-9056-787c19a53125/resourceGroups/PPGTest/providers/Microsoft.ServiceBus/namespaces/TestSBMigDLa0824/topics/t1\"\r\n },\r\n \"endpointType\": \"ServiceBusTopic\"\r\n }\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": true\r\n },\r\n \"labels\": [],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/TESTGLOBALMSIRG1013/providers/Microsoft.EventGrid/eventSubscriptions/TestEGS2\",\r\n \"name\": \"TestEGS2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testglobalmsirg1013\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": null,\r\n \"deliveryWithResourceIdentity\": {\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentity\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/amh/providers/microsoft.managedidentity/userassignedidentities/testidentity2\"\r\n },\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/1196a38f-8e8a-4916-9056-787c19a53125/resourceGroups/PPGGEO/providers/Microsoft.EventHub/namespaces/TestEHSanGeo0521/eventhubs/testehgeo\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n }\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": true\r\n },\r\n \"labels\": [],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/TESTGLOBALMSIRG1013/providers/Microsoft.EventGrid/eventSubscriptions/TestEGS3\",\r\n \"name\": \"TestEGS3\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/customeruser1rg1\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/CustomerUser1Rg1/providers/Microsoft.Storage/storageAccounts/samplepartnerstorageacct\",\r\n \"queueName\": \"queue1\"\r\n },\r\n \"endpointType\": \"StorageQueue\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceDeleteSuccess\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1439\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/CustomerUser1Rg1/providers/Microsoft.EventGrid/eventSubscriptions/subscriptionName-4112fb00\",\r\n \"name\": \"subscriptionName-4112fb00\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/customeruser1rg1\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/CustomerUser1Rg1/providers/Microsoft.Storage/storageAccounts/samplepartnerstorageacct\",\r\n \"queueName\": \"queue1\"\r\n },\r\n \"endpointType\": \"StorageQueue\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceDeleteSuccess\"\r\n ],\r\n \"advancedFilters\": [\r\n {\r\n \"values\": [\r\n \"Microsoft.EventGrid/partnerNamespaces/channels/delete\"\r\n ],\r\n \"operatorType\": \"StringIn\",\r\n \"key\": \"data.operationName\"\r\n }\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1439\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/CustomerUser1Rg1/providers/Microsoft.EventGrid/eventSubscriptions/subscriptionName-8164cf3c\",\r\n \"name\": \"subscriptionName-8164cf3c\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"queueName\": \"demo\",\r\n \"queueMessageTimeToLiveInSeconds\": 604800\r\n },\r\n \"endpointType\": \"StorageQueue\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": true\r\n },\r\n \"labels\": [],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/AMH/providers/Microsoft.EventGrid/eventSubscriptions/testESArmNotif\",\r\n \"name\": \"testESArmNotif\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"queueName\": \"queue2222\",\r\n \"queueMessageTimeToLiveInSeconds\": 604800\r\n },\r\n \"endpointType\": \"StorageQueue\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": true\r\n },\r\n \"labels\": [],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/AMH/providers/Microsoft.EventGrid/eventSubscriptions/armNotifPartnerTopicCheck\",\r\n \"name\": \"armNotifPartnerTopicCheck\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7505\",\r\n \"name\": \"EventSubscription-ps7505\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteSuccess\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps3340\",\r\n \"name\": \"EventSubscription-ps3340\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps368?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHMzNjg/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7505?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3NTA1P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0aa86eb4-4263-40b0-97d6-a6c6a9a30cb4" + "55a9951d-577b-4cfa-8483-22b78e841ed5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -978,7 +855,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationResults/8C6294A3-4AE0-42EE-A5BE-60A9A0351D17?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationResults/C81F6388-7A52-4F6C-83F6-1A3E510C6FE0?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -987,7 +864,7 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/8C6294A3-4AE0-42EE-A5BE-60A9A0351D17?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/C81F6388-7A52-4F6C-83F6-1A3E510C6FE0?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -996,19 +873,19 @@ "14999" ], "x-ms-request-id": [ - "7c5373d2-e17d-4f13-a549-380ac3efd602" + "8cf83901-dd58-4847-a358-90f60390bbe6" ], "x-ms-correlation-request-id": [ - "7c5373d2-e17d-4f13-a549-380ac3efd602" + "8cf83901-dd58-4847-a358-90f60390bbe6" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212931Z:7c5373d2-e17d-4f13-a549-380ac3efd602" + "WESTUS2:20221005T224156Z:8cf83901-dd58-4847-a358-90f60390bbe6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:29:31 GMT" + "Wed, 05 Oct 2022 22:41:56 GMT" ], "Expires": [ "-1" @@ -1021,21 +898,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/8C6294A3-4AE0-42EE-A5BE-60A9A0351D17?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvbnNTdGF0dXMvOEM2Mjk0QTMtNEFFMC00MkVFLUE1QkUtNjBBOUEwMzUxRDE3P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/C81F6388-7A52-4F6C-83F6-1A3E510C6FE0?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvbnNTdGF0dXMvQzgxRjYzODgtN0E1Mi00RjZDLTgzRjYtMUEzRTUxMEM2RkUwP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0aa86eb4-4263-40b0-97d6-a6c6a9a30cb4" + "55a9951d-577b-4cfa-8483-22b78e841ed5" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1047,25 +924,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f24d9658-5923-422a-91e4-892d76a7c34e" + "96d67c23-d8d5-4b43-9d83-89ab2e052e81" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11999" ], "x-ms-correlation-request-id": [ - "843b3339-bc55-45d0-853f-8c37d4431c56" + "4569160d-673c-4a0b-8ca2-526600aeb3c4" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212941Z:843b3339-bc55-45d0-853f-8c37d4431c56" + "WESTUS2:20221005T224207Z:4569160d-673c-4a0b-8ca2-526600aeb3c4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:29:40 GMT" + "Wed, 05 Oct 2022 22:42:06 GMT" ], "Content-Length": [ "262" @@ -1077,25 +954,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/8C6294A3-4AE0-42EE-A5BE-60A9A0351D17?api-version=2021-12-01\",\r\n \"name\": \"8c6294a3-4ae0-42ee-a5be-60a9a0351d17\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/C81F6388-7A52-4F6C-83F6-1A3E510C6FE0?api-version=2022-06-15\",\r\n \"name\": \"c81f6388-7a52-4f6c-83f6-1a3e510c6fe0\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationResults/8C6294A3-4AE0-42EE-A5BE-60A9A0351D17?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvblJlc3VsdHMvOEM2Mjk0QTMtNEFFMC00MkVFLUE1QkUtNjBBOUEwMzUxRDE3P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationResults/C81F6388-7A52-4F6C-83F6-1A3E510C6FE0?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvblJlc3VsdHMvQzgxRjYzODgtN0E1Mi00RjZDLTgzRjYtMUEzRTUxMEM2RkUwP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0aa86eb4-4263-40b0-97d6-a6c6a9a30cb4" + "55a9951d-577b-4cfa-8483-22b78e841ed5" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1107,7 +984,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cc51ece1-99b1-4dc2-bb21-80221a5b9757" + "59ffadb9-a249-4cec-b286-aba92677f2d2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1116,16 +993,16 @@ "899" ], "x-ms-correlation-request-id": [ - "073dc7b5-ed02-4f6b-91cf-b3d6061572ea" + "04ce6050-b4ed-4ed5-b5c8-c7a4bc966657" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212941Z:073dc7b5-ed02-4f6b-91cf-b3d6061572ea" + "WESTUS2:20221005T224207Z:04ce6050-b4ed-4ed5-b5c8-c7a4bc966657" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:29:41 GMT" + "Wed, 05 Oct 2022 22:42:06 GMT" ], "Expires": [ "-1" @@ -1138,24 +1015,24 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps9462?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM5NDYyP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps3340?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHMzMzQwP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "123dab13-60c3-48fd-aaaa-f65a6265e201" + "2dbdabb6-5469-47c5-a553-8b7067fcc956" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1164,7 +1041,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationResults/693A0B2E-7ADB-4D9A-853A-B014C034495C?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationResults/FB13FD8B-D881-4F28-87E4-5C93678D5A80?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -1173,28 +1050,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/693A0B2E-7ADB-4D9A-853A-B014C034495C?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/FB13FD8B-D881-4F28-87E4-5C93678D5A80?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-request-id": [ - "00032ac3-9805-4381-bad9-088c54460ca3" + "d4f2a34f-776b-474f-90cd-f65b8243fa53" ], "x-ms-correlation-request-id": [ - "00032ac3-9805-4381-bad9-088c54460ca3" + "d4f2a34f-776b-474f-90cd-f65b8243fa53" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212942Z:00032ac3-9805-4381-bad9-088c54460ca3" + "WESTUS2:20221005T224208Z:d4f2a34f-776b-474f-90cd-f65b8243fa53" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:29:41 GMT" + "Wed, 05 Oct 2022 22:42:07 GMT" ], "Expires": [ "-1" @@ -1207,21 +1084,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/693A0B2E-7ADB-4D9A-853A-B014C034495C?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvbnNTdGF0dXMvNjkzQTBCMkUtN0FEQi00RDlBLTg1M0EtQjAxNEMwMzQ0OTVDP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/FB13FD8B-D881-4F28-87E4-5C93678D5A80?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvbnNTdGF0dXMvRkIxM0ZEOEItRDg4MS00RjI4LTg3RTQtNUM5MzY3OEQ1QTgwP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "123dab13-60c3-48fd-aaaa-f65a6265e201" + "2dbdabb6-5469-47c5-a553-8b7067fcc956" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1233,25 +1110,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "98bd39c5-9333-416d-9c8e-030710e71de0" + "514c62b5-cf74-4871-b231-89d262f735fa" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11997" ], "x-ms-correlation-request-id": [ - "d8ab2248-df96-4b56-97f8-25218e0bb029" + "923cdf8d-1a23-4429-97ed-d120f64c5225" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212952Z:d8ab2248-df96-4b56-97f8-25218e0bb029" + "WESTUS2:20221005T224218Z:923cdf8d-1a23-4429-97ed-d120f64c5225" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:29:51 GMT" + "Wed, 05 Oct 2022 22:42:17 GMT" ], "Content-Length": [ "262" @@ -1263,25 +1140,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/693A0B2E-7ADB-4D9A-853A-B014C034495C?api-version=2021-12-01\",\r\n \"name\": \"693a0b2e-7adb-4d9a-853a-b014c034495c\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/FB13FD8B-D881-4F28-87E4-5C93678D5A80?api-version=2022-06-15\",\r\n \"name\": \"fb13fd8b-d881-4f28-87e4-5c93678d5a80\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationResults/693A0B2E-7ADB-4D9A-853A-B014C034495C?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvblJlc3VsdHMvNjkzQTBCMkUtN0FEQi00RDlBLTg1M0EtQjAxNEMwMzQ0OTVDP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationResults/FB13FD8B-D881-4F28-87E4-5C93678D5A80?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvblJlc3VsdHMvRkIxM0ZEOEItRDg4MS00RjI4LTg3RTQtNUM5MzY3OEQ1QTgwP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "123dab13-60c3-48fd-aaaa-f65a6265e201" + "2dbdabb6-5469-47c5-a553-8b7067fcc956" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1293,25 +1170,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f83e5025-fbe2-496d-94c3-9e25a8bb5b62" + "f227c203-b0be-43e3-aad4-c6ad3afb3756" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "898" + "899" ], "x-ms-correlation-request-id": [ - "5d0efe1f-01cc-4bcc-871f-edec24f702f4" + "89c6913c-7ed1-45ff-8134-6c5a59fceea8" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212952Z:5d0efe1f-01cc-4bcc-871f-edec24f702f4" + "WESTUS2:20221005T224218Z:89c6913c-7ed1-45ff-8134-6c5a59fceea8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:29:51 GMT" + "Wed, 05 Oct 2022 22:42:17 GMT" ], "Expires": [ "-1" @@ -1326,8 +1203,8 @@ ], "Names": { "": [ - "ps368", - "ps9462" + "ps7505", + "ps3340" ] }, "Variables": { diff --git a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.EventSubscriptionTests/EventGrid_EventSubscription_CustomTopics_InputMapping.json b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.EventSubscriptionTests/EventGrid_EventSubscription_CustomTopics_InputMapping.json index bb0590897c82..28c62f64bacb 100644 --- a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.EventSubscriptionTests/EventGrid_EventSubscription_CustomTopics_InputMapping.json +++ b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.EventSubscriptionTests/EventGrid_EventSubscription_CustomTopics_InputMapping.json @@ -1,22 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps44?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczQ0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps7194?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczcxOTQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d1a07b20-1203-4e5a-a264-5e9e8a661fa2" + "0c85eda8-13ed-4484-840e-6ea169948f99" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,6 +24,7 @@ "35" ] }, + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "f6cd5a8d-0fae-4c7e-bdc5-984515f84adf" + "f34af4f6-a9fa-4519-b093-994b36e6726b" ], "x-ms-correlation-request-id": [ - "f6cd5a8d-0fae-4c7e-bdc5-984515f84adf" + "f34af4f6-a9fa-4519-b093-994b36e6726b" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212957Z:f6cd5a8d-0fae-4c7e-bdc5-984515f84adf" + "WESTUS2:20221005T224221Z:f34af4f6-a9fa-4519-b093-994b36e6726b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:29:56 GMT" + "Wed, 05 Oct 2022 22:42:21 GMT" ], "Content-Length": [ - "182" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps44\",\r\n \"name\": \"RGName-ps44\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7194\",\r\n \"name\": \"RGName-ps7194\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps44/providers/Microsoft.EventGrid/topics/PSTestTopic-ps544?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczU0ND9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7194/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3624?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczcxOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMzYyND9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9bc492c6-66e5-4321-b4ae-3e0c4dda40ff" + "37f5c76c-7d70-4a58-bb63-8069fd4494ab" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -91,6 +90,7 @@ "137" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -105,10 +105,10 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E20D2326-F517-43FB-B79B-7694238AAF77?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/A3DC1C06-9154-4A2D-82AF-C9DB8345197C?api-version=2022-06-15" ], "x-ms-request-id": [ - "2d190488-1145-4ab7-9f91-39e6c18ba01a" + "71a0afe7-bca0-49b7-aa71-42e59c86082d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -117,19 +117,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "81e8347f-6834-423b-99c0-76a17540f04b" + "13ac35a4-b12a-46a4-9f23-440c03f8958c" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212959Z:81e8347f-6834-423b-99c0-76a17540f04b" + "WESTUS2:20221005T224223Z:13ac35a4-b12a-46a4-9f23-440c03f8958c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:29:59 GMT" + "Wed, 05 Oct 2022 22:42:23 GMT" ], "Content-Length": [ - "388" + "392" ], "Content-Type": [ "application/json; charset=utf-8" @@ -138,25 +138,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps44/providers/Microsoft.EventGrid/topics/PSTestTopic-ps544\",\r\n \"name\": \"PSTestTopic-ps544\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7194/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3624\",\r\n \"name\": \"PSTestTopic-ps3624\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E20D2326-F517-43FB-B79B-7694238AAF77?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRTIwRDIzMjYtRjUxNy00M0ZCLUI3OUItNzY5NDIzOEFBRjc3P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/A3DC1C06-9154-4A2D-82AF-C9DB8345197C?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvQTNEQzFDMDYtOTE1NC00QTJELTgyQUYtQzlEQjgzNDUxOTdDP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9bc492c6-66e5-4321-b4ae-3e0c4dda40ff" + "37f5c76c-7d70-4a58-bb63-8069fd4494ab" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -168,7 +168,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a7e0b365-b61c-40dc-9b52-79d0efba98d2" + "5af79a72-4a08-4e64-bdfb-b17fc31d478c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -177,16 +177,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "aa91593c-ae8b-44d6-84e4-0cf275b9f058" + "6d9d610a-7079-4725-9e67-42e7cf604968" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T213010Z:aa91593c-ae8b-44d6-84e4-0cf275b9f058" + "WESTUS2:20221005T224234Z:6d9d610a-7079-4725-9e67-42e7cf604968" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:30:09 GMT" + "Wed, 05 Oct 2022 22:42:34 GMT" ], "Content-Length": [ "286" @@ -198,25 +198,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E20D2326-F517-43FB-B79B-7694238AAF77?api-version=2021-12-01\",\r\n \"name\": \"e20d2326-f517-43fb-b79b-7694238aaf77\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/A3DC1C06-9154-4A2D-82AF-C9DB8345197C?api-version=2022-06-15\",\r\n \"name\": \"a3dc1c06-9154-4a2d-82af-c9db8345197c\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps44/providers/Microsoft.EventGrid/topics/PSTestTopic-ps544?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczU0ND9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7194/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3624?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczcxOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMzYyND9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9bc492c6-66e5-4321-b4ae-3e0c4dda40ff" + "37f5c76c-7d70-4a58-bb63-8069fd4494ab" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -228,7 +228,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "caf22890-f848-4c25-943b-017f47ceb3d7" + "63d439e4-55a0-45b2-804a-9f8739193021" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -237,19 +237,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "63737e7e-a57f-40d0-804c-d334809467d3" + "b8641da4-210d-4f05-a6ac-ec3c44bde707" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T213010Z:63737e7e-a57f-40d0-804c-d334809467d3" + "WESTUS2:20221005T224234Z:b8641da4-210d-4f05-a6ac-ec3c44bde707" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:30:09 GMT" + "Wed, 05 Oct 2022 22:42:34 GMT" ], "Content-Length": [ - "517" + "562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -258,28 +258,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps544.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ce7e7cad-ca1c-4ffb-83d2-1b2663626208\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps44/providers/Microsoft.EventGrid/topics/PSTestTopic-ps544\",\r\n \"name\": \"PSTestTopic-ps544\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps3624.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f354c032-71ca-4c63-9b22-1f62a1b70d04\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7194/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3624\",\r\n \"name\": \"PSTestTopic-ps3624\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps44/providers/Microsoft.EventGrid/topics/PSTestTopic-ps544?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczU0ND9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7194/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3624?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczcxOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMzYyND9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c756e8b-823d-4cb2-9350-e77c8cbf8a75" + "78ffb15a-1d1e-43cd-ae7a-436b570825ec" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -291,28 +291,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3d520590-1baa-41a5-baa5-68bbab30bbd2" + "2fd10028-73a3-4528-a658-225c4a7dd194" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-correlation-request-id": [ - "35901ced-45c8-438b-8c98-6015dd54af50" + "5b234d60-b784-4bcf-82b2-369459f64837" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T213010Z:35901ced-45c8-438b-8c98-6015dd54af50" + "WESTUS2:20221005T224234Z:5b234d60-b784-4bcf-82b2-369459f64837" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:30:09 GMT" + "Wed, 05 Oct 2022 22:42:33 GMT" ], "Content-Length": [ - "517" + "562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -321,28 +321,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps544.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ce7e7cad-ca1c-4ffb-83d2-1b2663626208\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps44/providers/Microsoft.EventGrid/topics/PSTestTopic-ps544\",\r\n \"name\": \"PSTestTopic-ps544\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps3624.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f354c032-71ca-4c63-9b22-1f62a1b70d04\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7194/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3624\",\r\n \"name\": \"PSTestTopic-ps3624\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps44/providers/Microsoft.EventGrid/topics/PSTestTopic-ps544?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczU0ND9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7194/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3624?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczcxOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMzYyND9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "746a89c1-76aa-4d2a-964c-df5e561d83d8" + "6584ada7-0738-4cca-b998-e7ed3ca7adbb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -354,28 +354,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "92d3634e-cf22-4e0a-a66d-9693c8a60557" + "2f4e12be-1493-4214-af05-d5e528704f88" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11999" ], "x-ms-correlation-request-id": [ - "0b532498-be34-4642-bffc-b755e7f466ff" + "bc389655-41d0-431b-8c81-d7ccdc38d303" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T213032Z:0b532498-be34-4642-bffc-b755e7f466ff" + "WESTUS2:20221005T224259Z:bc389655-41d0-431b-8c81-d7ccdc38d303" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:30:31 GMT" + "Wed, 05 Oct 2022 22:42:58 GMT" ], "Content-Length": [ - "517" + "562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -384,26 +384,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps544.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ce7e7cad-ca1c-4ffb-83d2-1b2663626208\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps44/providers/Microsoft.EventGrid/topics/PSTestTopic-ps544\",\r\n \"name\": \"PSTestTopic-ps544\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps3624.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f354c032-71ca-4c63-9b22-1f62a1b70d04\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7194/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3624\",\r\n \"name\": \"PSTestTopic-ps3624\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps44/providers/Microsoft.EventGrid/topics/PSTestTopic-ps544/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6248?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3MvUFNUZXN0VG9waWMtcHM1NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNjI0OD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7194/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3624/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps5192?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM3MTk0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczM2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNTE5Mj9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"eventDeliverySchema\": \"EventGridSchema\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2c756e8b-823d-4cb2-9350-e77c8cbf8a75" + "78ffb15a-1d1e-43cd-ae7a-436b570825ec" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -412,6 +411,7 @@ "480" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"eventDeliverySchema\": \"EventGridSchema\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -426,10 +426,10 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/A5A2587C-B2AA-4305-B540-5A743B06BE9D?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/25578594-F194-4E48-9050-82C76BFAA6E8?api-version=2022-06-15" ], "x-ms-request-id": [ - "22159731-91f7-4cf4-8130-8910a7174fc7" + "cb798a3d-ca6d-4f77-969a-b98d228eecc2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -438,19 +438,19 @@ "899" ], "x-ms-correlation-request-id": [ - "7d92445d-711f-43ba-9ec6-0eec193215c0" + "44655df2-80a5-4cca-a640-1ebccf8e7ab3" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T213010Z:7d92445d-711f-43ba-9ec6-0eec193215c0" + "WESTUS2:20221005T224235Z:44655df2-80a5-4cca-a640-1ebccf8e7ab3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:30:09 GMT" + "Wed, 05 Oct 2022 22:42:35 GMT" ], "Content-Length": [ - "857" + "863" ], "Content-Type": [ "application/json; charset=utf-8" @@ -459,25 +459,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps44/providers/microsoft.eventgrid/topics/pstesttopic-ps544\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps44/providers/Microsoft.EventGrid/topics/PSTestTopic-ps544/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6248\",\r\n \"name\": \"EventSubscription-ps6248\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps7194/providers/microsoft.eventgrid/topics/pstesttopic-ps3624\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7194/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3624/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps5192\",\r\n \"name\": \"EventSubscription-ps5192\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/A5A2587C-B2AA-4305-B540-5A743B06BE9D?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvQTVBMjU4N0MtQjJBQS00MzA1LUI1NDAtNUE3NDNCMDZCRTlEP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/25578594-F194-4E48-9050-82C76BFAA6E8?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMjU1Nzg1OTQtRjE5NC00RTQ4LTkwNTAtODJDNzZCRkFBNkU4P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c756e8b-823d-4cb2-9350-e77c8cbf8a75" + "78ffb15a-1d1e-43cd-ae7a-436b570825ec" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -489,25 +489,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fd36376b-3ea8-433e-bcb7-75d1c9f5592a" + "b17310db-a690-47a4-b8d1-b28c42fe9ac9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11999" ], "x-ms-correlation-request-id": [ - "466e1f0f-2e2a-42cb-8d3c-41ca6685fc55" + "0d2fbfed-9147-4377-8989-761de1133f38" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T213020Z:466e1f0f-2e2a-42cb-8d3c-41ca6685fc55" + "WESTUS2:20221005T224245Z:0d2fbfed-9147-4377-8989-761de1133f38" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:30:20 GMT" + "Wed, 05 Oct 2022 22:42:45 GMT" ], "Content-Length": [ "286" @@ -519,25 +519,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/A5A2587C-B2AA-4305-B540-5A743B06BE9D?api-version=2021-12-01\",\r\n \"name\": \"a5a2587c-b2aa-4305-b540-5a743b06be9d\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/25578594-F194-4E48-9050-82C76BFAA6E8?api-version=2022-06-15\",\r\n \"name\": \"25578594-f194-4e48-9050-82c76bfaa6e8\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps44/providers/Microsoft.EventGrid/topics/PSTestTopic-ps544/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6248?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3MvUFNUZXN0VG9waWMtcHM1NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNjI0OD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7194/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3624/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps5192?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM3MTk0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczM2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNTE5Mj9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c756e8b-823d-4cb2-9350-e77c8cbf8a75" + "78ffb15a-1d1e-43cd-ae7a-436b570825ec" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -549,28 +549,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7ffb8c3e-b0bc-484d-8366-5f95ef7aee81" + "464cbe1b-fc91-4393-90b2-3e9c56160d6a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11998" ], "x-ms-correlation-request-id": [ - "36d35040-1fb7-46a4-98a9-f3a678206a45" + "25ceb87a-4266-42fe-bae9-452e98297caa" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T213021Z:36d35040-1fb7-46a4-98a9-f3a678206a45" + "WESTUS2:20221005T224246Z:25ceb87a-4266-42fe-bae9-452e98297caa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:30:20 GMT" + "Wed, 05 Oct 2022 22:42:45 GMT" ], "Content-Length": [ - "959" + "965" ], "Content-Type": [ "application/json; charset=utf-8" @@ -579,28 +579,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps44/providers/microsoft.eventgrid/topics/pstesttopic-ps544\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps44/providers/Microsoft.EventGrid/topics/PSTestTopic-ps544/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6248\",\r\n \"name\": \"EventSubscription-ps6248\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps7194/providers/microsoft.eventgrid/topics/pstesttopic-ps3624\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7194/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3624/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps5192\",\r\n \"name\": \"EventSubscription-ps5192\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps44/providers/Microsoft.EventGrid/topics/PSTestTopic-ps544/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6248?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3MvUFNUZXN0VG9waWMtcHM1NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNjI0OD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7194/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3624/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps5192?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM3MTk0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczM2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNTE5Mj9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a5ae75e7-14c5-4ca2-9e6f-36d580db7849" + "7a140241-fa8b-474e-8476-a7a5feb74735" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -612,28 +612,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0b060ba8-6620-411c-853d-2a6039338137" + "7538cf6e-2bc2-4333-bbab-7500b49879d5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11999" ], "x-ms-correlation-request-id": [ - "e0ece992-f637-42dc-a42b-68db26b1dd6d" + "781e6762-f97d-4b52-a4fc-3e4f3df768d5" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T213021Z:e0ece992-f637-42dc-a42b-68db26b1dd6d" + "WESTUS2:20221005T224246Z:781e6762-f97d-4b52-a4fc-3e4f3df768d5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:30:20 GMT" + "Wed, 05 Oct 2022 22:42:46 GMT" ], "Content-Length": [ - "959" + "965" ], "Content-Type": [ "application/json; charset=utf-8" @@ -642,28 +642,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps44/providers/microsoft.eventgrid/topics/pstesttopic-ps544\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps44/providers/Microsoft.EventGrid/topics/PSTestTopic-ps544/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6248\",\r\n \"name\": \"EventSubscription-ps6248\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps7194/providers/microsoft.eventgrid/topics/pstesttopic-ps3624\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7194/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3624/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps5192\",\r\n \"name\": \"EventSubscription-ps5192\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps44/providers/Microsoft.EventGrid/topics/PSTestTopic-ps544/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6248/getFullUrl?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3MvUFNUZXN0VG9waWMtcHM1NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNjI0OC9nZXRGdWxsVXJsP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7194/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3624/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps5192/getFullUrl?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM3MTk0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczM2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNTE5Mi9nZXRGdWxsVXJsP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a5ae75e7-14c5-4ca2-9e6f-36d580db7849" + "7a140241-fa8b-474e-8476-a7a5feb74735" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -675,7 +675,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4ff14b36-8e4d-4f11-b89d-c690f70af7f6" + "e2d61f84-52db-4f13-a122-c43824c82c02" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -684,16 +684,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "3f30905e-43b5-4b36-ae50-647eadfd3814" + "cb581d3f-5b17-43f5-a787-686d312919bd" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T213021Z:3f30905e-43b5-4b36-ae50-647eadfd3814" + "WESTUS2:20221005T224246Z:cb581d3f-5b17-43f5-a787-686d312919bd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:30:20 GMT" + "Wed, 05 Oct 2022 22:42:46 GMT" ], "Content-Length": [ "188" @@ -709,24 +709,24 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps44/providers/microsoft.eventgrid/topics/pstesttopic-ps544/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6248?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9yZ25hbWUtcHM0NC9wcm92aWRlcnMvbWljcm9zb2Z0LmV2ZW50Z3JpZC90b3BpY3MvcHN0ZXN0dG9waWMtcHM1NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNjI0OD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps7194/providers/microsoft.eventgrid/topics/pstesttopic-ps3624/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps5192?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9yZ25hbWUtcHM3MTk0L3Byb3ZpZGVycy9taWNyb3NvZnQuZXZlbnRncmlkL3RvcGljcy9wc3Rlc3R0b3BpYy1wczM2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNTE5Mj9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03606eff-7cd7-4bb8-b26c-727ccf1e48b5" + "2aea9e0b-feb5-4fc3-a798-8dcbb864717f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -738,28 +738,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9b5117b4-9099-459e-a411-7c88f20e0143" + "b29f25d7-079f-4a18-b868-05abb2e074d0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11998" ], "x-ms-correlation-request-id": [ - "472ccacd-4a5f-4609-8eab-f6ea06b8c980" + "0d2afb07-a008-4474-8698-2f971801cd9b" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T213021Z:472ccacd-4a5f-4609-8eab-f6ea06b8c980" + "WESTUS2:20221005T224247Z:0d2afb07-a008-4474-8698-2f971801cd9b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:30:21 GMT" + "Wed, 05 Oct 2022 22:42:46 GMT" ], "Content-Length": [ - "959" + "965" ], "Content-Type": [ "application/json; charset=utf-8" @@ -768,25 +768,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps44/providers/microsoft.eventgrid/topics/pstesttopic-ps544\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps44/providers/Microsoft.EventGrid/topics/PSTestTopic-ps544/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6248\",\r\n \"name\": \"EventSubscription-ps6248\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps7194/providers/microsoft.eventgrid/topics/pstesttopic-ps3624\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7194/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3624/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps5192\",\r\n \"name\": \"EventSubscription-ps5192\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps44/providers/microsoft.eventgrid/topics/pstesttopic-ps544/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6248?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9yZ25hbWUtcHM0NC9wcm92aWRlcnMvbWljcm9zb2Z0LmV2ZW50Z3JpZC90b3BpY3MvcHN0ZXN0dG9waWMtcHM1NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNjI0OD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps7194/providers/microsoft.eventgrid/topics/pstesttopic-ps3624/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps5192?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9yZ25hbWUtcHM3MTk0L3Byb3ZpZGVycy9taWNyb3NvZnQuZXZlbnRncmlkL3RvcGljcy9wc3Rlc3R0b3BpYy1wczM2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNTE5Mj9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03606eff-7cd7-4bb8-b26c-727ccf1e48b5" + "2aea9e0b-feb5-4fc3-a798-8dcbb864717f" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -798,28 +798,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "04f7f314-ab16-4977-9060-f6f369c76e3c" + "a59740e4-fb1a-42a7-8eaa-6cf79e548650" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11996" ], "x-ms-correlation-request-id": [ - "72f6f4c6-b532-4490-9b43-1bedccc6dbe0" + "5f576194-6c8a-41ae-b140-a93b7a58e036" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T213032Z:72f6f4c6-b532-4490-9b43-1bedccc6dbe0" + "WESTUS2:20221005T224258Z:5f576194-6c8a-41ae-b140-a93b7a58e036" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:30:31 GMT" + "Wed, 05 Oct 2022 22:42:57 GMT" ], "Content-Length": [ - "928" + "934" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,26 +828,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps44/providers/microsoft.eventgrid/topics/pstesttopic-ps544\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps44/providers/Microsoft.EventGrid/topics/PSTestTopic-ps544/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6248\",\r\n \"name\": \"EventSubscription-ps6248\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps7194/providers/microsoft.eventgrid/topics/pstesttopic-ps3624\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7194/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3624/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps5192\",\r\n \"name\": \"EventSubscription-ps5192\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps44/providers/microsoft.eventgrid/topics/pstesttopic-ps544/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6248?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9yZ25hbWUtcHM0NC9wcm92aWRlcnMvbWljcm9zb2Z0LmV2ZW50Z3JpZC90b3BpY3MvcHN0ZXN0dG9waWMtcHM1NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNjI0OD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps7194/providers/microsoft.eventgrid/topics/pstesttopic-ps3624/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps5192?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9yZ25hbWUtcHM3MTk0L3Byb3ZpZGVycy9taWNyb3NvZnQuZXZlbnRncmlkL3RvcGljcy9wc3Rlc3R0b3BpYy1wczM2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNTE5Mj9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n }\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\"\r\n },\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "03606eff-7cd7-4bb8-b26c-727ccf1e48b5" + "2aea9e0b-feb5-4fc3-a798-8dcbb864717f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -856,6 +855,7 @@ "542" ] }, + "RequestBody": "{\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n }\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\"\r\n },\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -870,31 +870,31 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/B0EEBE1B-BE7A-40BB-B17D-FF7F4F088860?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4A92B4CC-CA67-407B-BF3B-8EC8C89AE097?api-version=2022-06-15" ], "x-ms-request-id": [ - "e748ec84-4951-42ec-a95f-6ea57ca81a10" + "1c41b0cd-4f41-4d0b-adcb-ceff42cacef6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "898" + "899" ], "x-ms-correlation-request-id": [ - "57ce22fc-5797-45bc-a6d9-46d8a64fda02" + "c52aa3c3-98d5-4e99-869b-4c259142149b" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T213021Z:57ce22fc-5797-45bc-a6d9-46d8a64fda02" + "WESTUS2:20221005T224248Z:c52aa3c3-98d5-4e99-869b-4c259142149b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:30:21 GMT" + "Wed, 05 Oct 2022 22:42:47 GMT" ], "Content-Length": [ - "927" + "933" ], "Content-Type": [ "application/json; charset=utf-8" @@ -903,25 +903,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps44/providers/microsoft.eventgrid/topics/pstesttopic-ps544\",\r\n \"provisioningState\": \"Updating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps44/providers/Microsoft.EventGrid/topics/PSTestTopic-ps544/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6248\",\r\n \"name\": \"EventSubscription-ps6248\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps7194/providers/microsoft.eventgrid/topics/pstesttopic-ps3624\",\r\n \"provisioningState\": \"Updating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7194/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3624/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps5192\",\r\n \"name\": \"EventSubscription-ps5192\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/B0EEBE1B-BE7A-40BB-B17D-FF7F4F088860?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvQjBFRUJFMUItQkU3QS00MEJCLUIxN0QtRkY3RjRGMDg4ODYwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4A92B4CC-CA67-407B-BF3B-8EC8C89AE097?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNEE5MkI0Q0MtQ0E2Ny00MDdCLUJGM0ItOEVDOEM4OUFFMDk3P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03606eff-7cd7-4bb8-b26c-727ccf1e48b5" + "2aea9e0b-feb5-4fc3-a798-8dcbb864717f" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -933,25 +933,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f0ce585e-952f-49ca-b54d-edcb31b4f929" + "837043e3-ebe3-4b33-bff2-d7b363657093" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11997" ], "x-ms-correlation-request-id": [ - "e4484c6a-01d3-4b91-8f62-cbf187d09550" + "6fc848db-5594-4f27-89f2-59076bb00350" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T213031Z:e4484c6a-01d3-4b91-8f62-cbf187d09550" + "WESTUS2:20221005T224258Z:6fc848db-5594-4f27-89f2-59076bb00350" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:30:31 GMT" + "Wed, 05 Oct 2022 22:42:57 GMT" ], "Content-Length": [ "286" @@ -963,28 +963,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/B0EEBE1B-BE7A-40BB-B17D-FF7F4F088860?api-version=2021-12-01\",\r\n \"name\": \"b0eebe1b-be7a-40bb-b17d-ff7f4f088860\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4A92B4CC-CA67-407B-BF3B-8EC8C89AE097?api-version=2022-06-15\",\r\n \"name\": \"4a92b4cc-ca67-407b-bf3b-8ec8c89ae097\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps44/providers/Microsoft.EventGrid/topics/PSTestTopic-ps544/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6248?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3MvUFNUZXN0VG9waWMtcHM1NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNjI0OD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7194/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3624/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps5192?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM3MTk0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczM2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNTE5Mj9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "746a89c1-76aa-4d2a-964c-df5e561d83d8" + "6584ada7-0738-4cca-b998-e7ed3ca7adbb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -993,7 +993,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/9745188E-4288-49B8-BA1C-B506FD16B7EB?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/337FE0EA-3DEC-4D43-B753-9B7C1A25AE0E?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -1002,7 +1002,7 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/9745188E-4288-49B8-BA1C-B506FD16B7EB?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/337FE0EA-3DEC-4D43-B753-9B7C1A25AE0E?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1011,19 +1011,19 @@ "14999" ], "x-ms-request-id": [ - "1df3766b-b5aa-43d1-bcea-70fca99c03cf" + "193acfcf-c5d1-4eb0-bba5-bf79483ebae8" ], "x-ms-correlation-request-id": [ - "1df3766b-b5aa-43d1-bcea-70fca99c03cf" + "193acfcf-c5d1-4eb0-bba5-bf79483ebae8" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T213032Z:1df3766b-b5aa-43d1-bcea-70fca99c03cf" + "WESTUS2:20221005T224300Z:193acfcf-c5d1-4eb0-bba5-bf79483ebae8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:30:31 GMT" + "Wed, 05 Oct 2022 22:42:59 GMT" ], "Expires": [ "-1" @@ -1036,21 +1036,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/9745188E-4288-49B8-BA1C-B506FD16B7EB?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvOTc0NTE4OEUtNDI4OC00OUI4LUJBMUMtQjUwNkZEMTZCN0VCP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/337FE0EA-3DEC-4D43-B753-9B7C1A25AE0E?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMzM3RkUwRUEtM0RFQy00RDQzLUI3NTMtOUI3QzFBMjVBRTBFP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "746a89c1-76aa-4d2a-964c-df5e561d83d8" + "6584ada7-0738-4cca-b998-e7ed3ca7adbb" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1062,25 +1062,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8c9e9f58-c98c-41f8-8650-c5099db9962e" + "56f17ca2-1046-4c06-8eb1-29ee57c3a819" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11999" ], "x-ms-correlation-request-id": [ - "a5673ef5-83a2-45a3-ab49-680263972738" + "f5f3addb-4c48-4e2b-9b12-2c622c19f045" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T213042Z:a5673ef5-83a2-45a3-ab49-680263972738" + "WESTUS2:20221005T224310Z:f5f3addb-4c48-4e2b-9b12-2c622c19f045" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:30:42 GMT" + "Wed, 05 Oct 2022 22:43:09 GMT" ], "Content-Length": [ "286" @@ -1092,25 +1092,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/9745188E-4288-49B8-BA1C-B506FD16B7EB?api-version=2021-12-01\",\r\n \"name\": \"9745188e-4288-49b8-ba1c-b506fd16b7eb\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/337FE0EA-3DEC-4D43-B753-9B7C1A25AE0E?api-version=2022-06-15\",\r\n \"name\": \"337fe0ea-3dec-4d43-b753-9b7c1a25ae0e\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/9745188E-4288-49B8-BA1C-B506FD16B7EB?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvOTc0NTE4OEUtNDI4OC00OUI4LUJBMUMtQjUwNkZEMTZCN0VCP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/337FE0EA-3DEC-4D43-B753-9B7C1A25AE0E?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMzM3RkUwRUEtM0RFQy00RDQzLUI3NTMtOUI3QzFBMjVBRTBFP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "746a89c1-76aa-4d2a-964c-df5e561d83d8" + "6584ada7-0738-4cca-b998-e7ed3ca7adbb" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1122,25 +1122,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c6137c47-990d-49fd-9ca8-e5bbd3f0c9c1" + "0ee4b22a-b078-4424-bc35-c552c93b17dc" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11998" ], "x-ms-correlation-request-id": [ - "a791ed57-e880-4759-a9a8-59b29486fa54" + "54ca54a2-5257-495b-9dae-6f74ea3dc0e1" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T213042Z:a791ed57-e880-4759-a9a8-59b29486fa54" + "WESTUS2:20221005T224310Z:54ca54a2-5257-495b-9dae-6f74ea3dc0e1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:30:42 GMT" + "Wed, 05 Oct 2022 22:43:09 GMT" ], "Expires": [ "-1" @@ -1153,24 +1153,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps44/providers/Microsoft.EventGrid/topics/PSTestTopic-ps544?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczU0ND9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7194/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3624?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczcxOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMzYyND9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7d8d9c9-51fe-4a87-ba88-5c40f148c64c" + "5b6b22b4-4e33-442e-adaf-3aece2516b6f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1179,7 +1179,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/76B27441-B154-47D0-8351-F2ECD3EBED66?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/CD426CC6-EFDF-400F-85E7-A736485225D5?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -1188,28 +1188,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/76B27441-B154-47D0-8351-F2ECD3EBED66?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/CD426CC6-EFDF-400F-85E7-A736485225D5?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-request-id": [ - "59282f76-3e6b-458a-beaf-58ef9cbf505d" + "c8fc629d-bf20-4d83-9f4b-b9746f6b7c9c" ], "x-ms-correlation-request-id": [ - "59282f76-3e6b-458a-beaf-58ef9cbf505d" + "c8fc629d-bf20-4d83-9f4b-b9746f6b7c9c" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T213043Z:59282f76-3e6b-458a-beaf-58ef9cbf505d" + "WESTUS2:20221005T224311Z:c8fc629d-bf20-4d83-9f4b-b9746f6b7c9c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:30:43 GMT" + "Wed, 05 Oct 2022 22:43:10 GMT" ], "Expires": [ "-1" @@ -1222,21 +1222,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/76B27441-B154-47D0-8351-F2ECD3EBED66?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNzZCMjc0NDEtQjE1NC00N0QwLTgzNTEtRjJFQ0QzRUJFRDY2P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/CD426CC6-EFDF-400F-85E7-A736485225D5?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvQ0Q0MjZDQzYtRUZERi00MDBGLTg1RTctQTczNjQ4NTIyNUQ1P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7d8d9c9-51fe-4a87-ba88-5c40f148c64c" + "5b6b22b4-4e33-442e-adaf-3aece2516b6f" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1248,25 +1248,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "281e1f8d-01ce-4dba-a8f6-2d4b4ad1aeda" + "5bc32508-9c11-441b-9f00-0049bd26cde6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11999" ], "x-ms-correlation-request-id": [ - "c4e4e778-c4a7-478c-b93f-73eaa473d083" + "cb95dc44-b068-4273-8f41-2a8f5fe7ea77" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T213053Z:c4e4e778-c4a7-478c-b93f-73eaa473d083" + "WESTUS2:20221005T224321Z:cb95dc44-b068-4273-8f41-2a8f5fe7ea77" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:30:52 GMT" + "Wed, 05 Oct 2022 22:43:20 GMT" ], "Content-Length": [ "286" @@ -1278,25 +1278,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/76B27441-B154-47D0-8351-F2ECD3EBED66?api-version=2021-12-01\",\r\n \"name\": \"76b27441-b154-47d0-8351-f2ecd3ebed66\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/CD426CC6-EFDF-400F-85E7-A736485225D5?api-version=2022-06-15\",\r\n \"name\": \"cd426cc6-efdf-400f-85e7-a736485225d5\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/76B27441-B154-47D0-8351-F2ECD3EBED66?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNzZCMjc0NDEtQjE1NC00N0QwLTgzNTEtRjJFQ0QzRUJFRDY2P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/CD426CC6-EFDF-400F-85E7-A736485225D5?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvQ0Q0MjZDQzYtRUZERi00MDBGLTg1RTctQTczNjQ4NTIyNUQ1P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7d8d9c9-51fe-4a87-ba88-5c40f148c64c" + "5b6b22b4-4e33-442e-adaf-3aece2516b6f" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1308,25 +1308,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6fe3345e-be50-4af8-8d91-3a98b5939363" + "5d743133-342e-46cd-9a30-606ca873aecb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11998" ], "x-ms-correlation-request-id": [ - "c4abeb98-43fe-4b8f-a412-6554b798ceb7" + "9c768405-82ac-4670-88a1-c324e6022772" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T213053Z:c4abeb98-43fe-4b8f-a412-6554b798ceb7" + "WESTUS2:20221005T224321Z:9c768405-82ac-4670-88a1-c324e6022772" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:30:52 GMT" + "Wed, 05 Oct 2022 22:43:20 GMT" ], "Expires": [ "-1" @@ -1339,24 +1339,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps44?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczQ0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps7194?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczcxOTQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22da9527-85fd-445f-96ed-8bfc7ff45038" + "ee9be142-4545-4a15-90b6-bf88db8f7635" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1365,7 +1365,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzQ0LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzcxOTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1374,13 +1374,13 @@ "14999" ], "x-ms-request-id": [ - "54e1b874-ae3f-4807-baf7-f204a4be6828" + "c4c6f255-ae37-4edd-93c4-e76b07325ae5" ], "x-ms-correlation-request-id": [ - "54e1b874-ae3f-4807-baf7-f204a4be6828" + "c4c6f255-ae37-4edd-93c4-e76b07325ae5" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T213054Z:54e1b874-ae3f-4807-baf7-f204a4be6828" + "WESTUS2:20221005T224322Z:c4c6f255-ae37-4edd-93c4-e76b07325ae5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1389,7 +1389,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:30:53 GMT" + "Wed, 05 Oct 2022 22:43:22 GMT" ], "Expires": [ "-1" @@ -1402,18 +1402,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzQ0LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpRMExWZEZVMVJEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSalpXNTBjbUZzZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzcxOTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpjeE9UUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1425,13 +1425,13 @@ "11999" ], "x-ms-request-id": [ - "a16fc318-1fb9-4e50-8962-9a60b386148f" + "7232c2e8-dc29-4357-a3cc-412c3979e83e" ], "x-ms-correlation-request-id": [ - "a16fc318-1fb9-4e50-8962-9a60b386148f" + "7232c2e8-dc29-4357-a3cc-412c3979e83e" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T213109Z:a16fc318-1fb9-4e50-8962-9a60b386148f" + "WESTUS2:20221005T224337Z:7232c2e8-dc29-4357-a3cc-412c3979e83e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1440,7 +1440,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:31:08 GMT" + "Wed, 05 Oct 2022 22:43:37 GMT" ], "Expires": [ "-1" @@ -1453,18 +1453,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzQ0LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpRMExWZEZVMVJEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSalpXNTBjbUZzZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzcxOTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpjeE9UUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1476,13 +1476,13 @@ "11998" ], "x-ms-request-id": [ - "32f55183-560d-4855-b712-9dc1586b0050" + "0e5555f3-434b-4bfe-a030-85d801d0a173" ], "x-ms-correlation-request-id": [ - "32f55183-560d-4855-b712-9dc1586b0050" + "0e5555f3-434b-4bfe-a030-85d801d0a173" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T213109Z:32f55183-560d-4855-b712-9dc1586b0050" + "WESTUS2:20221005T224337Z:0e5555f3-434b-4bfe-a030-85d801d0a173" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1491,7 +1491,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:31:09 GMT" + "Wed, 05 Oct 2022 22:43:37 GMT" ], "Expires": [ "-1" @@ -1506,9 +1506,9 @@ ], "Names": { "": [ - "ps544", - "ps6248", - "ps44" + "ps3624", + "ps5192", + "ps7194" ] }, "Variables": { diff --git a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.EventSubscriptionTests/EventGrid_EventSubscription_CustomTopics_WebhookBatching.json b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.EventSubscriptionTests/EventGrid_EventSubscription_CustomTopics_WebhookBatching.json index 90790006d1b0..69b90fd61ab3 100644 --- a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.EventSubscriptionTests/EventGrid_EventSubscription_CustomTopics_WebhookBatching.json +++ b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.EventSubscriptionTests/EventGrid_EventSubscription_CustomTopics_WebhookBatching.json @@ -1,22 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps5919?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczU5MTk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps5935?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczU5MzU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2eb31289-581a-4ba2-a52f-94c475fbc523" + "dffa32f0-f753-46cb-8f5b-14dc7482614f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,6 +24,7 @@ "35" ] }, + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "97ab033d-b4fe-4ac9-8892-0564c2761f3c" + "d014d708-ced4-4c9c-8ffe-c500b8fd34c6" ], "x-ms-correlation-request-id": [ - "97ab033d-b4fe-4ac9-8892-0564c2761f3c" + "d014d708-ced4-4c9c-8ffe-c500b8fd34c6" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T213937Z:97ab033d-b4fe-4ac9-8892-0564c2761f3c" + "WESTUS2:20221005T224659Z:d014d708-ced4-4c9c-8ffe-c500b8fd34c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:39:36 GMT" + "Wed, 05 Oct 2022 22:46:59 GMT" ], "Content-Length": [ "186" @@ -63,26 +63,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919\",\r\n \"name\": \"RGName-ps5919\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935\",\r\n \"name\": \"RGName-ps5935\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczU5MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMTk3Nz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczU5MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMjI4MD9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "28828c37-1cc9-43cf-8ab0-44d8b21f90ed" + "1b27690a-0644-4ed5-9659-e93d4d7b9689" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -91,6 +90,7 @@ "137" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -105,10 +105,10 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/6E607EFE-3B47-4B5B-9C8D-18D58C4B7B1C?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/ADD3C3C1-1D57-48D7-871F-381DD5440AA6?api-version=2022-06-15" ], "x-ms-request-id": [ - "5d3524f1-3457-4b2a-b833-37ced7e936ed" + "93fe42ba-5c04-4573-aab9-1f1c2ff9af36" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -117,16 +117,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "18179ddb-1407-402b-8ed1-6aa6b53bc77d" + "5ad16985-9163-45ec-a492-710218b7fd90" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T213939Z:18179ddb-1407-402b-8ed1-6aa6b53bc77d" + "WESTUS2:20221005T224702Z:5ad16985-9163-45ec-a492-710218b7fd90" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:39:38 GMT" + "Wed, 05 Oct 2022 22:47:01 GMT" ], "Content-Length": [ "392" @@ -138,25 +138,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977\",\r\n \"name\": \"PSTestTopic-ps1977\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280\",\r\n \"name\": \"PSTestTopic-ps2280\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/6E607EFE-3B47-4B5B-9C8D-18D58C4B7B1C?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNkU2MDdFRkUtM0I0Ny00QjVCLTlDOEQtMThENThDNEI3QjFDP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/ADD3C3C1-1D57-48D7-871F-381DD5440AA6?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvQUREM0MzQzEtMUQ1Ny00OEQ3LTg3MUYtMzgxREQ1NDQwQUE2P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "28828c37-1cc9-43cf-8ab0-44d8b21f90ed" + "1b27690a-0644-4ed5-9659-e93d4d7b9689" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -168,25 +168,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7a9594f8-e2e3-4719-a876-d25bc2f794a4" + "2c89cec9-d45e-4ec6-a96a-16dfd75c24af" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-correlation-request-id": [ - "ec624732-8544-4681-99f8-36785c41c55b" + "96bdbcb9-d9b9-4a0c-813e-5aa38303ff36" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T213949Z:ec624732-8544-4681-99f8-36785c41c55b" + "WESTUS2:20221005T224712Z:96bdbcb9-d9b9-4a0c-813e-5aa38303ff36" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:39:49 GMT" + "Wed, 05 Oct 2022 22:47:11 GMT" ], "Content-Length": [ "286" @@ -198,25 +198,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/6E607EFE-3B47-4B5B-9C8D-18D58C4B7B1C?api-version=2021-12-01\",\r\n \"name\": \"6e607efe-3b47-4b5b-9c8d-18d58c4b7b1c\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/ADD3C3C1-1D57-48D7-871F-381DD5440AA6?api-version=2022-06-15\",\r\n \"name\": \"add3c3c1-1d57-48d7-871f-381dd5440aa6\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczU5MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMTk3Nz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczU5MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMjI4MD9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "28828c37-1cc9-43cf-8ab0-44d8b21f90ed" + "1b27690a-0644-4ed5-9659-e93d4d7b9689" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -228,28 +228,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "25bbcba0-3aca-44d8-bec5-8eaca9677f90" + "1fdee3a9-0774-4e16-92ab-813ec6621454" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-correlation-request-id": [ - "8e8c1112-b118-44b6-ace1-c21b17cac530" + "dc521cd6-9113-4d33-ac4c-cd781a1a6322" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T213949Z:8e8c1112-b118-44b6-ace1-c21b17cac530" + "WESTUS2:20221005T224712Z:dc521cd6-9113-4d33-ac4c-cd781a1a6322" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:39:49 GMT" + "Wed, 05 Oct 2022 22:47:11 GMT" ], "Content-Length": [ - "522" + "562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -258,28 +258,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps1977.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"38ebb01a-75ad-45c3-8bc6-3a9f47aa390f\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977\",\r\n \"name\": \"PSTestTopic-ps1977\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps2280.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"e7cfe6ab-f4e1-4b1b-b41c-3234646939ae\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280\",\r\n \"name\": \"PSTestTopic-ps2280\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczU5MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMTk3Nz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczU5MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMjI4MD9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7b13687-ffad-4551-8876-4b62bb1a9da9" + "7c9f6219-7ae1-4088-8f49-15b0fbc1b4a6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -291,28 +291,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6e3143b0-29cd-461a-8ea2-85826276ad89" + "424eaa83-0df2-4f34-ae6a-3796f5799242" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11999" ], "x-ms-correlation-request-id": [ - "40f5d144-0bf5-42b9-a785-dfba898479ff" + "9ca8a58c-35e6-414c-a417-a3ae22316efb" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214011Z:40f5d144-0bf5-42b9-a785-dfba898479ff" + "WESTUS2:20221005T224737Z:9ca8a58c-35e6-414c-a417-a3ae22316efb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:40:11 GMT" + "Wed, 05 Oct 2022 22:47:36 GMT" ], "Content-Length": [ - "522" + "562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -321,28 +321,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps1977.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"38ebb01a-75ad-45c3-8bc6-3a9f47aa390f\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977\",\r\n \"name\": \"PSTestTopic-ps1977\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps2280.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"e7cfe6ab-f4e1-4b1b-b41c-3234646939ae\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280\",\r\n \"name\": \"PSTestTopic-ps2280\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczU5MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMTk3Nz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczU5MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMjI4MD9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "538eb9e7-73c8-461a-b391-9769176accd4" + "b851b3a7-b402-44df-8c96-3c268cccb840" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -354,28 +354,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "94f20867-29ce-49fa-9463-0f2f5e75ac6a" + "fb393c2b-0407-4abe-adb4-73f2a83eceac" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11999" ], "x-ms-correlation-request-id": [ - "224706fc-f93b-4077-aa11-4f0a036c8613" + "c168d56e-a10f-4b40-890a-b536cf5b0b59" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214043Z:224706fc-f93b-4077-aa11-4f0a036c8613" + "WESTUS2:20221005T224812Z:c168d56e-a10f-4b40-890a-b536cf5b0b59" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:40:43 GMT" + "Wed, 05 Oct 2022 22:48:12 GMT" ], "Content-Length": [ - "522" + "562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -384,26 +384,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps1977.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"38ebb01a-75ad-45c3-8bc6-3a9f47aa390f\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977\",\r\n \"name\": \"PSTestTopic-ps1977\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps2280.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"e7cfe6ab-f4e1-4b1b-b41c-3234646939ae\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280\",\r\n \"name\": \"PSTestTopic-ps2280\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps9378?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1OTE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczE5NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzOTM3OD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6064?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczIyODAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNjA2ND9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"eventDeliverySchema\": \"EventGridSchema\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "82af9b32-fb3e-4ea0-81c1-42af9675fa19" + "e881f8e9-a303-427b-a831-ef2b6ce79b6b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -412,6 +411,7 @@ "480" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"eventDeliverySchema\": \"EventGridSchema\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -426,10 +426,10 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/84161D7B-E217-434D-89CA-8C03C0CC3C2C?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/78C7637D-5F23-4CCF-8B7C-A38D876D4345?api-version=2022-06-15" ], "x-ms-request-id": [ - "7458515a-545b-40f1-9cee-5cb1d52e1529" + "64b82cd2-9b0f-4e26-834e-16ae5eaa9f42" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -438,16 +438,16 @@ "899" ], "x-ms-correlation-request-id": [ - "61cd3bb9-aef9-43bc-b135-f62b2f622102" + "b02f716f-58c4-47ba-9884-55a13e221f4e" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T213950Z:61cd3bb9-aef9-43bc-b135-f62b2f622102" + "WESTUS2:20221005T224713Z:b02f716f-58c4-47ba-9884-55a13e221f4e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:39:49 GMT" + "Wed, 05 Oct 2022 22:47:13 GMT" ], "Content-Length": [ "863" @@ -459,25 +459,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5919/providers/microsoft.eventgrid/topics/pstesttopic-ps1977\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps9378\",\r\n \"name\": \"EventSubscription-ps9378\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5935/providers/microsoft.eventgrid/topics/pstesttopic-ps2280\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6064\",\r\n \"name\": \"EventSubscription-ps6064\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/84161D7B-E217-434D-89CA-8C03C0CC3C2C?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvODQxNjFEN0ItRTIxNy00MzRELTg5Q0EtOEMwM0MwQ0MzQzJDP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/78C7637D-5F23-4CCF-8B7C-A38D876D4345?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNzhDNzYzN0QtNUYyMy00Q0NGLThCN0MtQTM4RDg3NkQ0MzQ1P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "82af9b32-fb3e-4ea0-81c1-42af9675fa19" + "e881f8e9-a303-427b-a831-ef2b6ce79b6b" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -489,25 +489,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1c112635-5ae7-4e52-b9db-137273aee8fd" + "94d92c1a-0566-4b5f-ae59-45cee49d03de" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11999" ], "x-ms-correlation-request-id": [ - "fc63f730-a9ee-44d2-b0e2-2b1944c0c2d6" + "febc828d-5528-4bfc-a92b-fbcb5dd9cc4e" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214000Z:fc63f730-a9ee-44d2-b0e2-2b1944c0c2d6" + "WESTUS2:20221005T224723Z:febc828d-5528-4bfc-a92b-fbcb5dd9cc4e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:39:59 GMT" + "Wed, 05 Oct 2022 22:47:23 GMT" ], "Content-Length": [ "286" @@ -519,25 +519,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/84161D7B-E217-434D-89CA-8C03C0CC3C2C?api-version=2021-12-01\",\r\n \"name\": \"84161d7b-e217-434d-89ca-8c03c0cc3c2c\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/78C7637D-5F23-4CCF-8B7C-A38D876D4345?api-version=2022-06-15\",\r\n \"name\": \"78c7637d-5f23-4ccf-8b7c-a38d876d4345\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps9378?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1OTE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczE5NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzOTM3OD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6064?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczIyODAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNjA2ND9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "82af9b32-fb3e-4ea0-81c1-42af9675fa19" + "e881f8e9-a303-427b-a831-ef2b6ce79b6b" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -549,25 +549,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2c21ef35-5190-4196-aa5c-a5c229261498" + "6d7c859c-fcd4-4532-be7b-ce10d74ed89f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11998" ], "x-ms-correlation-request-id": [ - "9d795854-796d-4dd2-8cf9-1cb337c0b8e8" + "e31d1167-f4a7-4bf8-99e2-15a0fc2da3d8" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214000Z:9d795854-796d-4dd2-8cf9-1cb337c0b8e8" + "WESTUS2:20221005T224723Z:e31d1167-f4a7-4bf8-99e2-15a0fc2da3d8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:40:00 GMT" + "Wed, 05 Oct 2022 22:47:23 GMT" ], "Content-Length": [ "965" @@ -579,28 +579,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5919/providers/microsoft.eventgrid/topics/pstesttopic-ps1977\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps9378\",\r\n \"name\": \"EventSubscription-ps9378\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5935/providers/microsoft.eventgrid/topics/pstesttopic-ps2280\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6064\",\r\n \"name\": \"EventSubscription-ps6064\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps9378?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1OTE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczE5NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzOTM3OD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6064?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczIyODAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNjA2ND9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a47086d6-d2d5-46f7-8939-8151fbd4524f" + "06f20b4d-cda7-474e-96c6-0174d79bc554" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -612,25 +612,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2b5c753b-5011-4fc6-9703-b1ee6a503aa6" + "c456f067-9235-42c5-8c9c-a1e0db87a9bb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11999" ], "x-ms-correlation-request-id": [ - "aaee2c3f-63aa-4a44-8255-4ab9bd6f5f30" + "72f78a1c-23e0-4413-be82-25ebdba86234" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214011Z:aaee2c3f-63aa-4a44-8255-4ab9bd6f5f30" + "WESTUS2:20221005T224735Z:72f78a1c-23e0-4413-be82-25ebdba86234" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:40:10 GMT" + "Wed, 05 Oct 2022 22:47:35 GMT" ], "Content-Length": [ "965" @@ -642,28 +642,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5919/providers/microsoft.eventgrid/topics/pstesttopic-ps1977\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps9378\",\r\n \"name\": \"EventSubscription-ps9378\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5935/providers/microsoft.eventgrid/topics/pstesttopic-ps2280\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6064\",\r\n \"name\": \"EventSubscription-ps6064\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps9378?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1OTE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczE5NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzOTM3OD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6064?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczIyODAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNjA2ND9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "87bdd733-3722-467f-ab4d-530d622ec129" + "dc4eeae3-f439-4983-96c4-d56cc8e51b7c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -675,25 +675,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1dbb54f8-c9a1-4d36-adf9-d7e1ff3076e9" + "48434086-8150-43f7-ad2b-ed66f6f98c04" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11999" ], "x-ms-correlation-request-id": [ - "b62a964b-4c96-472c-86d0-38b28f43f141" + "31fa9cce-2312-4bf2-96b0-a0683cc1dad7" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214011Z:b62a964b-4c96-472c-86d0-38b28f43f141" + "WESTUS2:20221005T224738Z:31fa9cce-2312-4bf2-96b0-a0683cc1dad7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:40:11 GMT" + "Wed, 05 Oct 2022 22:47:37 GMT" ], "Content-Length": [ "965" @@ -705,25 +705,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5919/providers/microsoft.eventgrid/topics/pstesttopic-ps1977\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps9378\",\r\n \"name\": \"EventSubscription-ps9378\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5935/providers/microsoft.eventgrid/topics/pstesttopic-ps2280\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6064\",\r\n \"name\": \"EventSubscription-ps6064\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps9378?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1OTE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczE5NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzOTM3OD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6064?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczIyODAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNjA2ND9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "87bdd733-3722-467f-ab4d-530d622ec129" + "dc4eeae3-f439-4983-96c4-d56cc8e51b7c" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -735,25 +735,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "27ec2ea0-2a7a-43c8-94fb-b7aaceb2aa40" + "1813c07f-2c61-414d-b2a2-ae5757f74bb0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11997" ], "x-ms-correlation-request-id": [ - "3e6ee00c-0102-4f0b-9672-2b4e9cde2c38" + "f387b499-81a4-4487-88ab-52b863efebc4" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214022Z:3e6ee00c-0102-4f0b-9672-2b4e9cde2c38" + "WESTUS2:20221005T224749Z:f387b499-81a4-4487-88ab-52b863efebc4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:40:21 GMT" + "Wed, 05 Oct 2022 22:47:48 GMT" ], "Content-Length": [ "929" @@ -765,26 +765,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5919/providers/microsoft.eventgrid/topics/pstesttopic-ps1977\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 502,\r\n \"preferredBatchSizeInKilobytes\": 1010\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps9378\",\r\n \"name\": \"EventSubscription-ps9378\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5935/providers/microsoft.eventgrid/topics/pstesttopic-ps2280\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 502,\r\n \"preferredBatchSizeInKilobytes\": 1010\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6064\",\r\n \"name\": \"EventSubscription-ps6064\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7510?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1OTE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczE5NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNzUxMD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6435?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczIyODAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNjQzNT9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\",\r\n \"maxEventsPerBatch\": 1002,\r\n \"preferredBatchSizeInKilobytes\": 1000\r\n }\r\n },\r\n \"filter\": {\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6d28a7f7-5dd9-4ab0-ab6d-b4e237216ebb" + "617ee430-29d1-4037-a4d1-2a0b24d0fef9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -793,6 +792,7 @@ "627" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\",\r\n \"maxEventsPerBatch\": 1002,\r\n \"preferredBatchSizeInKilobytes\": 1000\r\n }\r\n },\r\n \"filter\": {\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10\r\n }\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -807,28 +807,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/9AA06423-0635-4091-B3F2-E6F50D0C4986?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/73186346-BBE1-4FDC-A749-16F573BB299C?api-version=2022-06-15" ], "x-ms-request-id": [ - "b3aab140-f2bd-44f0-b819-d2bdbb3065f6" + "508eb7f4-b086-4ab5-b445-a6793388318e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "898" + "899" ], "x-ms-correlation-request-id": [ - "af70dd34-4ed0-4a2f-9dc5-e1875cf56374" + "a34a8248-6bd4-4c0f-8c12-44482000de6c" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214000Z:af70dd34-4ed0-4a2f-9dc5-e1875cf56374" + "WESTUS2:20221005T224724Z:a34a8248-6bd4-4c0f-8c12-44482000de6c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:40:00 GMT" + "Wed, 05 Oct 2022 22:47:23 GMT" ], "Content-Length": [ "925" @@ -840,25 +840,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5919/providers/microsoft.eventgrid/topics/pstesttopic-ps1977\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1002,\r\n \"preferredBatchSizeInKilobytes\": 1000\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7510\",\r\n \"name\": \"EventSubscription-ps7510\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5935/providers/microsoft.eventgrid/topics/pstesttopic-ps2280\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1002,\r\n \"preferredBatchSizeInKilobytes\": 1000\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6435\",\r\n \"name\": \"EventSubscription-ps6435\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/9AA06423-0635-4091-B3F2-E6F50D0C4986?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvOUFBMDY0MjMtMDYzNS00MDkxLUIzRjItRTZGNTBEMEM0OTg2P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/73186346-BBE1-4FDC-A749-16F573BB299C?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNzMxODYzNDYtQkJFMS00RkRDLUE3NDktMTZGNTczQkIyOTlDP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d28a7f7-5dd9-4ab0-ab6d-b4e237216ebb" + "617ee430-29d1-4037-a4d1-2a0b24d0fef9" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -870,25 +870,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8aa83dae-2b4f-433f-ba7d-717d87e4cd1a" + "d0d597b9-6229-47d1-b657-ae62907accfd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11999" ], "x-ms-correlation-request-id": [ - "e63008d9-5918-4b97-bb79-cd6a533fcf68" + "f33fc184-8af0-40aa-9bd8-d0502090414b" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214010Z:e63008d9-5918-4b97-bb79-cd6a533fcf68" + "WESTUS2:20221005T224734Z:f33fc184-8af0-40aa-9bd8-d0502090414b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:40:10 GMT" + "Wed, 05 Oct 2022 22:47:34 GMT" ], "Content-Length": [ "286" @@ -900,25 +900,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/9AA06423-0635-4091-B3F2-E6F50D0C4986?api-version=2021-12-01\",\r\n \"name\": \"9aa06423-0635-4091-b3f2-e6f50d0c4986\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/73186346-BBE1-4FDC-A749-16F573BB299C?api-version=2022-06-15\",\r\n \"name\": \"73186346-bbe1-4fdc-a749-16f573bb299c\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7510?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1OTE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczE5NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNzUxMD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6435?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczIyODAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNjQzNT9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d28a7f7-5dd9-4ab0-ab6d-b4e237216ebb" + "617ee430-29d1-4037-a4d1-2a0b24d0fef9" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -930,25 +930,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ca60ffa4-6a31-455d-a999-1021954a5a33" + "2f665004-0029-4df1-b1c1-93d44e0e2a16" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11998" ], "x-ms-correlation-request-id": [ - "8d5ae66e-2a4e-4e3d-88eb-5202ae6ca08f" + "2992cfeb-13a3-475b-99b7-caa60f35fecb" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214010Z:8d5ae66e-2a4e-4e3d-88eb-5202ae6ca08f" + "WESTUS2:20221005T224734Z:2992cfeb-13a3-475b-99b7-caa60f35fecb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:40:10 GMT" + "Wed, 05 Oct 2022 22:47:34 GMT" ], "Content-Length": [ "970" @@ -960,28 +960,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5919/providers/microsoft.eventgrid/topics/pstesttopic-ps1977\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1002,\r\n \"preferredBatchSizeInKilobytes\": 1000\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7510\",\r\n \"name\": \"EventSubscription-ps7510\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5935/providers/microsoft.eventgrid/topics/pstesttopic-ps2280\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1002,\r\n \"preferredBatchSizeInKilobytes\": 1000\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6435\",\r\n \"name\": \"EventSubscription-ps6435\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7510?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1OTE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczE5NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNzUxMD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6435?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczIyODAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNjQzNT9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b236bb0-f88a-4fba-b8e4-c882230af8ca" + "41f47a0f-55e7-442e-a1cf-76de003a5eed" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -993,25 +993,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "524c9f10-0b38-4102-87d0-2234b06ea733" + "c0643cdf-d34b-47ff-98cc-53b93effc4d0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11999" ], "x-ms-correlation-request-id": [ - "ecef7d6a-a8b9-4822-b709-c014f8cba3d8" + "da6adf08-b86a-4a3f-9b5b-1bcb117d5cab" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214011Z:ecef7d6a-a8b9-4822-b709-c014f8cba3d8" + "WESTUS2:20221005T224736Z:da6adf08-b86a-4a3f-9b5b-1bcb117d5cab" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:40:10 GMT" + "Wed, 05 Oct 2022 22:47:36 GMT" ], "Content-Length": [ "970" @@ -1023,28 +1023,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5919/providers/microsoft.eventgrid/topics/pstesttopic-ps1977\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1002,\r\n \"preferredBatchSizeInKilobytes\": 1000\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7510\",\r\n \"name\": \"EventSubscription-ps7510\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5935/providers/microsoft.eventgrid/topics/pstesttopic-ps2280\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1002,\r\n \"preferredBatchSizeInKilobytes\": 1000\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6435\",\r\n \"name\": \"EventSubscription-ps6435\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7510?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1OTE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczE5NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNzUxMD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6435?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczIyODAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNjQzNT9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7b13687-ffad-4551-8876-4b62bb1a9da9" + "7c9f6219-7ae1-4088-8f49-15b0fbc1b4a6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1056,25 +1056,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cdf022c2-21ee-4962-bd97-9b60923b6213" + "7677eabe-116a-47ec-9b71-89a5715a38c5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11999" ], "x-ms-correlation-request-id": [ - "78341b17-c08d-4c29-95f6-4faacbcbe5a3" + "b3067d40-ee4b-4b25-be31-3362b70b77a3" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214011Z:78341b17-c08d-4c29-95f6-4faacbcbe5a3" + "WESTUS2:20221005T224737Z:b3067d40-ee4b-4b25-be31-3362b70b77a3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:40:11 GMT" + "Wed, 05 Oct 2022 22:47:36 GMT" ], "Content-Length": [ "970" @@ -1086,28 +1086,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5919/providers/microsoft.eventgrid/topics/pstesttopic-ps1977\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1002,\r\n \"preferredBatchSizeInKilobytes\": 1000\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7510\",\r\n \"name\": \"EventSubscription-ps7510\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5935/providers/microsoft.eventgrid/topics/pstesttopic-ps2280\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1002,\r\n \"preferredBatchSizeInKilobytes\": 1000\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6435\",\r\n \"name\": \"EventSubscription-ps6435\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7510?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1OTE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczE5NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNzUxMD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6435?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczIyODAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNjQzNT9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05cf6385-1ed3-4865-8d6c-4f5ab3ccad46" + "b0376a16-bd58-4c5a-a9ce-d993526e2c36" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1119,25 +1119,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5ed7f94b-e0ec-4b00-8f80-c6b01edd1df4" + "d1faccf8-0ac4-4395-af86-3cdf3f732473" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11999" ], "x-ms-correlation-request-id": [ - "89f88524-c6f5-4937-a977-6bfc0cb5c275" + "e12fb7a2-9e65-4833-8791-7a927bc4ff17" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214022Z:89f88524-c6f5-4937-a977-6bfc0cb5c275" + "WESTUS2:20221005T224750Z:e12fb7a2-9e65-4833-8791-7a927bc4ff17" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:40:21 GMT" + "Wed, 05 Oct 2022 22:47:49 GMT" ], "Content-Length": [ "970" @@ -1149,25 +1149,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5919/providers/microsoft.eventgrid/topics/pstesttopic-ps1977\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1002,\r\n \"preferredBatchSizeInKilobytes\": 1000\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7510\",\r\n \"name\": \"EventSubscription-ps7510\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5935/providers/microsoft.eventgrid/topics/pstesttopic-ps2280\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1002,\r\n \"preferredBatchSizeInKilobytes\": 1000\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6435\",\r\n \"name\": \"EventSubscription-ps6435\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7510?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1OTE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczE5NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNzUxMD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6435?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczIyODAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNjQzNT9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05cf6385-1ed3-4865-8d6c-4f5ab3ccad46" + "b0376a16-bd58-4c5a-a9ce-d993526e2c36" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1179,25 +1179,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "67ccf4ba-dbca-4bca-9b3a-7634a4e917ee" + "fb92aa9f-e9a9-469d-a76a-0cb2a143c781" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11997" ], "x-ms-correlation-request-id": [ - "229239c2-a2dd-49d2-a9ca-ad5241d739cc" + "a2e57ae0-4a7c-429d-9f0b-48a29c913d29" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214033Z:229239c2-a2dd-49d2-a9ca-ad5241d739cc" + "WESTUS2:20221005T224800Z:a2e57ae0-4a7c-429d-9f0b-48a29c913d29" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:40:33 GMT" + "Wed, 05 Oct 2022 22:48:00 GMT" ], "Content-Length": [ "928" @@ -1209,28 +1209,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5919/providers/microsoft.eventgrid/topics/pstesttopic-ps1977\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1002,\r\n \"preferredBatchSizeInKilobytes\": 1000\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 20,\r\n \"eventTimeToLiveInMinutes\": 10\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7510\",\r\n \"name\": \"EventSubscription-ps7510\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5935/providers/microsoft.eventgrid/topics/pstesttopic-ps2280\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1002,\r\n \"preferredBatchSizeInKilobytes\": 1000\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 20,\r\n \"eventTimeToLiveInMinutes\": 10\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6435\",\r\n \"name\": \"EventSubscription-ps6435\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps9378/getFullUrl?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1OTE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczE5NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzOTM3OC9nZXRGdWxsVXJsP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6064/getFullUrl?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczIyODAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNjA2NC9nZXRGdWxsVXJsP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a47086d6-d2d5-46f7-8939-8151fbd4524f" + "06f20b4d-cda7-474e-96c6-0174d79bc554" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1242,7 +1242,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "57f54fa9-71bd-45c0-9e34-488bf7f0ff02" + "3cfc0223-6b77-4556-ae72-a0ac7a64447c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1251,16 +1251,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "4722e244-2435-4198-8a7c-423f6f06d932" + "bb642f8e-677e-4964-a55d-3ba7b37fb678" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214011Z:4722e244-2435-4198-8a7c-423f6f06d932" + "WESTUS2:20221005T224735Z:bb642f8e-677e-4964-a55d-3ba7b37fb678" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:40:10 GMT" + "Wed, 05 Oct 2022 22:47:35 GMT" ], "Content-Length": [ "188" @@ -1276,24 +1276,24 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7510/getFullUrl?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1OTE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczE5NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNzUxMC9nZXRGdWxsVXJsP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6435/getFullUrl?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczIyODAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNjQzNS9nZXRGdWxsVXJsP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b236bb0-f88a-4fba-b8e4-c882230af8ca" + "41f47a0f-55e7-442e-a1cf-76de003a5eed" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1305,25 +1305,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9da6c234-dda4-42ea-8668-db5854c9935a" + "14ff2527-6d4f-4895-beb2-c83d57602c9a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "c3693700-e208-4c9f-9fe1-476a45ee225a" + "7bf03f39-8317-455e-a93a-7feb35a06e0a" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214011Z:c3693700-e208-4c9f-9fe1-476a45ee225a" + "WESTUS2:20221005T224736Z:7bf03f39-8317-455e-a93a-7feb35a06e0a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:40:10 GMT" + "Wed, 05 Oct 2022 22:47:36 GMT" ], "Content-Length": [ "188" @@ -1339,24 +1339,24 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7510/getFullUrl?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1OTE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczE5NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNzUxMC9nZXRGdWxsVXJsP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6435/getFullUrl?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczIyODAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNjQzNS9nZXRGdWxsVXJsP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7b13687-ffad-4551-8876-4b62bb1a9da9" + "7c9f6219-7ae1-4088-8f49-15b0fbc1b4a6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1368,25 +1368,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c2bd3c2b-a753-4eab-99a8-a0b952541496" + "5a229aa8-8d1d-41c1-ba98-2d83822f9031" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "10c456c0-9915-45eb-96a3-59ef45d8e341" + "d5239c38-e80f-4b57-9505-7bd768e1a5ed" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214011Z:10c456c0-9915-45eb-96a3-59ef45d8e341" + "WESTUS2:20221005T224737Z:d5239c38-e80f-4b57-9505-7bd768e1a5ed" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:40:11 GMT" + "Wed, 05 Oct 2022 22:47:36 GMT" ], "Content-Length": [ "188" @@ -1402,22 +1402,21 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps9378?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1OTE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczE5NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzOTM3OD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6064?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczIyODAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNjA2ND9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\",\r\n \"maxEventsPerBatch\": 502,\r\n \"preferredBatchSizeInKilobytes\": 1010\r\n }\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "87bdd733-3722-467f-ab4d-530d622ec129" + "dc4eeae3-f439-4983-96c4-d56cc8e51b7c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1426,6 +1425,7 @@ "537" ] }, + "RequestBody": "{\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\",\r\n \"maxEventsPerBatch\": 502,\r\n \"preferredBatchSizeInKilobytes\": 1010\r\n }\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1440,28 +1440,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/343FADC1-1AC1-4B76-9B0D-D9EE28813507?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/2B94CCDA-3328-4560-B37B-8B33E3B0278D?api-version=2022-06-15" ], "x-ms-request-id": [ - "770051fe-c8de-4864-9df6-e982ae41564b" + "9f2c5889-fb12-4501-8d95-797d9be99244" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "897" + "899" ], "x-ms-correlation-request-id": [ - "e961b3d8-a7ee-4e49-9a3c-21c4950b97ca" + "1ba0bbcc-6e86-4462-a585-ac87ff24de30" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214012Z:e961b3d8-a7ee-4e49-9a3c-21c4950b97ca" + "WESTUS2:20221005T224738Z:1ba0bbcc-6e86-4462-a585-ac87ff24de30" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:40:11 GMT" + "Wed, 05 Oct 2022 22:47:38 GMT" ], "Content-Length": [ "928" @@ -1473,25 +1473,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5919/providers/microsoft.eventgrid/topics/pstesttopic-ps1977\",\r\n \"provisioningState\": \"Updating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 502,\r\n \"preferredBatchSizeInKilobytes\": 1010\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps9378\",\r\n \"name\": \"EventSubscription-ps9378\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5935/providers/microsoft.eventgrid/topics/pstesttopic-ps2280\",\r\n \"provisioningState\": \"Updating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 502,\r\n \"preferredBatchSizeInKilobytes\": 1010\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6064\",\r\n \"name\": \"EventSubscription-ps6064\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/343FADC1-1AC1-4B76-9B0D-D9EE28813507?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMzQzRkFEQzEtMUFDMS00Qjc2LTlCMEQtRDlFRTI4ODEzNTA3P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/2B94CCDA-3328-4560-B37B-8B33E3B0278D?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMkI5NENDREEtMzMyOC00NTYwLUIzN0ItOEIzM0UzQjAyNzhEP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "87bdd733-3722-467f-ab4d-530d622ec129" + "dc4eeae3-f439-4983-96c4-d56cc8e51b7c" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1503,25 +1503,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9009ed2d-5c8e-49df-a3b4-38dcf1f3a2aa" + "a9974f30-a88c-4569-b754-65735fd31a86" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11998" ], "x-ms-correlation-request-id": [ - "473195a3-3780-44ac-8ca6-a70b741e531c" + "361de776-0b47-4537-b343-7268b64c7dcf" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214022Z:473195a3-3780-44ac-8ca6-a70b741e531c" + "WESTUS2:20221005T224749Z:361de776-0b47-4537-b343-7268b64c7dcf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:40:21 GMT" + "Wed, 05 Oct 2022 22:47:48 GMT" ], "Content-Length": [ "286" @@ -1533,26 +1533,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/343FADC1-1AC1-4B76-9B0D-D9EE28813507?api-version=2021-12-01\",\r\n \"name\": \"343fadc1-1ac1-4b76-9b0d-d9ee28813507\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/2B94CCDA-3328-4560-B37B-8B33E3B0278D?api-version=2022-06-15\",\r\n \"name\": \"2b94ccda-3328-4560-b37b-8b33e3b0278d\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7510?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1OTE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczE5NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNzUxMD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6435?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczIyODAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNjQzNT9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\",\r\n \"maxEventsPerBatch\": 1002,\r\n \"preferredBatchSizeInKilobytes\": 1000\r\n }\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 20,\r\n \"eventTimeToLiveInMinutes\": 10\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "05cf6385-1ed3-4865-8d6c-4f5ab3ccad46" + "b0376a16-bd58-4c5a-a9ce-d993526e2c36" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1561,6 +1560,7 @@ "536" ] }, + "RequestBody": "{\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\",\r\n \"maxEventsPerBatch\": 1002,\r\n \"preferredBatchSizeInKilobytes\": 1000\r\n }\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 20,\r\n \"eventTimeToLiveInMinutes\": 10\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1575,28 +1575,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/2CF54043-393D-46F5-AEBD-85B2B9ACC1D9?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/8838BF4C-CF82-4CD3-8836-B2938D02BB11?api-version=2022-06-15" ], "x-ms-request-id": [ - "82c6fb35-b7b4-4d42-801b-f0a1dc35ffa2" + "d686f055-b2d5-4a69-9b3f-95becf238e07" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "896" + "899" ], "x-ms-correlation-request-id": [ - "0247c421-fddb-4b95-9d71-9bbf065cd7ea" + "6591496e-361b-42a7-aaeb-89642c97e3de" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214022Z:0247c421-fddb-4b95-9d71-9bbf065cd7ea" + "WESTUS2:20221005T224750Z:6591496e-361b-42a7-aaeb-89642c97e3de" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:40:22 GMT" + "Wed, 05 Oct 2022 22:47:50 GMT" ], "Content-Length": [ "927" @@ -1608,25 +1608,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5919/providers/microsoft.eventgrid/topics/pstesttopic-ps1977\",\r\n \"provisioningState\": \"Updating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1002,\r\n \"preferredBatchSizeInKilobytes\": 1000\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 20,\r\n \"eventTimeToLiveInMinutes\": 10\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7510\",\r\n \"name\": \"EventSubscription-ps7510\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5935/providers/microsoft.eventgrid/topics/pstesttopic-ps2280\",\r\n \"provisioningState\": \"Updating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1002,\r\n \"preferredBatchSizeInKilobytes\": 1000\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 20,\r\n \"eventTimeToLiveInMinutes\": 10\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6435\",\r\n \"name\": \"EventSubscription-ps6435\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/2CF54043-393D-46F5-AEBD-85B2B9ACC1D9?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMkNGNTQwNDMtMzkzRC00NkY1LUFFQkQtODVCMkI5QUNDMUQ5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/8838BF4C-CF82-4CD3-8836-B2938D02BB11?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvODgzOEJGNEMtQ0Y4Mi00Q0QzLTg4MzYtQjI5MzhEMDJCQjExP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05cf6385-1ed3-4865-8d6c-4f5ab3ccad46" + "b0376a16-bd58-4c5a-a9ce-d993526e2c36" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1638,25 +1638,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "093cd7fa-ed6d-407b-93cc-a24aa8fa5710" + "db142b1c-3917-4538-a378-7496c2be5feb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11998" ], "x-ms-correlation-request-id": [ - "8b15dcbe-26d0-45f4-9835-2d3c58d569c1" + "6870b279-f337-470a-9b02-2d475c5ce38c" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214032Z:8b15dcbe-26d0-45f4-9835-2d3c58d569c1" + "WESTUS2:20221005T224800Z:6870b279-f337-470a-9b02-2d475c5ce38c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:40:31 GMT" + "Wed, 05 Oct 2022 22:48:00 GMT" ], "Content-Length": [ "286" @@ -1668,28 +1668,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/2CF54043-393D-46F5-AEBD-85B2B9ACC1D9?api-version=2021-12-01\",\r\n \"name\": \"2cf54043-393d-46f5-aebd-85b2b9acc1d9\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/8838BF4C-CF82-4CD3-8836-B2938D02BB11?api-version=2022-06-15\",\r\n \"name\": \"8838bf4c-cf82-4cd3-8836-b2938d02bb11\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps9378?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1OTE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczE5NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzOTM3OD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6064?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczIyODAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNjA2ND9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e80dc2d3-22cc-4834-8efb-c0e8cfebbaed" + "b3617c89-c67b-41d2-9a61-8ad1bbdaf8c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1698,7 +1698,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/D6FFE5CE-ADAB-419E-A16E-F65A6DEE0045?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/2F5FE86D-148A-4D6E-BC38-9FF274FD87CB?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -1707,7 +1707,7 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/D6FFE5CE-ADAB-419E-A16E-F65A6DEE0045?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/2F5FE86D-148A-4D6E-BC38-9FF274FD87CB?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1716,19 +1716,19 @@ "14999" ], "x-ms-request-id": [ - "e8b090f4-0ee8-4062-9b80-3dcb8ee51131" + "88ff6189-4a59-40bd-a1b6-8af3e9eb9fbd" ], "x-ms-correlation-request-id": [ - "e8b090f4-0ee8-4062-9b80-3dcb8ee51131" + "88ff6189-4a59-40bd-a1b6-8af3e9eb9fbd" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214033Z:e8b090f4-0ee8-4062-9b80-3dcb8ee51131" + "WESTUS2:20221005T224802Z:88ff6189-4a59-40bd-a1b6-8af3e9eb9fbd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:40:33 GMT" + "Wed, 05 Oct 2022 22:48:01 GMT" ], "Expires": [ "-1" @@ -1741,21 +1741,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/D6FFE5CE-ADAB-419E-A16E-F65A6DEE0045?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRDZGRkU1Q0UtQURBQi00MTlFLUExNkUtRjY1QTZERUUwMDQ1P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/2F5FE86D-148A-4D6E-BC38-9FF274FD87CB?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMkY1RkU4NkQtMTQ4QS00RDZFLUJDMzgtOUZGMjc0RkQ4N0NCP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e80dc2d3-22cc-4834-8efb-c0e8cfebbaed" + "b3617c89-c67b-41d2-9a61-8ad1bbdaf8c0" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1767,25 +1767,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e97f0462-8fce-4cae-ad29-0c38f4cc7420" + "98285c0b-f76f-4dff-9eff-2a0d606f5086" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11999" ], "x-ms-correlation-request-id": [ - "2b4ceddc-8f7e-489d-b91f-5ed9ae80ad53" + "62b1581b-7200-4e07-b280-e0b5b9d85f12" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214043Z:2b4ceddc-8f7e-489d-b91f-5ed9ae80ad53" + "WESTUS2:20221005T224812Z:62b1581b-7200-4e07-b280-e0b5b9d85f12" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:40:43 GMT" + "Wed, 05 Oct 2022 22:48:11 GMT" ], "Content-Length": [ "286" @@ -1797,25 +1797,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/D6FFE5CE-ADAB-419E-A16E-F65A6DEE0045?api-version=2021-12-01\",\r\n \"name\": \"d6ffe5ce-adab-419e-a16e-f65a6dee0045\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/2F5FE86D-148A-4D6E-BC38-9FF274FD87CB?api-version=2022-06-15\",\r\n \"name\": \"2f5fe86d-148a-4d6e-bc38-9ff274fd87cb\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/D6FFE5CE-ADAB-419E-A16E-F65A6DEE0045?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvRDZGRkU1Q0UtQURBQi00MTlFLUExNkUtRjY1QTZERUUwMDQ1P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/2F5FE86D-148A-4D6E-BC38-9FF274FD87CB?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMkY1RkU4NkQtMTQ4QS00RDZFLUJDMzgtOUZGMjc0RkQ4N0NCP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e80dc2d3-22cc-4834-8efb-c0e8cfebbaed" + "b3617c89-c67b-41d2-9a61-8ad1bbdaf8c0" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1827,25 +1827,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ed0af862-551e-4f98-9529-90f9296d3fad" + "5220f473-cbdc-43bd-a5b4-b5ccd80d007c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11998" ], "x-ms-correlation-request-id": [ - "478c710a-00de-4362-9ad1-f61ca540ac48" + "14a4cc49-faab-4299-a3ab-c5270eb142d7" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214043Z:478c710a-00de-4362-9ad1-f61ca540ac48" + "WESTUS2:20221005T224812Z:14a4cc49-faab-4299-a3ab-c5270eb142d7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:40:43 GMT" + "Wed, 05 Oct 2022 22:48:11 GMT" ], "Expires": [ "-1" @@ -1858,24 +1858,24 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7510?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1OTE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczE5NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNzUxMD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6435?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9QU1Rlc3RUb3BpYy1wczIyODAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzNjQzNT9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "538eb9e7-73c8-461a-b391-9769176accd4" + "b851b3a7-b402-44df-8c96-3c268cccb840" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1884,7 +1884,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/2868E6EE-2B44-4731-B326-14950D732BF1?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/3FBA8D37-64E5-402B-B1C9-31FD5D999EF6?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -1893,28 +1893,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/2868E6EE-2B44-4731-B326-14950D732BF1?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/3FBA8D37-64E5-402B-B1C9-31FD5D999EF6?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-request-id": [ - "f0e79ded-0890-4197-8fca-ca4bf3c70a30" + "09818e95-df4f-4af9-939c-a31f2bee0328" ], "x-ms-correlation-request-id": [ - "f0e79ded-0890-4197-8fca-ca4bf3c70a30" + "09818e95-df4f-4af9-939c-a31f2bee0328" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214044Z:f0e79ded-0890-4197-8fca-ca4bf3c70a30" + "WESTUS2:20221005T224813Z:09818e95-df4f-4af9-939c-a31f2bee0328" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:40:43 GMT" + "Wed, 05 Oct 2022 22:48:13 GMT" ], "Expires": [ "-1" @@ -1927,21 +1927,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/2868E6EE-2B44-4731-B326-14950D732BF1?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMjg2OEU2RUUtMkI0NC00NzMxLUIzMjYtMTQ5NTBENzMyQkYxP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/3FBA8D37-64E5-402B-B1C9-31FD5D999EF6?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvM0ZCQThEMzctNjRFNS00MDJCLUIxQzktMzFGRDVEOTk5RUY2P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "538eb9e7-73c8-461a-b391-9769176accd4" + "b851b3a7-b402-44df-8c96-3c268cccb840" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1953,25 +1953,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0d7f070e-53a9-4b05-a3c9-97598e363532" + "9419bcde-ec7e-4fd4-9dd5-a5e570123013" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11999" ], "x-ms-correlation-request-id": [ - "4129d63e-7c44-468f-ba7d-0248ee15def9" + "84f4ce05-7711-4ebe-9440-e00cdc2f1769" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214054Z:4129d63e-7c44-468f-ba7d-0248ee15def9" + "WESTUS2:20221005T224824Z:84f4ce05-7711-4ebe-9440-e00cdc2f1769" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:40:53 GMT" + "Wed, 05 Oct 2022 22:48:23 GMT" ], "Content-Length": [ "286" @@ -1983,25 +1983,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/2868E6EE-2B44-4731-B326-14950D732BF1?api-version=2021-12-01\",\r\n \"name\": \"2868e6ee-2b44-4731-b326-14950d732bf1\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/3FBA8D37-64E5-402B-B1C9-31FD5D999EF6?api-version=2022-06-15\",\r\n \"name\": \"3fba8d37-64e5-402b-b1c9-31fd5d999ef6\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/2868E6EE-2B44-4731-B326-14950D732BF1?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMjg2OEU2RUUtMkI0NC00NzMxLUIzMjYtMTQ5NTBENzMyQkYxP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/3FBA8D37-64E5-402B-B1C9-31FD5D999EF6?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvM0ZCQThEMzctNjRFNS00MDJCLUIxQzktMzFGRDVEOTk5RUY2P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "538eb9e7-73c8-461a-b391-9769176accd4" + "b851b3a7-b402-44df-8c96-3c268cccb840" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2013,25 +2013,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6ae7cd3c-4330-408b-8e7b-93e40a1999d7" + "46a4b8ba-e304-41d0-bd26-516a2b8aa6f8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11998" ], "x-ms-correlation-request-id": [ - "38845ac2-b8f3-4c6f-9c47-0700d831e542" + "a380560b-479b-48e9-a4dd-9efc15192754" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214054Z:38845ac2-b8f3-4c6f-9c47-0700d831e542" + "WESTUS2:20221005T224824Z:a380560b-479b-48e9-a4dd-9efc15192754" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:40:53 GMT" + "Wed, 05 Oct 2022 22:48:23 GMT" ], "Expires": [ "-1" @@ -2044,24 +2044,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5919/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1977/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczU5MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMTk3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5935/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2280/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczU5MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMjI4MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "766ebeb4-4466-43b2-a413-4225f6833057" + "433767aa-9d44-4cbb-8126-6eb2caf558e1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2073,25 +2073,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "85959de2-3c65-4b1d-a0dd-3a1715ab05aa" + "b08dd4d2-2873-4bb3-963d-124960b024e3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11999" ], "x-ms-correlation-request-id": [ - "627a51a2-acc5-4642-95ca-306ee8b85cee" + "56365a18-6782-4156-8b76-79c20aa3475b" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214054Z:627a51a2-acc5-4642-95ca-306ee8b85cee" + "WESTUS2:20221005T224824Z:56365a18-6782-4156-8b76-79c20aa3475b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:40:53 GMT" + "Wed, 05 Oct 2022 22:48:23 GMT" ], "Content-Length": [ "12" @@ -2107,24 +2107,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps5919?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczU5MTk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps5935?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczU5MzU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a6089df-299f-4a5b-adb9-1fb57a8d0fc5" + "57104730-4bca-4c5b-8fa3-aab02cb23240" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2133,7 +2133,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzU5MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzU5MzUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2142,13 +2142,13 @@ "14999" ], "x-ms-request-id": [ - "fc5c96d9-a973-42db-a8cb-c85a3203b6b6" + "ee8b4584-895d-4118-9786-45a7b092f49a" ], "x-ms-correlation-request-id": [ - "fc5c96d9-a973-42db-a8cb-c85a3203b6b6" + "ee8b4584-895d-4118-9786-45a7b092f49a" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214055Z:fc5c96d9-a973-42db-a8cb-c85a3203b6b6" + "WESTUS2:20221005T224825Z:ee8b4584-895d-4118-9786-45a7b092f49a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2157,7 +2157,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:40:54 GMT" + "Wed, 05 Oct 2022 22:48:24 GMT" ], "Expires": [ "-1" @@ -2170,18 +2170,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzU5MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpVNU1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzU5MzUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpVNU16VXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2190,7 +2190,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzU5MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzU5MzUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2199,13 +2199,13 @@ "11999" ], "x-ms-request-id": [ - "f755a2c5-36b7-44e0-8083-8055de841ef1" + "064c2eab-2bb0-47a2-a8b6-74a9549fe03f" ], "x-ms-correlation-request-id": [ - "f755a2c5-36b7-44e0-8083-8055de841ef1" + "064c2eab-2bb0-47a2-a8b6-74a9549fe03f" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214110Z:f755a2c5-36b7-44e0-8083-8055de841ef1" + "WESTUS2:20221005T224840Z:064c2eab-2bb0-47a2-a8b6-74a9549fe03f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2214,7 +2214,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:41:09 GMT" + "Wed, 05 Oct 2022 22:48:39 GMT" ], "Expires": [ "-1" @@ -2227,18 +2227,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzU5MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpVNU1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzU5MzUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpVNU16VXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2247,7 +2247,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzU5MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzU5MzUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2256,13 +2256,13 @@ "11998" ], "x-ms-request-id": [ - "7951aa8e-1b61-4970-8110-2471de01d2b7" + "cb1c7391-4871-4f52-b3e4-5bb6dd1d2a21" ], "x-ms-correlation-request-id": [ - "7951aa8e-1b61-4970-8110-2471de01d2b7" + "cb1c7391-4871-4f52-b3e4-5bb6dd1d2a21" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214125Z:7951aa8e-1b61-4970-8110-2471de01d2b7" + "WESTUS2:20221005T224855Z:cb1c7391-4871-4f52-b3e4-5bb6dd1d2a21" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2271,7 +2271,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:41:24 GMT" + "Wed, 05 Oct 2022 22:48:54 GMT" ], "Expires": [ "-1" @@ -2284,18 +2284,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzU5MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpVNU1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzU5MzUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpVNU16VXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2304,7 +2304,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzU5MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzU5MzUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2313,13 +2313,13 @@ "11997" ], "x-ms-request-id": [ - "68b7e912-82e4-4cf3-a3ca-86fbafc5457d" + "c464da4e-52c0-4a88-b722-d0a56d82b9bd" ], "x-ms-correlation-request-id": [ - "68b7e912-82e4-4cf3-a3ca-86fbafc5457d" + "c464da4e-52c0-4a88-b722-d0a56d82b9bd" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214140Z:68b7e912-82e4-4cf3-a3ca-86fbafc5457d" + "WESTUS2:20221005T224910Z:c464da4e-52c0-4a88-b722-d0a56d82b9bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2328,7 +2328,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:41:40 GMT" + "Wed, 05 Oct 2022 22:49:10 GMT" ], "Expires": [ "-1" @@ -2341,18 +2341,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzU5MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpVNU1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzU5MzUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpVNU16VXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2361,7 +2361,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzU5MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzU5MzUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2370,13 +2370,13 @@ "11996" ], "x-ms-request-id": [ - "8d8e00c8-efc9-4720-9a39-d67f409bb53c" + "dec6aadc-1a8b-432d-92b3-97e281a848b0" ], "x-ms-correlation-request-id": [ - "8d8e00c8-efc9-4720-9a39-d67f409bb53c" + "dec6aadc-1a8b-432d-92b3-97e281a848b0" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214155Z:8d8e00c8-efc9-4720-9a39-d67f409bb53c" + "WESTUS2:20221005T224925Z:dec6aadc-1a8b-432d-92b3-97e281a848b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2385,7 +2385,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:41:54 GMT" + "Wed, 05 Oct 2022 22:49:25 GMT" ], "Expires": [ "-1" @@ -2398,18 +2398,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzU5MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpVNU1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzU5MzUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpVNU16VXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2421,13 +2421,13 @@ "11995" ], "x-ms-request-id": [ - "36a770c6-806e-4297-871c-f12543546629" + "b68c9774-d285-48cb-b603-28d03daff570" ], "x-ms-correlation-request-id": [ - "36a770c6-806e-4297-871c-f12543546629" + "b68c9774-d285-48cb-b603-28d03daff570" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214210Z:36a770c6-806e-4297-871c-f12543546629" + "WESTUS2:20221005T224941Z:b68c9774-d285-48cb-b603-28d03daff570" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2436,7 +2436,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:42:09 GMT" + "Wed, 05 Oct 2022 22:49:40 GMT" ], "Expires": [ "-1" @@ -2449,18 +2449,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzU5MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpVNU1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzU5MzUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpVNU16VXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2472,13 +2472,13 @@ "11994" ], "x-ms-request-id": [ - "8893d265-d8c3-4bef-9672-04f4a8c79da8" + "12379ee2-a266-46e5-8c6d-05a15ef9a75b" ], "x-ms-correlation-request-id": [ - "8893d265-d8c3-4bef-9672-04f4a8c79da8" + "12379ee2-a266-46e5-8c6d-05a15ef9a75b" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214210Z:8893d265-d8c3-4bef-9672-04f4a8c79da8" + "WESTUS2:20221005T224941Z:12379ee2-a266-46e5-8c6d-05a15ef9a75b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2487,7 +2487,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:42:09 GMT" + "Wed, 05 Oct 2022 22:49:40 GMT" ], "Expires": [ "-1" @@ -2502,11 +2502,11 @@ ], "Names": { "": [ - "ps1977", - "ps9378", - "ps7510", - "ps1452", - "ps5919" + "ps2280", + "ps6064", + "ps6435", + "ps4904", + "ps5935" ] }, "Variables": { diff --git a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.EventSubscriptionTests/EventGrid_EventSubscription_Domains.json b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.EventSubscriptionTests/EventGrid_EventSubscription_Domains.json index 557ab7742213..b407e3aae793 100644 --- a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.EventSubscriptionTests/EventGrid_EventSubscription_Domains.json +++ b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.EventSubscriptionTests/EventGrid_EventSubscription_Domains.json @@ -1,22 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps6906?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczY5MDY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps4173?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczQxNzM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f9d0d5dc-8729-45bf-8edf-be4098fa6851" + "a046b0c6-f4d9-45f3-8447-c0b5ebbe5c7e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,6 +24,7 @@ "35" ] }, + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "2ff27a41-9f58-4633-aa39-4899eb1108b5" + "ab20463b-5f15-4429-82d8-04d29dca6dcd" ], "x-ms-correlation-request-id": [ - "2ff27a41-9f58-4633-aa39-4899eb1108b5" + "ab20463b-5f15-4429-82d8-04d29dca6dcd" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214443Z:2ff27a41-9f58-4633-aa39-4899eb1108b5" + "WESTUS2:20221005T225211Z:ab20463b-5f15-4429-82d8-04d29dca6dcd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:44:43 GMT" + "Wed, 05 Oct 2022 22:52:11 GMT" ], "Content-Length": [ "186" @@ -63,26 +63,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906\",\r\n \"name\": \"RGName-ps6906\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173\",\r\n \"name\": \"RGName-ps4173\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczY5MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHMyNjkxP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQxNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM3MDIyP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "875c904e-1569-4e7f-93cd-cd7154ff012c" + "ea46b777-7da1-4141-80b0-1eeca2d08d1f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -91,6 +90,7 @@ "272" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -105,10 +105,10 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/A5C59569-AAF4-4816-8073-9C5B8FE4D2B6?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/655A83AA-ABA1-4042-8E5C-3CBBB9A46AA8?api-version=2022-06-15" ], "x-ms-request-id": [ - "8e18daec-5896-49a8-b5b5-5a17a1ad7b9c" + "6f91fbcf-b667-48af-9d79-7a69d4e77843" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -117,16 +117,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "d55f8055-d1d7-47fa-8a14-e1f9098764ca" + "e1796f6e-df6a-42b2-b644-b1a65943e53f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214444Z:d55f8055-d1d7-47fa-8a14-e1f9098764ca" + "WESTUS2:20221005T225213Z:e1796f6e-df6a-42b2-b644-b1a65943e53f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:44:44 GMT" + "Wed, 05 Oct 2022 22:52:13 GMT" ], "Content-Length": [ "510" @@ -138,25 +138,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691\",\r\n \"name\": \"PSTestDomain-ps2691\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022\",\r\n \"name\": \"PSTestDomain-ps7022\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/A5C59569-AAF4-4816-8073-9C5B8FE4D2B6?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvQTVDNTk1NjktQUFGNC00ODE2LTgwNzMtOUM1QjhGRTREMkI2P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/655A83AA-ABA1-4042-8E5C-3CBBB9A46AA8?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNjU1QTgzQUEtQUJBMS00MDQyLThFNUMtM0NCQkI5QTQ2QUE4P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "875c904e-1569-4e7f-93cd-cd7154ff012c" + "ea46b777-7da1-4141-80b0-1eeca2d08d1f" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -168,25 +168,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a2359b80-fd48-4ada-b826-0489b9d136b2" + "bcf07826-3125-4529-8841-f4f4468a51bf" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-correlation-request-id": [ - "44c1ec32-8c74-4ef7-9de0-fa56b07fd762" + "edf0169b-de55-4973-b9df-bde451d47b69" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214454Z:44c1ec32-8c74-4ef7-9de0-fa56b07fd762" + "WESTUS2:20221005T225223Z:edf0169b-de55-4973-b9df-bde451d47b69" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:44:54 GMT" + "Wed, 05 Oct 2022 22:52:23 GMT" ], "Content-Length": [ "286" @@ -198,25 +198,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/A5C59569-AAF4-4816-8073-9C5B8FE4D2B6?api-version=2021-12-01\",\r\n \"name\": \"a5c59569-aaf4-4816-8073-9c5b8fe4d2b6\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/655A83AA-ABA1-4042-8E5C-3CBBB9A46AA8?api-version=2022-06-15\",\r\n \"name\": \"655a83aa-aba1-4042-8e5c-3cbbb9a46aa8\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczY5MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHMyNjkxP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQxNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM3MDIyP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "875c904e-1569-4e7f-93cd-cd7154ff012c" + "ea46b777-7da1-4141-80b0-1eeca2d08d1f" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -228,28 +228,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "81af52cb-6f4f-4b8e-aaf2-c3d11d352039" + "e8fbc2e5-38f8-4ada-8901-989e7fe2fb1d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-correlation-request-id": [ - "897e7ab6-98b3-4817-947f-91d11ef103be" + "c756ffed-5af8-40c9-baad-7dc8bcc01ae9" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214454Z:897e7ab6-98b3-4817-947f-91d11ef103be" + "WESTUS2:20221005T225224Z:c756ffed-5af8-40c9-baad-7dc8bcc01ae9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:44:54 GMT" + "Wed, 05 Oct 2022 22:52:23 GMT" ], "Content-Length": [ - "641" + "681" ], "Content-Type": [ "application/json; charset=utf-8" @@ -258,28 +258,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps2691.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a4cd172c-ba0e-4b59-ab60-5016d623c837\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691\",\r\n \"name\": \"PSTestDomain-ps2691\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps7022.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1302a993-785a-4f09-95fb-d7b15fc0a5fa\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022\",\r\n \"name\": \"PSTestDomain-ps7022\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczY5MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHMyNjkxP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQxNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM3MDIyP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42075593-a62b-4da8-b4b9-4b03fb8528bd" + "4a6eae39-e8bc-42a3-96bd-0200fbee42bc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -291,28 +291,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f8a77db5-1e3d-4d11-ad61-ff121afb3404" + "36268e5b-7c14-49c8-a715-973e4d30c6d7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11998" ], "x-ms-correlation-request-id": [ - "3701e10f-7b0a-4696-9b58-3544fc93ce91" + "f68e1753-c22a-4288-ad68-052ee9e07f1a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214516Z:3701e10f-7b0a-4696-9b58-3544fc93ce91" + "WESTUS2:20221005T225247Z:f68e1753-c22a-4288-ad68-052ee9e07f1a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:45:15 GMT" + "Wed, 05 Oct 2022 22:52:47 GMT" ], "Content-Length": [ - "641" + "681" ], "Content-Type": [ "application/json; charset=utf-8" @@ -321,28 +321,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps2691.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a4cd172c-ba0e-4b59-ab60-5016d623c837\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691\",\r\n \"name\": \"PSTestDomain-ps2691\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps7022.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1302a993-785a-4f09-95fb-d7b15fc0a5fa\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022\",\r\n \"name\": \"PSTestDomain-ps7022\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczY5MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHMyNjkxP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQxNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM3MDIyP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "070f7cf9-87bb-4967-90a9-03f0a9c598f0" + "f910a6d7-527c-4b8c-8a76-9a241049536d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -354,28 +354,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "23419e1f-c3fe-46fc-9dea-b239bb4cab4d" + "b9668fb2-390e-400d-af65-858b7689ae7e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11999" ], "x-ms-correlation-request-id": [ - "cdacb623-2be2-4f3e-80c5-ef5b1944825c" + "2f6687a0-ffd4-44c4-95ae-1b176a79e1ac" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214611Z:cdacb623-2be2-4f3e-80c5-ef5b1944825c" + "WESTUS2:20221005T225348Z:2f6687a0-ffd4-44c4-95ae-1b176a79e1ac" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:46:11 GMT" + "Wed, 05 Oct 2022 22:53:47 GMT" ], "Content-Length": [ - "641" + "681" ], "Content-Type": [ "application/json; charset=utf-8" @@ -384,28 +384,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps2691.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a4cd172c-ba0e-4b59-ab60-5016d623c837\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691\",\r\n \"name\": \"PSTestDomain-ps2691\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps7022.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1302a993-785a-4f09-95fb-d7b15fc0a5fa\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022\",\r\n \"name\": \"PSTestDomain-ps7022\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczY5MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHMyNjkxP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQxNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM3MDIyP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69ad4198-08ef-4999-bade-9a75223dd5fc" + "86fc1ce1-44f9-4929-943b-60b50a672d22" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -417,28 +417,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7a280d87-5102-427a-ad4a-7d0238bbe8b4" + "87471b29-718c-4706-95ca-8b2674163a52" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11998" ], "x-ms-correlation-request-id": [ - "8076446f-50de-4ad7-adce-ad864cc448a2" + "08fcf618-d71c-4621-9da8-8ab8f91cf734" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214633Z:8076446f-50de-4ad7-adce-ad864cc448a2" + "WESTUS2:20221005T225411Z:08fcf618-d71c-4621-9da8-8ab8f91cf734" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:46:32 GMT" + "Wed, 05 Oct 2022 22:54:10 GMT" ], "Content-Length": [ - "641" + "681" ], "Content-Type": [ "application/json; charset=utf-8" @@ -447,28 +447,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps2691.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a4cd172c-ba0e-4b59-ab60-5016d623c837\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691\",\r\n \"name\": \"PSTestDomain-ps2691\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps7022.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1302a993-785a-4f09-95fb-d7b15fc0a5fa\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022\",\r\n \"name\": \"PSTestDomain-ps7022\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczY5MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHMyNjkxP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQxNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM3MDIyP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f2e9040-7bfd-41aa-b42d-eee197859e72" + "e0872046-3cf4-46bd-91be-e1ce0c0252e4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -480,28 +480,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3e3f4d60-1b05-4779-b77d-9b31e77815b3" + "e3b53c8e-2f7a-427c-b21a-daee49a864e9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11999" ], "x-ms-correlation-request-id": [ - "ef835aef-2d54-47bf-a644-1197fa3cbcd0" + "b0d332bb-38cb-4b26-a284-c1ae07555a08" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214633Z:ef835aef-2d54-47bf-a644-1197fa3cbcd0" + "WESTUS2:20221005T225412Z:b0d332bb-38cb-4b26-a284-c1ae07555a08" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:46:32 GMT" + "Wed, 05 Oct 2022 22:54:11 GMT" ], "Content-Length": [ - "641" + "681" ], "Content-Type": [ "application/json; charset=utf-8" @@ -510,26 +510,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps2691.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a4cd172c-ba0e-4b59-ab60-5016d623c837\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691\",\r\n \"name\": \"PSTestDomain-ps2691\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstestdomain-ps7022.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1302a993-785a-4f09-95fb-d7b15fc0a5fa\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"autoCreateTopicWithFirstSubscription\": false,\r\n \"autoDeleteTopicWithLastSubscription\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022\",\r\n \"name\": \"PSTestDomain-ps7022\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8359?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM2OTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM4MzU5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps9557?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM0MTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzNzAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM5NTU3P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"eventDeliverySchema\": \"EventGridSchema\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c63904a5-bed1-4e8b-aa38-19d63b435239" + "95cf595b-2ce3-425d-bb37-47c7400ae74e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -538,6 +537,7 @@ "480" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"eventDeliverySchema\": \"EventGridSchema\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -552,10 +552,10 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/63F4F76A-A195-4614-86BE-2E23E23B4620?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/8050D672-23EE-4933-A1D5-D53AA2AC2F13?api-version=2022-06-15" ], "x-ms-request-id": [ - "a6dc09ed-8c6c-402e-a439-81d5e24735fd" + "9625baa8-00a3-4f47-bc14-95cc32a36790" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -564,16 +564,16 @@ "899" ], "x-ms-correlation-request-id": [ - "fcc6254d-1082-4740-8599-a3273985c184" + "a5d7992c-50e4-4c89-a7b7-0fb6c7ffc76e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214455Z:fcc6254d-1082-4740-8599-a3273985c184" + "WESTUS2:20221005T225225Z:a5d7992c-50e4-4c89-a7b7-0fb6c7ffc76e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:44:55 GMT" + "Wed, 05 Oct 2022 22:52:25 GMT" ], "Content-Length": [ "867" @@ -585,25 +585,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6906/providers/microsoft.eventgrid/domains/pstestdomain-ps2691\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8359\",\r\n \"name\": \"EventSubscription-ps8359\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps4173/providers/microsoft.eventgrid/domains/pstestdomain-ps7022\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps9557\",\r\n \"name\": \"EventSubscription-ps9557\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/63F4F76A-A195-4614-86BE-2E23E23B4620?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNjNGNEY3NkEtQTE5NS00NjE0LTg2QkUtMkUyM0UyM0I0NjIwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/8050D672-23EE-4933-A1D5-D53AA2AC2F13?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvODA1MEQ2NzItMjNFRS00OTMzLUExRDUtRDUzQUEyQUMyRjEzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c63904a5-bed1-4e8b-aa38-19d63b435239" + "95cf595b-2ce3-425d-bb37-47c7400ae74e" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -615,25 +615,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bc3a6a4f-e979-4b82-936b-bebcdd973cec" + "0365388f-4062-4bb3-835f-78ed7e6048d8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11999" ], "x-ms-correlation-request-id": [ - "0ecf4e2d-7287-45c4-b27e-4431baa91b9d" + "470ad443-f1e5-46a4-80ef-548aa76a849e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214505Z:0ecf4e2d-7287-45c4-b27e-4431baa91b9d" + "WESTUS2:20221005T225235Z:470ad443-f1e5-46a4-80ef-548aa76a849e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:45:05 GMT" + "Wed, 05 Oct 2022 22:52:35 GMT" ], "Content-Length": [ "286" @@ -645,25 +645,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/63F4F76A-A195-4614-86BE-2E23E23B4620?api-version=2021-12-01\",\r\n \"name\": \"63f4f76a-a195-4614-86be-2e23e23b4620\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/8050D672-23EE-4933-A1D5-D53AA2AC2F13?api-version=2022-06-15\",\r\n \"name\": \"8050d672-23ee-4933-a1d5-d53aa2ac2f13\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8359?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM2OTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM4MzU5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps9557?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM0MTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzNzAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM5NTU3P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c63904a5-bed1-4e8b-aa38-19d63b435239" + "95cf595b-2ce3-425d-bb37-47c7400ae74e" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -675,25 +675,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6e4e4281-9388-4d54-b5d5-da8dd9436bb2" + "e4b75ea7-563f-4727-b914-b98af941e773" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11998" ], "x-ms-correlation-request-id": [ - "f1533c10-3d38-49bb-8384-ec4853932e95" + "f4314baa-953a-4251-a0c6-23db0cad1127" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214505Z:f1533c10-3d38-49bb-8384-ec4853932e95" + "WESTUS2:20221005T225235Z:f4314baa-953a-4251-a0c6-23db0cad1127" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:45:05 GMT" + "Wed, 05 Oct 2022 22:52:35 GMT" ], "Content-Length": [ "969" @@ -705,26 +705,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6906/providers/microsoft.eventgrid/domains/pstestdomain-ps2691\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8359\",\r\n \"name\": \"EventSubscription-ps8359\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps4173/providers/microsoft.eventgrid/domains/pstestdomain-ps7022\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps9557\",\r\n \"name\": \"EventSubscription-ps9557\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps1909?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM2OTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHMxOTA5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4831?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM0MTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzNzAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM0ODMxP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"eventDeliverySchema\": \"EventGridSchema\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "039c0695-e383-44ee-9414-632efa7c28b0" + "7de19250-4bdd-40c3-a8eb-6cbdc4d2f046" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -733,6 +732,7 @@ "480" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"eventDeliverySchema\": \"EventGridSchema\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -747,28 +747,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/1641146A-6946-4796-9D8D-16316910B88B?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/34CEBE0A-CD59-4CE3-B7E1-D2857CF91E9A?api-version=2022-06-15" ], "x-ms-request-id": [ - "bfce11e0-9bc7-49a5-a913-370740d9d0f9" + "07810d53-0395-40fc-a0ab-dfac681a257c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "898" + "899" ], "x-ms-correlation-request-id": [ - "ad7c5ad7-3cb0-4600-bb79-8c13d9e81f56" + "72bf896e-9a84-4b22-a694-83da66731244" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214506Z:ad7c5ad7-3cb0-4600-bb79-8c13d9e81f56" + "WESTUS2:20221005T225236Z:72bf896e-9a84-4b22-a694-83da66731244" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:45:05 GMT" + "Wed, 05 Oct 2022 22:52:36 GMT" ], "Content-Length": [ "867" @@ -780,25 +780,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6906/providers/microsoft.eventgrid/domains/pstestdomain-ps2691\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps1909\",\r\n \"name\": \"EventSubscription-ps1909\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps4173/providers/microsoft.eventgrid/domains/pstestdomain-ps7022\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4831\",\r\n \"name\": \"EventSubscription-ps4831\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/1641146A-6946-4796-9D8D-16316910B88B?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMTY0MTE0NkEtNjk0Ni00Nzk2LTlEOEQtMTYzMTY5MTBCODhCP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/34CEBE0A-CD59-4CE3-B7E1-D2857CF91E9A?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMzRDRUJFMEEtQ0Q1OS00Q0UzLUI3RTEtRDI4NTdDRjkxRTlBP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "039c0695-e383-44ee-9414-632efa7c28b0" + "7de19250-4bdd-40c3-a8eb-6cbdc4d2f046" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -810,25 +810,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1e8cf274-acdb-4902-a14d-00f98062ac3b" + "70aaceff-47b3-46ac-932c-9ceef89df4c0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11996" ], "x-ms-correlation-request-id": [ - "ce43aa53-a7d4-4691-a56c-0c24f517f153" + "171f18bd-eded-4f4e-b228-82931dc71634" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214516Z:ce43aa53-a7d4-4691-a56c-0c24f517f153" + "WESTUS2:20221005T225247Z:171f18bd-eded-4f4e-b228-82931dc71634" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:45:15 GMT" + "Wed, 05 Oct 2022 22:52:46 GMT" ], "Content-Length": [ "286" @@ -840,25 +840,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/1641146A-6946-4796-9D8D-16316910B88B?api-version=2021-12-01\",\r\n \"name\": \"1641146a-6946-4796-9d8d-16316910b88b\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/34CEBE0A-CD59-4CE3-B7E1-D2857CF91E9A?api-version=2022-06-15\",\r\n \"name\": \"34cebe0a-cd59-4ce3-b7e1-d2857cf91e9a\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps1909?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM2OTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHMxOTA5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4831?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM0MTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzNzAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM0ODMxP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "039c0695-e383-44ee-9414-632efa7c28b0" + "7de19250-4bdd-40c3-a8eb-6cbdc4d2f046" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -870,25 +870,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "beb9ab7e-c2b9-4b5f-8562-5da5895d6821" + "6b69b4e9-e6ad-4686-bfd0-bc3c6e20fd53" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11995" ], "x-ms-correlation-request-id": [ - "28dbc59f-930d-44e2-b565-61c3ef4d9992" + "6948f21f-abb6-423b-8c1f-509b21e6921a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214516Z:28dbc59f-930d-44e2-b565-61c3ef4d9992" + "WESTUS2:20221005T225247Z:6948f21f-abb6-423b-8c1f-509b21e6921a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:45:15 GMT" + "Wed, 05 Oct 2022 22:52:47 GMT" ], "Content-Length": [ "969" @@ -900,26 +900,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6906/providers/microsoft.eventgrid/domains/pstestdomain-ps2691\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps1909\",\r\n \"name\": \"EventSubscription-ps1909\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps4173/providers/microsoft.eventgrid/domains/pstestdomain-ps7022\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4831\",\r\n \"name\": \"EventSubscription-ps4831\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps2335?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM2OTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHMyMzM1P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps2823?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM0MTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzNzAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHMyODIzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"eventDeliverySchema\": \"EventGridSchema\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "42075593-a62b-4da8-b4b9-4b03fb8528bd" + "4a6eae39-e8bc-42a3-96bd-0200fbee42bc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -928,6 +927,7 @@ "480" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"eventDeliverySchema\": \"EventGridSchema\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -942,28 +942,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/02742095-35CC-49AD-B714-4D98F8159FCB?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/629FFEE1-DFC3-4CEA-A769-620DB1C62E91?api-version=2022-06-15" ], "x-ms-request-id": [ - "fd741408-93d6-457b-9841-6bcf40b3b307" + "7e269d1d-7748-4749-93c5-3fe78f58ced5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "897" + "899" ], "x-ms-correlation-request-id": [ - "c5b91bca-d50b-4d27-808b-20e4151056a4" + "d73ef496-6d6b-4301-9075-fb5e8d3052ed" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214516Z:c5b91bca-d50b-4d27-808b-20e4151056a4" + "WESTUS2:20221005T225248Z:d73ef496-6d6b-4301-9075-fb5e8d3052ed" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:45:16 GMT" + "Wed, 05 Oct 2022 22:52:48 GMT" ], "Content-Length": [ "867" @@ -975,25 +975,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6906/providers/microsoft.eventgrid/domains/pstestdomain-ps2691\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps2335\",\r\n \"name\": \"EventSubscription-ps2335\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps4173/providers/microsoft.eventgrid/domains/pstestdomain-ps7022\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps2823\",\r\n \"name\": \"EventSubscription-ps2823\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/02742095-35CC-49AD-B714-4D98F8159FCB?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMDI3NDIwOTUtMzVDQy00OUFELUI3MTQtNEQ5OEY4MTU5RkNCP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/629FFEE1-DFC3-4CEA-A769-620DB1C62E91?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNjI5RkZFRTEtREZDMy00Q0VBLUE3NjktNjIwREIxQzYyRTkxP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42075593-a62b-4da8-b4b9-4b03fb8528bd" + "4a6eae39-e8bc-42a3-96bd-0200fbee42bc" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1005,25 +1005,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3b94d5b9-d7af-4d16-8803-3432c6f4b52a" + "e4baad1e-141f-4bc5-8012-45b2d71b3fc6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11999" ], "x-ms-correlation-request-id": [ - "034ee68c-3f1f-406e-93e1-e3006fc2ab41" + "1507bf43-f2fd-4950-a7d3-daa7e5d0952a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214527Z:034ee68c-3f1f-406e-93e1-e3006fc2ab41" + "WESTUS2:20221005T225258Z:1507bf43-f2fd-4950-a7d3-daa7e5d0952a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:45:26 GMT" + "Wed, 05 Oct 2022 22:52:58 GMT" ], "Content-Length": [ "286" @@ -1035,25 +1035,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/02742095-35CC-49AD-B714-4D98F8159FCB?api-version=2021-12-01\",\r\n \"name\": \"02742095-35cc-49ad-b714-4d98f8159fcb\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/629FFEE1-DFC3-4CEA-A769-620DB1C62E91?api-version=2022-06-15\",\r\n \"name\": \"629ffee1-dfc3-4cea-a769-620db1c62e91\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps2335?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM2OTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHMyMzM1P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps2823?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM0MTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzNzAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHMyODIzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42075593-a62b-4da8-b4b9-4b03fb8528bd" + "4a6eae39-e8bc-42a3-96bd-0200fbee42bc" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1065,25 +1065,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5cdc5bea-d489-4faf-80cb-9b83a28401e7" + "ac644af8-b098-4fc2-b64e-b538a1a6d57f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11998" ], "x-ms-correlation-request-id": [ - "47222fd0-f3a1-451e-8f0e-f86c74a0d65c" + "ef3df8e6-3d85-48ea-b12e-fa9f435c4540" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214527Z:47222fd0-f3a1-451e-8f0e-f86c74a0d65c" + "WESTUS2:20221005T225258Z:ef3df8e6-3d85-48ea-b12e-fa9f435c4540" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:45:26 GMT" + "Wed, 05 Oct 2022 22:52:58 GMT" ], "Content-Length": [ "969" @@ -1095,26 +1095,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6906/providers/microsoft.eventgrid/domains/pstestdomain-ps2691\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps2335\",\r\n \"name\": \"EventSubscription-ps2335\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps4173/providers/microsoft.eventgrid/domains/pstestdomain-ps7022\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps2823\",\r\n \"name\": \"EventSubscription-ps2823\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4786?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM2OTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM0Nzg2P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7647?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM0MTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzNzAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3NjQ3P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"expirationTimeUtc\": \"2022-04-29T21:45:27.1805108Z\",\r\n \"eventDeliverySchema\": \"EventGridSchema\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5ed78b4e-e58b-4e64-9b46-cd46a5c204c4" + "25703e66-eb74-4846-b567-26884ae05d0c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1123,6 +1122,7 @@ "538" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"expirationTimeUtc\": \"2022-10-03T22:52:58.2624691Z\",\r\n \"eventDeliverySchema\": \"EventGridSchema\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1134,25 +1134,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6b2589dc-09e7-477b-9736-13b844bf604c" + "f5dff4c6-ba6c-4615-a922-64133c4e056d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "896" + "899" ], "x-ms-correlation-request-id": [ - "c31c2a40-bb36-4e10-bd4a-35b618c3e201" + "f6800e53-7549-43bf-b76f-b8dfdc024aec" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214527Z:c31c2a40-bb36-4e10-bd4a-35b618c3e201" + "WESTUS2:20221005T225259Z:f6800e53-7549-43bf-b76f-b8dfdc024aec" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:45:26 GMT" + "Wed, 05 Oct 2022 22:52:59 GMT" ], "Content-Length": [ "295" @@ -1168,22 +1168,21 @@ "StatusCode": 400 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4786?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM2OTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM0Nzg2P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7647?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM0MTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzNzAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3NjQ3P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"Text1\",\r\n \"subjectEndsWith\": \"text2\",\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false,\r\n \"advancedFilters\": [\r\n {\r\n \"operatorType\": \"NumberIn\",\r\n \"values\": [\r\n 1.0,\r\n 2.0\r\n ],\r\n \"key\": \"Data.Key1\"\r\n },\r\n {\r\n \"operatorType\": \"StringBeginsWith\",\r\n \"values\": [\r\n \"vv\",\r\n \"xx\"\r\n ],\r\n \"key\": \"Subject\"\r\n },\r\n {\r\n \"operatorType\": \"NumberLessThan\",\r\n \"value\": 5.12,\r\n \"key\": \"Data.Key12\"\r\n },\r\n {\r\n \"operatorType\": \"BoolEquals\",\r\n \"value\": false,\r\n \"key\": \"Data.Key6\"\r\n }\r\n ]\r\n },\r\n \"expirationTimeUtc\": \"2022-05-03T21:45:27.4464514Z\",\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 20,\r\n \"eventTimeToLiveInMinutes\": 50\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2da0c051-cc8e-4959-b5f6-976fb0c47885" + "4c513494-59bb-494f-9e46-79952cfcda38" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1192,6 +1191,7 @@ "1331" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"Text1\",\r\n \"subjectEndsWith\": \"text2\",\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false,\r\n \"advancedFilters\": [\r\n {\r\n \"operatorType\": \"NumberIn\",\r\n \"values\": [\r\n 1.0,\r\n 2.0\r\n ],\r\n \"key\": \"Data.Key1\"\r\n },\r\n {\r\n \"operatorType\": \"StringBeginsWith\",\r\n \"values\": [\r\n \"vv\",\r\n \"xx\"\r\n ],\r\n \"key\": \"Subject\"\r\n },\r\n {\r\n \"operatorType\": \"NumberLessThan\",\r\n \"value\": 5.12,\r\n \"key\": \"Data.Key12\"\r\n },\r\n {\r\n \"operatorType\": \"BoolEquals\",\r\n \"value\": false,\r\n \"key\": \"Data.Key6\"\r\n }\r\n ]\r\n },\r\n \"expirationTimeUtc\": \"2022-10-07T22:52:59.0322376Z\",\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 20,\r\n \"eventTimeToLiveInMinutes\": 50\r\n }\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1206,28 +1206,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/14396422-E9C2-447A-B8B8-F6A94BC0B2AC?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4647ED24-0499-440C-AFE5-AF95C6291A9F?api-version=2022-06-15" ], "x-ms-request-id": [ - "4023d31e-f2e0-42bb-8882-f75596bf54bb" + "1e38f880-13a5-4d8d-b151-5b8de678478a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "895" + "899" ], "x-ms-correlation-request-id": [ - "124ff032-a5d5-4147-a68e-ee7087651501" + "230d01e5-f355-4bd8-866c-dc180b76be5d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214527Z:124ff032-a5d5-4147-a68e-ee7087651501" + "WESTUS2:20221005T225300Z:230d01e5-f355-4bd8-866c-dc180b76be5d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:45:27 GMT" + "Wed, 05 Oct 2022 22:52:59 GMT" ], "Content-Length": [ "1256" @@ -1239,25 +1239,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6906/providers/microsoft.eventgrid/domains/pstestdomain-ps2691\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"Text1\",\r\n \"subjectEndsWith\": \"text2\",\r\n \"enableAdvancedFilteringOnArrays\": false,\r\n \"advancedFilters\": [\r\n {\r\n \"values\": [\r\n 1.0,\r\n 2.0\r\n ],\r\n \"operatorType\": \"NumberIn\",\r\n \"key\": \"Data.Key1\"\r\n },\r\n {\r\n \"values\": [\r\n \"vv\",\r\n \"xx\"\r\n ],\r\n \"operatorType\": \"StringBeginsWith\",\r\n \"key\": \"Subject\"\r\n },\r\n {\r\n \"value\": 5.12,\r\n \"operatorType\": \"NumberLessThan\",\r\n \"key\": \"Data.Key12\"\r\n },\r\n {\r\n \"value\": false,\r\n \"operatorType\": \"BoolEquals\",\r\n \"key\": \"Data.Key6\"\r\n }\r\n ]\r\n },\r\n \"labels\": null,\r\n \"expirationTimeUtc\": \"2022-05-03T21:45:27.4464514Z\",\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 20,\r\n \"eventTimeToLiveInMinutes\": 50\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4786\",\r\n \"name\": \"EventSubscription-ps4786\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps4173/providers/microsoft.eventgrid/domains/pstestdomain-ps7022\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"Text1\",\r\n \"subjectEndsWith\": \"text2\",\r\n \"enableAdvancedFilteringOnArrays\": false,\r\n \"advancedFilters\": [\r\n {\r\n \"values\": [\r\n 1.0,\r\n 2.0\r\n ],\r\n \"operatorType\": \"NumberIn\",\r\n \"key\": \"Data.Key1\"\r\n },\r\n {\r\n \"values\": [\r\n \"vv\",\r\n \"xx\"\r\n ],\r\n \"operatorType\": \"StringBeginsWith\",\r\n \"key\": \"Subject\"\r\n },\r\n {\r\n \"value\": 5.12,\r\n \"operatorType\": \"NumberLessThan\",\r\n \"key\": \"Data.Key12\"\r\n },\r\n {\r\n \"value\": false,\r\n \"operatorType\": \"BoolEquals\",\r\n \"key\": \"Data.Key6\"\r\n }\r\n ]\r\n },\r\n \"labels\": null,\r\n \"expirationTimeUtc\": \"2022-10-07T22:52:59.0322376Z\",\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 20,\r\n \"eventTimeToLiveInMinutes\": 50\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7647\",\r\n \"name\": \"EventSubscription-ps7647\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/14396422-E9C2-447A-B8B8-F6A94BC0B2AC?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMTQzOTY0MjItRTlDMi00NDdBLUI4QjgtRjZBOTRCQzBCMkFDP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4647ED24-0499-440C-AFE5-AF95C6291A9F?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNDY0N0VEMjQtMDQ5OS00NDBDLUFGRTUtQUY5NUM2MjkxQTlGP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2da0c051-cc8e-4959-b5f6-976fb0c47885" + "4c513494-59bb-494f-9e46-79952cfcda38" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1269,25 +1269,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "76be0516-b055-42aa-ae69-9877e63ec272" + "61ca618b-dcdb-4701-9b7e-c858bbba1496" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11999" ], "x-ms-correlation-request-id": [ - "88b65b5b-dccf-4fc8-aa49-95bea15349f3" + "85dcd002-312f-4097-a266-0a3bd5c18c7d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214537Z:88b65b5b-dccf-4fc8-aa49-95bea15349f3" + "WESTUS2:20221005T225311Z:85dcd002-312f-4097-a266-0a3bd5c18c7d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:45:37 GMT" + "Wed, 05 Oct 2022 22:53:10 GMT" ], "Content-Length": [ "286" @@ -1299,25 +1299,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/14396422-E9C2-447A-B8B8-F6A94BC0B2AC?api-version=2021-12-01\",\r\n \"name\": \"14396422-e9c2-447a-b8b8-f6a94bc0b2ac\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4647ED24-0499-440C-AFE5-AF95C6291A9F?api-version=2022-06-15\",\r\n \"name\": \"4647ed24-0499-440c-afe5-af95c6291a9f\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4786?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM2OTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM0Nzg2P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7647?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM0MTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzNzAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3NjQ3P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2da0c051-cc8e-4959-b5f6-976fb0c47885" + "4c513494-59bb-494f-9e46-79952cfcda38" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1329,25 +1329,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0d2f9b2b-cfa3-4975-a1e0-ff460a207e81" + "da9685c0-691b-4c3d-8675-6d9a82004a54" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11998" ], "x-ms-correlation-request-id": [ - "cbba9c48-2c94-4f6a-94e3-2740a40e87d4" + "8a11df90-9ad6-4049-9a2d-e5a583683874" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214538Z:cbba9c48-2c94-4f6a-94e3-2740a40e87d4" + "WESTUS2:20221005T225311Z:8a11df90-9ad6-4049-9a2d-e5a583683874" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:45:37 GMT" + "Wed, 05 Oct 2022 22:53:11 GMT" ], "Content-Length": [ "1314" @@ -1359,28 +1359,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6906/providers/microsoft.eventgrid/domains/pstestdomain-ps2691\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"Text1\",\r\n \"subjectEndsWith\": \"text2\",\r\n \"enableAdvancedFilteringOnArrays\": false,\r\n \"advancedFilters\": [\r\n {\r\n \"values\": [\r\n 1.0,\r\n 2.0\r\n ],\r\n \"operatorType\": \"NumberIn\",\r\n \"key\": \"Data.Key1\"\r\n },\r\n {\r\n \"values\": [\r\n \"vv\",\r\n \"xx\"\r\n ],\r\n \"operatorType\": \"StringBeginsWith\",\r\n \"key\": \"Subject\"\r\n },\r\n {\r\n \"value\": 5.12,\r\n \"operatorType\": \"NumberLessThan\",\r\n \"key\": \"Data.Key12\"\r\n },\r\n {\r\n \"value\": false,\r\n \"operatorType\": \"BoolEquals\",\r\n \"key\": \"Data.Key6\"\r\n }\r\n ]\r\n },\r\n \"labels\": null,\r\n \"expirationTimeUtc\": \"2022-05-03T21:45:27.4464514Z\",\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 20,\r\n \"eventTimeToLiveInMinutes\": 50\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4786\",\r\n \"name\": \"EventSubscription-ps4786\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps4173/providers/microsoft.eventgrid/domains/pstestdomain-ps7022\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"Text1\",\r\n \"subjectEndsWith\": \"text2\",\r\n \"enableAdvancedFilteringOnArrays\": false,\r\n \"advancedFilters\": [\r\n {\r\n \"values\": [\r\n 1.0,\r\n 2.0\r\n ],\r\n \"operatorType\": \"NumberIn\",\r\n \"key\": \"Data.Key1\"\r\n },\r\n {\r\n \"values\": [\r\n \"vv\",\r\n \"xx\"\r\n ],\r\n \"operatorType\": \"StringBeginsWith\",\r\n \"key\": \"Subject\"\r\n },\r\n {\r\n \"value\": 5.12,\r\n \"operatorType\": \"NumberLessThan\",\r\n \"key\": \"Data.Key12\"\r\n },\r\n {\r\n \"value\": false,\r\n \"operatorType\": \"BoolEquals\",\r\n \"key\": \"Data.Key6\"\r\n }\r\n ]\r\n },\r\n \"labels\": null,\r\n \"expirationTimeUtc\": \"2022-10-07T22:52:59.0322376Z\",\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 20,\r\n \"eventTimeToLiveInMinutes\": 50\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7647\",\r\n \"name\": \"EventSubscription-ps7647\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4786?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM2OTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM0Nzg2P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7647?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM0MTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzNzAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3NjQ3P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f740ee0-43bd-4485-b81f-ddec5c672817" + "44039728-88f8-485e-93ba-f403c7d585c9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1392,25 +1392,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "87596941-c327-4480-9d5c-0318ff19ac2e" + "e4c251a2-7d61-4a9a-b531-67ccea8de2e4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11999" ], "x-ms-correlation-request-id": [ - "8640c383-8f41-4f1e-afb2-2f42edbb321e" + "e42b32dd-92c3-4d1e-af68-e7ffc4986840" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214538Z:8640c383-8f41-4f1e-afb2-2f42edbb321e" + "WESTUS2:20221005T225311Z:e42b32dd-92c3-4d1e-af68-e7ffc4986840" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:45:37 GMT" + "Wed, 05 Oct 2022 22:53:11 GMT" ], "Content-Length": [ "1314" @@ -1422,28 +1422,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6906/providers/microsoft.eventgrid/domains/pstestdomain-ps2691\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"Text1\",\r\n \"subjectEndsWith\": \"text2\",\r\n \"enableAdvancedFilteringOnArrays\": false,\r\n \"advancedFilters\": [\r\n {\r\n \"values\": [\r\n 1.0,\r\n 2.0\r\n ],\r\n \"operatorType\": \"NumberIn\",\r\n \"key\": \"Data.Key1\"\r\n },\r\n {\r\n \"values\": [\r\n \"vv\",\r\n \"xx\"\r\n ],\r\n \"operatorType\": \"StringBeginsWith\",\r\n \"key\": \"Subject\"\r\n },\r\n {\r\n \"value\": 5.12,\r\n \"operatorType\": \"NumberLessThan\",\r\n \"key\": \"Data.Key12\"\r\n },\r\n {\r\n \"value\": false,\r\n \"operatorType\": \"BoolEquals\",\r\n \"key\": \"Data.Key6\"\r\n }\r\n ]\r\n },\r\n \"labels\": null,\r\n \"expirationTimeUtc\": \"2022-05-03T21:45:27.4464514Z\",\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 20,\r\n \"eventTimeToLiveInMinutes\": 50\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4786\",\r\n \"name\": \"EventSubscription-ps4786\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps4173/providers/microsoft.eventgrid/domains/pstestdomain-ps7022\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"Text1\",\r\n \"subjectEndsWith\": \"text2\",\r\n \"enableAdvancedFilteringOnArrays\": false,\r\n \"advancedFilters\": [\r\n {\r\n \"values\": [\r\n 1.0,\r\n 2.0\r\n ],\r\n \"operatorType\": \"NumberIn\",\r\n \"key\": \"Data.Key1\"\r\n },\r\n {\r\n \"values\": [\r\n \"vv\",\r\n \"xx\"\r\n ],\r\n \"operatorType\": \"StringBeginsWith\",\r\n \"key\": \"Subject\"\r\n },\r\n {\r\n \"value\": 5.12,\r\n \"operatorType\": \"NumberLessThan\",\r\n \"key\": \"Data.Key12\"\r\n },\r\n {\r\n \"value\": false,\r\n \"operatorType\": \"BoolEquals\",\r\n \"key\": \"Data.Key6\"\r\n }\r\n ]\r\n },\r\n \"labels\": null,\r\n \"expirationTimeUtc\": \"2022-10-07T22:52:59.0322376Z\",\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 20,\r\n \"eventTimeToLiveInMinutes\": 50\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7647\",\r\n \"name\": \"EventSubscription-ps7647\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4786?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM2OTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM0Nzg2P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7647?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM0MTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzNzAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3NjQ3P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1f9c37cc-5a87-4902-930d-cee74946f4a3" + "4e089793-d0af-440d-9901-794ba26b525d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1455,25 +1455,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b0cc8f6a-2690-49d1-8524-8db385420947" + "f47c2c0b-99c3-4b63-b73f-2bb856b56b75" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11999" ], "x-ms-correlation-request-id": [ - "1d66c0cf-c234-4846-a010-dc570e1f402c" + "6633e9d4-5136-4880-a792-f146c20c023d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214538Z:1d66c0cf-c234-4846-a010-dc570e1f402c" + "WESTUS2:20221005T225312Z:6633e9d4-5136-4880-a792-f146c20c023d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:45:37 GMT" + "Wed, 05 Oct 2022 22:53:11 GMT" ], "Content-Length": [ "1314" @@ -1485,25 +1485,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6906/providers/microsoft.eventgrid/domains/pstestdomain-ps2691\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"Text1\",\r\n \"subjectEndsWith\": \"text2\",\r\n \"enableAdvancedFilteringOnArrays\": false,\r\n \"advancedFilters\": [\r\n {\r\n \"values\": [\r\n 1.0,\r\n 2.0\r\n ],\r\n \"operatorType\": \"NumberIn\",\r\n \"key\": \"Data.Key1\"\r\n },\r\n {\r\n \"values\": [\r\n \"vv\",\r\n \"xx\"\r\n ],\r\n \"operatorType\": \"StringBeginsWith\",\r\n \"key\": \"Subject\"\r\n },\r\n {\r\n \"value\": 5.12,\r\n \"operatorType\": \"NumberLessThan\",\r\n \"key\": \"Data.Key12\"\r\n },\r\n {\r\n \"value\": false,\r\n \"operatorType\": \"BoolEquals\",\r\n \"key\": \"Data.Key6\"\r\n }\r\n ]\r\n },\r\n \"labels\": null,\r\n \"expirationTimeUtc\": \"2022-05-03T21:45:27.4464514Z\",\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 20,\r\n \"eventTimeToLiveInMinutes\": 50\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4786\",\r\n \"name\": \"EventSubscription-ps4786\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps4173/providers/microsoft.eventgrid/domains/pstestdomain-ps7022\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"Text1\",\r\n \"subjectEndsWith\": \"text2\",\r\n \"enableAdvancedFilteringOnArrays\": false,\r\n \"advancedFilters\": [\r\n {\r\n \"values\": [\r\n 1.0,\r\n 2.0\r\n ],\r\n \"operatorType\": \"NumberIn\",\r\n \"key\": \"Data.Key1\"\r\n },\r\n {\r\n \"values\": [\r\n \"vv\",\r\n \"xx\"\r\n ],\r\n \"operatorType\": \"StringBeginsWith\",\r\n \"key\": \"Subject\"\r\n },\r\n {\r\n \"value\": 5.12,\r\n \"operatorType\": \"NumberLessThan\",\r\n \"key\": \"Data.Key12\"\r\n },\r\n {\r\n \"value\": false,\r\n \"operatorType\": \"BoolEquals\",\r\n \"key\": \"Data.Key6\"\r\n }\r\n ]\r\n },\r\n \"labels\": null,\r\n \"expirationTimeUtc\": \"2022-10-07T22:52:59.0322376Z\",\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 20,\r\n \"eventTimeToLiveInMinutes\": 50\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7647\",\r\n \"name\": \"EventSubscription-ps7647\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4786?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM2OTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM0Nzg2P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7647?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM0MTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzNzAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3NjQ3P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1f9c37cc-5a87-4902-930d-cee74946f4a3" + "4e089793-d0af-440d-9901-794ba26b525d" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1515,25 +1515,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "73162815-8dd0-402d-acff-8f90a9005a71" + "b1d3230c-5d92-43cd-80a9-68cf836b6667" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11997" ], "x-ms-correlation-request-id": [ - "441a4301-348c-40b6-9cf5-1b01e62cc0db" + "79e384c3-c260-4104-92bb-a2f768f3570d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214549Z:441a4301-348c-40b6-9cf5-1b01e62cc0db" + "WESTUS2:20221005T225322Z:79e384c3-c260-4104-92bb-a2f768f3570d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:45:48 GMT" + "Wed, 05 Oct 2022 22:53:22 GMT" ], "Content-Length": [ "1002" @@ -1545,28 +1545,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6906/providers/microsoft.eventgrid/domains/pstestdomain-ps2691\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"UpdatedText1\",\r\n \"subjectEndsWith\": \"Updatedtext2\"\r\n },\r\n \"labels\": null,\r\n \"expirationTimeUtc\": \"2022-05-11T21:45:38.4983606Z\",\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 12,\r\n \"eventTimeToLiveInMinutes\": 20\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4786\",\r\n \"name\": \"EventSubscription-ps4786\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps4173/providers/microsoft.eventgrid/domains/pstestdomain-ps7022\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"UpdatedText1\",\r\n \"subjectEndsWith\": \"Updatedtext2\"\r\n },\r\n \"labels\": null,\r\n \"expirationTimeUtc\": \"2022-10-15T22:53:11.1234102Z\",\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 12,\r\n \"eventTimeToLiveInMinutes\": 20\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7647\",\r\n \"name\": \"EventSubscription-ps7647\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4786?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM2OTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM0Nzg2P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7647?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM0MTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzNzAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3NjQ3P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c9961bb8-7e8e-4c65-8102-0b9cc78201be" + "6fab3e36-d500-4e67-b823-1768dbf12e7c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1578,25 +1578,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6102895d-78bc-4b67-81a2-887e4a540ac9" + "5552f294-fa92-4927-8187-407f4768e289" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11998" ], "x-ms-correlation-request-id": [ - "7cadbe7c-947f-4b7f-aa3f-8ac1b8a085f9" + "20ac21a3-14f3-4204-989e-f04bfd723092" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214549Z:7cadbe7c-947f-4b7f-aa3f-8ac1b8a085f9" + "WESTUS2:20221005T225323Z:20ac21a3-14f3-4204-989e-f04bfd723092" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:45:48 GMT" + "Wed, 05 Oct 2022 22:53:22 GMT" ], "Content-Length": [ "1002" @@ -1608,28 +1608,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6906/providers/microsoft.eventgrid/domains/pstestdomain-ps2691\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"UpdatedText1\",\r\n \"subjectEndsWith\": \"Updatedtext2\"\r\n },\r\n \"labels\": null,\r\n \"expirationTimeUtc\": \"2022-05-11T21:45:38.4983606Z\",\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 12,\r\n \"eventTimeToLiveInMinutes\": 20\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4786\",\r\n \"name\": \"EventSubscription-ps4786\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps4173/providers/microsoft.eventgrid/domains/pstestdomain-ps7022\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"UpdatedText1\",\r\n \"subjectEndsWith\": \"Updatedtext2\"\r\n },\r\n \"labels\": null,\r\n \"expirationTimeUtc\": \"2022-10-15T22:53:11.1234102Z\",\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 12,\r\n \"eventTimeToLiveInMinutes\": 20\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7647\",\r\n \"name\": \"EventSubscription-ps7647\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4786?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM2OTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM0Nzg2P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7647?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM0MTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzNzAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3NjQ3P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "909648a2-72f9-40a0-8e5f-26908362244e" + "3924cc52-b576-4857-8513-6ee56657ee42" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1641,25 +1641,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8c41ac48-12ed-4020-9479-ffa677f986a1" + "99ac4695-2bed-4368-92b2-89e7a52875a0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11998" ], "x-ms-correlation-request-id": [ - "a1f21f65-e5a6-4e4d-9baf-1369511212b8" + "c4605014-8d73-4712-93bb-4bf68915959d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214600Z:a1f21f65-e5a6-4e4d-9baf-1369511212b8" + "WESTUS2:20221005T225334Z:c4605014-8d73-4712-93bb-4bf68915959d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:45:59 GMT" + "Wed, 05 Oct 2022 22:53:33 GMT" ], "Content-Length": [ "1090" @@ -1671,28 +1671,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6906/providers/microsoft.eventgrid/domains/pstestdomain-ps2691\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"UpdatedText1\",\r\n \"subjectEndsWith\": \"Updatedtext2\",\r\n \"advancedFilters\": [\r\n {\r\n \"value\": 205.12,\r\n \"operatorType\": \"NumberLessThan\",\r\n \"key\": \"Data.Key12\"\r\n }\r\n ]\r\n },\r\n \"labels\": null,\r\n \"expirationTimeUtc\": \"2022-05-11T21:45:38.4983606Z\",\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 12,\r\n \"eventTimeToLiveInMinutes\": 20\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4786\",\r\n \"name\": \"EventSubscription-ps4786\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps4173/providers/microsoft.eventgrid/domains/pstestdomain-ps7022\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"UpdatedText1\",\r\n \"subjectEndsWith\": \"Updatedtext2\",\r\n \"advancedFilters\": [\r\n {\r\n \"value\": 205.12,\r\n \"operatorType\": \"NumberLessThan\",\r\n \"key\": \"Data.Key12\"\r\n }\r\n ]\r\n },\r\n \"labels\": null,\r\n \"expirationTimeUtc\": \"2022-10-15T22:53:11.1234102Z\",\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 12,\r\n \"eventTimeToLiveInMinutes\": 20\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7647\",\r\n \"name\": \"EventSubscription-ps7647\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4786?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM2OTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM0Nzg2P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7647?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM0MTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzNzAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3NjQ3P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c162d126-52ef-4e55-a6f2-4864fd956602" + "21701dfe-b5f2-43a6-a958-0d202af2d7b7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1704,25 +1704,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "201c15d7-8f5f-47b8-b569-34ba8047a1e4" + "b19e2a30-b53e-4082-91d5-0296cd3a3bc2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11997" ], "x-ms-correlation-request-id": [ - "e1d69868-a1c8-4039-b6f0-50a8e2af2936" + "940c77ee-6cdd-4000-b0da-40850ff58c92" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214600Z:e1d69868-a1c8-4039-b6f0-50a8e2af2936" + "WESTUS2:20221005T225335Z:940c77ee-6cdd-4000-b0da-40850ff58c92" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:45:59 GMT" + "Wed, 05 Oct 2022 22:53:35 GMT" ], "Content-Length": [ "1090" @@ -1734,25 +1734,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6906/providers/microsoft.eventgrid/domains/pstestdomain-ps2691\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"UpdatedText1\",\r\n \"subjectEndsWith\": \"Updatedtext2\",\r\n \"advancedFilters\": [\r\n {\r\n \"value\": 205.12,\r\n \"operatorType\": \"NumberLessThan\",\r\n \"key\": \"Data.Key12\"\r\n }\r\n ]\r\n },\r\n \"labels\": null,\r\n \"expirationTimeUtc\": \"2022-05-11T21:45:38.4983606Z\",\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 12,\r\n \"eventTimeToLiveInMinutes\": 20\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4786\",\r\n \"name\": \"EventSubscription-ps4786\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps4173/providers/microsoft.eventgrid/domains/pstestdomain-ps7022\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"UpdatedText1\",\r\n \"subjectEndsWith\": \"Updatedtext2\",\r\n \"advancedFilters\": [\r\n {\r\n \"value\": 205.12,\r\n \"operatorType\": \"NumberLessThan\",\r\n \"key\": \"Data.Key12\"\r\n }\r\n ]\r\n },\r\n \"labels\": null,\r\n \"expirationTimeUtc\": \"2022-10-15T22:53:11.1234102Z\",\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 12,\r\n \"eventTimeToLiveInMinutes\": 20\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7647\",\r\n \"name\": \"EventSubscription-ps7647\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4786?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM2OTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM0Nzg2P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7647?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM0MTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzNzAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3NjQ3P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c162d126-52ef-4e55-a6f2-4864fd956602" + "21701dfe-b5f2-43a6-a958-0d202af2d7b7" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1764,25 +1764,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "85820820-e362-48de-b350-e8de897fb67b" + "1be94625-b92b-43f8-99cb-04166feb402a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11995" ], "x-ms-correlation-request-id": [ - "7b64fdc4-b293-4e7e-8446-a514cc97e02a" + "939792a2-b762-499d-917c-9565483831aa" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214610Z:7b64fdc4-b293-4e7e-8446-a514cc97e02a" + "WESTUS2:20221005T225346Z:939792a2-b762-499d-917c-9565483831aa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:46:10 GMT" + "Wed, 05 Oct 2022 22:53:46 GMT" ], "Content-Length": [ "1157" @@ -1794,28 +1794,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6906/providers/microsoft.eventgrid/domains/pstestdomain-ps2691\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"UpdatedText1\",\r\n \"subjectEndsWith\": \"Updatedtext2\",\r\n \"advancedFilters\": [\r\n {\r\n \"values\": [\r\n 1.0,\r\n 2.0\r\n ],\r\n \"operatorType\": \"NumberIn\",\r\n \"key\": \"Data.Key1\"\r\n },\r\n {\r\n \"value\": 12.1,\r\n \"operatorType\": \"NumberGreaterThan\",\r\n \"key\": \"Data.Key122\"\r\n }\r\n ]\r\n },\r\n \"labels\": null,\r\n \"expirationTimeUtc\": \"2022-05-11T21:45:38.4983606Z\",\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 12,\r\n \"eventTimeToLiveInMinutes\": 20\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4786\",\r\n \"name\": \"EventSubscription-ps4786\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps4173/providers/microsoft.eventgrid/domains/pstestdomain-ps7022\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"UpdatedText1\",\r\n \"subjectEndsWith\": \"Updatedtext2\",\r\n \"advancedFilters\": [\r\n {\r\n \"values\": [\r\n 1.0,\r\n 2.0\r\n ],\r\n \"operatorType\": \"NumberIn\",\r\n \"key\": \"Data.Key1\"\r\n },\r\n {\r\n \"value\": 12.1,\r\n \"operatorType\": \"NumberGreaterThan\",\r\n \"key\": \"Data.Key122\"\r\n }\r\n ]\r\n },\r\n \"labels\": null,\r\n \"expirationTimeUtc\": \"2022-10-15T22:53:11.1234102Z\",\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 12,\r\n \"eventTimeToLiveInMinutes\": 20\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7647\",\r\n \"name\": \"EventSubscription-ps7647\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4786/getFullUrl?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM2OTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM0Nzg2L2dldEZ1bGxVcmw/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7647/getFullUrl?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM0MTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzNzAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3NjQ3L2dldEZ1bGxVcmw/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f740ee0-43bd-4485-b81f-ddec5c672817" + "44039728-88f8-485e-93ba-f403c7d585c9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1827,7 +1827,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f9779099-69da-43fc-a172-4acb30a1cad4" + "6503d543-cc2b-4b93-b306-08ab9916aa0a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1836,16 +1836,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "fdc6dd6b-0ef3-4673-adde-12456daf1a93" + "9502b710-1749-4f1a-a985-b70f3db4e6a3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214538Z:fdc6dd6b-0ef3-4673-adde-12456daf1a93" + "WESTUS2:20221005T225311Z:9502b710-1749-4f1a-a985-b70f3db4e6a3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:45:37 GMT" + "Wed, 05 Oct 2022 22:53:11 GMT" ], "Content-Length": [ "188" @@ -1861,24 +1861,24 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4786/getFullUrl?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM2OTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM0Nzg2L2dldEZ1bGxVcmw/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7647/getFullUrl?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM0MTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzNzAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3NjQ3L2dldEZ1bGxVcmw/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "909648a2-72f9-40a0-8e5f-26908362244e" + "3924cc52-b576-4857-8513-6ee56657ee42" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1890,25 +1890,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a9b697ad-cb63-462c-aee2-c9c22d966e05" + "70d01f45-dd02-4ec5-87e1-e96b7914ce04" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "27663cc6-9a53-4bc3-9989-d6c3e6b8c4bf" + "c150cacd-7d0d-4b9a-800e-d156b71eb36e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214600Z:27663cc6-9a53-4bc3-9989-d6c3e6b8c4bf" + "WESTUS2:20221005T225334Z:c150cacd-7d0d-4b9a-800e-d156b71eb36e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:45:59 GMT" + "Wed, 05 Oct 2022 22:53:33 GMT" ], "Content-Length": [ "188" @@ -1924,22 +1924,21 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4786?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM2OTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM0Nzg2P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7647?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM0MTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzNzAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3NjQ3P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"UpdatedText1\",\r\n \"subjectEndsWith\": \"Updatedtext2\"\r\n },\r\n \"expirationTimeUtc\": \"2022-05-11T21:45:38.4983606Z\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 12,\r\n \"eventTimeToLiveInMinutes\": 20\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1f9c37cc-5a87-4902-930d-cee74946f4a3" + "4e089793-d0af-440d-9901-794ba26b525d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1948,6 +1947,7 @@ "255" ] }, + "RequestBody": "{\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"UpdatedText1\",\r\n \"subjectEndsWith\": \"Updatedtext2\"\r\n },\r\n \"expirationTimeUtc\": \"2022-10-15T22:53:11.1234102Z\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 12,\r\n \"eventTimeToLiveInMinutes\": 20\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1962,28 +1962,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/340BF349-DF6E-41D5-8202-3AA374BEAC01?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E8B78D29-B53C-4BC7-9DEA-00F56E2680AF?api-version=2022-06-15" ], "x-ms-request-id": [ - "3d05d7e5-1345-4ad6-b99c-06c85f1b99de" + "b58c0156-2d8b-47ba-8795-9338858477be" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "894" + "899" ], "x-ms-correlation-request-id": [ - "bbbb55af-5780-49a2-9ea9-5bed81b70de3" + "43f50917-9e03-47d1-8023-c0ec5fd34a9a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214539Z:bbbb55af-5780-49a2-9ea9-5bed81b70de3" + "WESTUS2:20221005T225312Z:43f50917-9e03-47d1-8023-c0ec5fd34a9a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:45:38 GMT" + "Wed, 05 Oct 2022 22:53:11 GMT" ], "Content-Length": [ "1001" @@ -1995,26 +1995,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6906/providers/microsoft.eventgrid/domains/pstestdomain-ps2691\",\r\n \"provisioningState\": \"Updating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"UpdatedText1\",\r\n \"subjectEndsWith\": \"Updatedtext2\"\r\n },\r\n \"labels\": null,\r\n \"expirationTimeUtc\": \"2022-05-11T21:45:38.4983606Z\",\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 12,\r\n \"eventTimeToLiveInMinutes\": 20\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4786\",\r\n \"name\": \"EventSubscription-ps4786\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps4173/providers/microsoft.eventgrid/domains/pstestdomain-ps7022\",\r\n \"provisioningState\": \"Updating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"UpdatedText1\",\r\n \"subjectEndsWith\": \"Updatedtext2\"\r\n },\r\n \"labels\": null,\r\n \"expirationTimeUtc\": \"2022-10-15T22:53:11.1234102Z\",\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 12,\r\n \"eventTimeToLiveInMinutes\": 20\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7647\",\r\n \"name\": \"EventSubscription-ps7647\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4786?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM2OTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM0Nzg2P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7647?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM0MTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzNzAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3NjQ3P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"UpdatedText1\",\r\n \"subjectEndsWith\": \"Updatedtext2\",\r\n \"advancedFilters\": [\r\n {\r\n \"operatorType\": \"NumberIn\",\r\n \"values\": [\r\n 1.0,\r\n 2.0\r\n ],\r\n \"key\": \"Data.Key1\"\r\n },\r\n {\r\n \"operatorType\": \"NumberGreaterThan\",\r\n \"value\": 12.1,\r\n \"key\": \"Data.Key122\"\r\n }\r\n ]\r\n },\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 12,\r\n \"eventTimeToLiveInMinutes\": 20\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c162d126-52ef-4e55-a6f2-4864fd956602" + "21701dfe-b5f2-43a6-a958-0d202af2d7b7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2023,6 +2022,7 @@ "499" ] }, + "RequestBody": "{\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"UpdatedText1\",\r\n \"subjectEndsWith\": \"Updatedtext2\",\r\n \"advancedFilters\": [\r\n {\r\n \"operatorType\": \"NumberIn\",\r\n \"values\": [\r\n 1.0,\r\n 2.0\r\n ],\r\n \"key\": \"Data.Key1\"\r\n },\r\n {\r\n \"operatorType\": \"NumberGreaterThan\",\r\n \"value\": 12.1,\r\n \"key\": \"Data.Key122\"\r\n }\r\n ]\r\n },\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 12,\r\n \"eventTimeToLiveInMinutes\": 20\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2037,28 +2037,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/138DC79A-8E0A-49A5-A80E-729695B163C5?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/5430F92D-8AF5-43DC-B252-C9B88691855E?api-version=2022-06-15" ], "x-ms-request-id": [ - "b119bb8a-eda8-4858-ae52-3dacfef6f485" + "fde35e21-3525-4ebd-82bc-11d4e867e42b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "892" + "899" ], "x-ms-correlation-request-id": [ - "8116f459-65a1-4d15-adad-a460d2fdd3f9" + "f0f60bf8-e0e4-4f92-afca-fc6af4fadb6f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214600Z:8116f459-65a1-4d15-adad-a460d2fdd3f9" + "WESTUS2:20221005T225336Z:f0f60bf8-e0e4-4f92-afca-fc6af4fadb6f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:46:00 GMT" + "Wed, 05 Oct 2022 22:53:36 GMT" ], "Content-Length": [ "1156" @@ -2070,25 +2070,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6906/providers/microsoft.eventgrid/domains/pstestdomain-ps2691\",\r\n \"provisioningState\": \"Updating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"UpdatedText1\",\r\n \"subjectEndsWith\": \"Updatedtext2\",\r\n \"advancedFilters\": [\r\n {\r\n \"values\": [\r\n 1.0,\r\n 2.0\r\n ],\r\n \"operatorType\": \"NumberIn\",\r\n \"key\": \"Data.Key1\"\r\n },\r\n {\r\n \"value\": 12.1,\r\n \"operatorType\": \"NumberGreaterThan\",\r\n \"key\": \"Data.Key122\"\r\n }\r\n ]\r\n },\r\n \"labels\": null,\r\n \"expirationTimeUtc\": \"2022-05-11T21:45:38.4983606Z\",\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 12,\r\n \"eventTimeToLiveInMinutes\": 20\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4786\",\r\n \"name\": \"EventSubscription-ps4786\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps4173/providers/microsoft.eventgrid/domains/pstestdomain-ps7022\",\r\n \"provisioningState\": \"Updating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"UpdatedText1\",\r\n \"subjectEndsWith\": \"Updatedtext2\",\r\n \"advancedFilters\": [\r\n {\r\n \"values\": [\r\n 1.0,\r\n 2.0\r\n ],\r\n \"operatorType\": \"NumberIn\",\r\n \"key\": \"Data.Key1\"\r\n },\r\n {\r\n \"value\": 12.1,\r\n \"operatorType\": \"NumberGreaterThan\",\r\n \"key\": \"Data.Key122\"\r\n }\r\n ]\r\n },\r\n \"labels\": null,\r\n \"expirationTimeUtc\": \"2022-10-15T22:53:11.1234102Z\",\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 12,\r\n \"eventTimeToLiveInMinutes\": 20\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7647\",\r\n \"name\": \"EventSubscription-ps7647\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/340BF349-DF6E-41D5-8202-3AA374BEAC01?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMzQwQkYzNDktREY2RS00MUQ1LTgyMDItM0FBMzc0QkVBQzAxP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E8B78D29-B53C-4BC7-9DEA-00F56E2680AF?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRThCNzhEMjktQjUzQy00QkM3LTlERUEtMDBGNTZFMjY4MEFGP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1f9c37cc-5a87-4902-930d-cee74946f4a3" + "4e089793-d0af-440d-9901-794ba26b525d" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2100,25 +2100,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9a5dd5c7-e009-441a-9848-85d46ba83081" + "5905a0f7-ca82-4770-9342-50c9c2a8eefc" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11998" ], "x-ms-correlation-request-id": [ - "ba8c2c8c-2119-453b-ba28-0ec79e11e936" + "378db394-121c-469a-8bba-1fdaddae0be7" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214549Z:ba8c2c8c-2119-453b-ba28-0ec79e11e936" + "WESTUS2:20221005T225322Z:378db394-121c-469a-8bba-1fdaddae0be7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:45:48 GMT" + "Wed, 05 Oct 2022 22:53:22 GMT" ], "Content-Length": [ "286" @@ -2130,28 +2130,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/340BF349-DF6E-41D5-8202-3AA374BEAC01?api-version=2021-12-01\",\r\n \"name\": \"340bf349-df6e-41d5-8202-3aa374beac01\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E8B78D29-B53C-4BC7-9DEA-00F56E2680AF?api-version=2022-06-15\",\r\n \"name\": \"e8b78d29-b53c-4bc7-9dea-00f56e2680af\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6906/providers/microsoft.eventgrid/domains/pstestdomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4786?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9yZ25hbWUtcHM2OTA2L3Byb3ZpZGVycy9taWNyb3NvZnQuZXZlbnRncmlkL2RvbWFpbnMvcHN0ZXN0ZG9tYWluLXBzMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM0Nzg2P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps4173/providers/microsoft.eventgrid/domains/pstestdomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7647?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9yZ25hbWUtcHM0MTczL3Byb3ZpZGVycy9taWNyb3NvZnQuZXZlbnRncmlkL2RvbWFpbnMvcHN0ZXN0ZG9tYWluLXBzNzAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3NjQ3P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c9961bb8-7e8e-4c65-8102-0b9cc78201be" + "6fab3e36-d500-4e67-b823-1768dbf12e7c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2163,25 +2163,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6a149ba9-ae61-49b1-8667-840812bb4ab0" + "39b6a4ae-fe5d-4d43-a62b-78162964f141" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11996" ], "x-ms-correlation-request-id": [ - "03f9fca2-0408-4052-9f92-b8e1eed18eac" + "4eabfe89-f23f-48de-a48c-9e66ac1ace76" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214549Z:03f9fca2-0408-4052-9f92-b8e1eed18eac" + "WESTUS2:20221005T225323Z:4eabfe89-f23f-48de-a48c-9e66ac1ace76" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:45:48 GMT" + "Wed, 05 Oct 2022 22:53:23 GMT" ], "Content-Length": [ "1002" @@ -2193,25 +2193,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6906/providers/microsoft.eventgrid/domains/pstestdomain-ps2691\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"UpdatedText1\",\r\n \"subjectEndsWith\": \"Updatedtext2\"\r\n },\r\n \"labels\": null,\r\n \"expirationTimeUtc\": \"2022-05-11T21:45:38.4983606Z\",\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 12,\r\n \"eventTimeToLiveInMinutes\": 20\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4786\",\r\n \"name\": \"EventSubscription-ps4786\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps4173/providers/microsoft.eventgrid/domains/pstestdomain-ps7022\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"UpdatedText1\",\r\n \"subjectEndsWith\": \"Updatedtext2\"\r\n },\r\n \"labels\": null,\r\n \"expirationTimeUtc\": \"2022-10-15T22:53:11.1234102Z\",\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 12,\r\n \"eventTimeToLiveInMinutes\": 20\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7647\",\r\n \"name\": \"EventSubscription-ps7647\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6906/providers/microsoft.eventgrid/domains/pstestdomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4786?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9yZ25hbWUtcHM2OTA2L3Byb3ZpZGVycy9taWNyb3NvZnQuZXZlbnRncmlkL2RvbWFpbnMvcHN0ZXN0ZG9tYWluLXBzMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM0Nzg2P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps4173/providers/microsoft.eventgrid/domains/pstestdomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7647?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9yZ25hbWUtcHM0MTczL3Byb3ZpZGVycy9taWNyb3NvZnQuZXZlbnRncmlkL2RvbWFpbnMvcHN0ZXN0ZG9tYWluLXBzNzAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3NjQ3P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c9961bb8-7e8e-4c65-8102-0b9cc78201be" + "6fab3e36-d500-4e67-b823-1768dbf12e7c" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2223,25 +2223,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6ff446bb-4780-4aa8-829b-2c33f21763f4" + "9b947e4d-7eb2-4013-a637-ef189a5c2e4c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11994" ], "x-ms-correlation-request-id": [ - "389b4463-9de1-469a-a4d9-33cd27ef0a58" + "2bab8339-1a78-417a-981b-a92ee0372c76" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214559Z:389b4463-9de1-469a-a4d9-33cd27ef0a58" + "WESTUS2:20221005T225334Z:2bab8339-1a78-417a-981b-a92ee0372c76" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:45:59 GMT" + "Wed, 05 Oct 2022 22:53:33 GMT" ], "Content-Length": [ "1090" @@ -2253,26 +2253,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6906/providers/microsoft.eventgrid/domains/pstestdomain-ps2691\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"UpdatedText1\",\r\n \"subjectEndsWith\": \"Updatedtext2\",\r\n \"advancedFilters\": [\r\n {\r\n \"value\": 205.12,\r\n \"operatorType\": \"NumberLessThan\",\r\n \"key\": \"Data.Key12\"\r\n }\r\n ]\r\n },\r\n \"labels\": null,\r\n \"expirationTimeUtc\": \"2022-05-11T21:45:38.4983606Z\",\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 12,\r\n \"eventTimeToLiveInMinutes\": 20\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4786\",\r\n \"name\": \"EventSubscription-ps4786\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps4173/providers/microsoft.eventgrid/domains/pstestdomain-ps7022\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"UpdatedText1\",\r\n \"subjectEndsWith\": \"Updatedtext2\",\r\n \"advancedFilters\": [\r\n {\r\n \"value\": 205.12,\r\n \"operatorType\": \"NumberLessThan\",\r\n \"key\": \"Data.Key12\"\r\n }\r\n ]\r\n },\r\n \"labels\": null,\r\n \"expirationTimeUtc\": \"2022-10-15T22:53:11.1234102Z\",\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 12,\r\n \"eventTimeToLiveInMinutes\": 20\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7647\",\r\n \"name\": \"EventSubscription-ps7647\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6906/providers/microsoft.eventgrid/domains/pstestdomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4786?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9yZ25hbWUtcHM2OTA2L3Byb3ZpZGVycy9taWNyb3NvZnQuZXZlbnRncmlkL2RvbWFpbnMvcHN0ZXN0ZG9tYWluLXBzMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM0Nzg2P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps4173/providers/microsoft.eventgrid/domains/pstestdomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7647?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9yZ25hbWUtcHM0MTczL3Byb3ZpZGVycy9taWNyb3NvZnQuZXZlbnRncmlkL2RvbWFpbnMvcHN0ZXN0ZG9tYWluLXBzNzAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3NjQ3P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"UpdatedText1\",\r\n \"subjectEndsWith\": \"Updatedtext2\",\r\n \"advancedFilters\": [\r\n {\r\n \"operatorType\": \"NumberLessThan\",\r\n \"value\": 205.12,\r\n \"key\": \"Data.Key12\"\r\n }\r\n ]\r\n },\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 12,\r\n \"eventTimeToLiveInMinutes\": 20\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c9961bb8-7e8e-4c65-8102-0b9cc78201be" + "6fab3e36-d500-4e67-b823-1768dbf12e7c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2281,6 +2280,7 @@ "349" ] }, + "RequestBody": "{\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"UpdatedText1\",\r\n \"subjectEndsWith\": \"Updatedtext2\",\r\n \"advancedFilters\": [\r\n {\r\n \"operatorType\": \"NumberLessThan\",\r\n \"value\": 205.12,\r\n \"key\": \"Data.Key12\"\r\n }\r\n ]\r\n },\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 12,\r\n \"eventTimeToLiveInMinutes\": 20\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2295,28 +2295,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4F18AB29-DCC0-4918-B275-4520809B0295?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/5EA94C37-677E-40AD-9C25-753A987441CF?api-version=2022-06-15" ], "x-ms-request-id": [ - "35b7517a-c66c-4379-af29-58491d3b978c" + "5878376e-548d-4f8e-89a2-4a7e61c73bbe" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "893" + "899" ], "x-ms-correlation-request-id": [ - "bea18ea9-94a7-4ef1-8059-c51e6feb449c" + "42600244-f269-4f2f-903c-d5b674ec22ed" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214549Z:bea18ea9-94a7-4ef1-8059-c51e6feb449c" + "WESTUS2:20221005T225324Z:42600244-f269-4f2f-903c-d5b674ec22ed" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:45:48 GMT" + "Wed, 05 Oct 2022 22:53:23 GMT" ], "Content-Length": [ "1089" @@ -2328,25 +2328,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6906/providers/microsoft.eventgrid/domains/pstestdomain-ps2691\",\r\n \"provisioningState\": \"Updating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"UpdatedText1\",\r\n \"subjectEndsWith\": \"Updatedtext2\",\r\n \"advancedFilters\": [\r\n {\r\n \"value\": 205.12,\r\n \"operatorType\": \"NumberLessThan\",\r\n \"key\": \"Data.Key12\"\r\n }\r\n ]\r\n },\r\n \"labels\": null,\r\n \"expirationTimeUtc\": \"2022-05-11T21:45:38.4983606Z\",\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 12,\r\n \"eventTimeToLiveInMinutes\": 20\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4786\",\r\n \"name\": \"EventSubscription-ps4786\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps4173/providers/microsoft.eventgrid/domains/pstestdomain-ps7022\",\r\n \"provisioningState\": \"Updating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"UpdatedText1\",\r\n \"subjectEndsWith\": \"Updatedtext2\",\r\n \"advancedFilters\": [\r\n {\r\n \"value\": 205.12,\r\n \"operatorType\": \"NumberLessThan\",\r\n \"key\": \"Data.Key12\"\r\n }\r\n ]\r\n },\r\n \"labels\": null,\r\n \"expirationTimeUtc\": \"2022-10-15T22:53:11.1234102Z\",\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 12,\r\n \"eventTimeToLiveInMinutes\": 20\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7647\",\r\n \"name\": \"EventSubscription-ps7647\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4F18AB29-DCC0-4918-B275-4520809B0295?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNEYxOEFCMjktRENDMC00OTE4LUIyNzUtNDUyMDgwOUIwMjk1P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/5EA94C37-677E-40AD-9C25-753A987441CF?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNUVBOTRDMzctNjc3RS00MEFELTlDMjUtNzUzQTk4NzQ0MUNGP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c9961bb8-7e8e-4c65-8102-0b9cc78201be" + "6fab3e36-d500-4e67-b823-1768dbf12e7c" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2358,25 +2358,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1a990582-5e3b-4cf1-8f6c-d3b57cbf2b6e" + "4f9f33c3-a6a8-4a88-a05d-799679a10277" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11995" ], "x-ms-correlation-request-id": [ - "6792cafc-9055-4d22-8985-b1c14c16eeab" + "3f76e2f8-29b1-42b9-a2c1-ce5c64d8fd9b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214559Z:6792cafc-9055-4d22-8985-b1c14c16eeab" + "WESTUS2:20221005T225334Z:3f76e2f8-29b1-42b9-a2c1-ce5c64d8fd9b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:45:59 GMT" + "Wed, 05 Oct 2022 22:53:33 GMT" ], "Content-Length": [ "286" @@ -2388,25 +2388,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4F18AB29-DCC0-4918-B275-4520809B0295?api-version=2021-12-01\",\r\n \"name\": \"4f18ab29-dcc0-4918-b275-4520809b0295\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/5EA94C37-677E-40AD-9C25-753A987441CF?api-version=2022-06-15\",\r\n \"name\": \"5ea94c37-677e-40ad-9c25-753a987441cf\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/138DC79A-8E0A-49A5-A80E-729695B163C5?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMTM4REM3OUEtOEUwQS00OUE1LUE4MEUtNzI5Njk1QjE2M0M1P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/5430F92D-8AF5-43DC-B252-C9B88691855E?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNTQzMEY5MkQtOEFGNS00M0RDLUIyNTItQzlCODg2OTE4NTVFP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c162d126-52ef-4e55-a6f2-4864fd956602" + "21701dfe-b5f2-43a6-a958-0d202af2d7b7" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2418,25 +2418,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a0ab0f09-a094-48bb-94d0-94ec050c5e4e" + "fdbaca11-531e-4803-91cb-ae9e25894c10" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11996" ], "x-ms-correlation-request-id": [ - "f456d6ec-568f-4962-ae29-ca7cd7f87219" + "13889bb8-ca7b-4a39-b238-f12fb65cb406" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214610Z:f456d6ec-568f-4962-ae29-ca7cd7f87219" + "WESTUS2:20221005T225346Z:13889bb8-ca7b-4a39-b238-f12fb65cb406" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:46:10 GMT" + "Wed, 05 Oct 2022 22:53:46 GMT" ], "Content-Length": [ "286" @@ -2448,28 +2448,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/138DC79A-8E0A-49A5-A80E-729695B163C5?api-version=2021-12-01\",\r\n \"name\": \"138dc79a-8e0a-49a5-a80e-729695b163c5\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/5430F92D-8AF5-43DC-B252-C9B88691855E?api-version=2022-06-15\",\r\n \"name\": \"5430f92d-8af5-43dc-b252-c9b88691855e\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczY5MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHMyNjkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQxNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM3MDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09c9ff66-ec4b-411a-957a-29845317a04e" + "7a4c34f8-7c04-4aa8-b383-93df26a12d01" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2481,25 +2481,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cf45ef1e-d092-40a9-8097-df5421188156" + "cd640831-a1c2-465f-a74f-c990f2c7bf97" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11999" ], "x-ms-correlation-request-id": [ - "487863f6-9e19-4a3e-93a6-520784626816" + "e6216912-06c1-426a-bad4-8243bbaa5fbe" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214611Z:487863f6-9e19-4a3e-93a6-520784626816" + "WESTUS2:20221005T225347Z:e6216912-06c1-426a-bad4-8243bbaa5fbe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:46:10 GMT" + "Wed, 05 Oct 2022 22:53:46 GMT" ], "Content-Length": [ "4079" @@ -2511,28 +2511,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6906/providers/microsoft.eventgrid/domains/pstestdomain-ps2691\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8359\",\r\n \"name\": \"EventSubscription-ps8359\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6906/providers/microsoft.eventgrid/domains/pstestdomain-ps2691\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps1909\",\r\n \"name\": \"EventSubscription-ps1909\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6906/providers/microsoft.eventgrid/domains/pstestdomain-ps2691\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps2335\",\r\n \"name\": \"EventSubscription-ps2335\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6906/providers/microsoft.eventgrid/domains/pstestdomain-ps2691\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"UpdatedText1\",\r\n \"subjectEndsWith\": \"Updatedtext2\",\r\n \"advancedFilters\": [\r\n {\r\n \"values\": [\r\n 1.0,\r\n 2.0\r\n ],\r\n \"operatorType\": \"NumberIn\",\r\n \"key\": \"Data.Key1\"\r\n },\r\n {\r\n \"value\": 12.1,\r\n \"operatorType\": \"NumberGreaterThan\",\r\n \"key\": \"Data.Key122\"\r\n }\r\n ]\r\n },\r\n \"labels\": null,\r\n \"expirationTimeUtc\": \"2022-05-11T21:45:38.4983606Z\",\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 12,\r\n \"eventTimeToLiveInMinutes\": 20\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4786\",\r\n \"name\": \"EventSubscription-ps4786\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps4173/providers/microsoft.eventgrid/domains/pstestdomain-ps7022\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps9557\",\r\n \"name\": \"EventSubscription-ps9557\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps4173/providers/microsoft.eventgrid/domains/pstestdomain-ps7022\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4831\",\r\n \"name\": \"EventSubscription-ps4831\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps4173/providers/microsoft.eventgrid/domains/pstestdomain-ps7022\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps2823\",\r\n \"name\": \"EventSubscription-ps2823\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps4173/providers/microsoft.eventgrid/domains/pstestdomain-ps7022\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"UpdatedText1\",\r\n \"subjectEndsWith\": \"Updatedtext2\",\r\n \"advancedFilters\": [\r\n {\r\n \"values\": [\r\n 1.0,\r\n 2.0\r\n ],\r\n \"operatorType\": \"NumberIn\",\r\n \"key\": \"Data.Key1\"\r\n },\r\n {\r\n \"value\": 12.1,\r\n \"operatorType\": \"NumberGreaterThan\",\r\n \"key\": \"Data.Key122\"\r\n }\r\n ]\r\n },\r\n \"labels\": null,\r\n \"expirationTimeUtc\": \"2022-10-15T22:53:11.1234102Z\",\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 12,\r\n \"eventTimeToLiveInMinutes\": 20\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7647\",\r\n \"name\": \"EventSubscription-ps7647\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczY5MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHMyNjkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQxNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM3MDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "070f7cf9-87bb-4967-90a9-03f0a9c598f0" + "f910a6d7-527c-4b8c-8a76-9a241049536d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2544,25 +2544,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8ca6f784-844f-4465-96fe-a187649f70c3" + "a9264896-106f-446e-9088-e17c9899105b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11999" ], "x-ms-correlation-request-id": [ - "d0ee37f2-8263-43fe-84f1-614339254222" + "27bfa72e-791e-479a-8fb6-9141a3b50d6f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214611Z:d0ee37f2-8263-43fe-84f1-614339254222" + "WESTUS2:20221005T225348Z:27bfa72e-791e-479a-8fb6-9141a3b50d6f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:46:11 GMT" + "Wed, 05 Oct 2022 22:53:47 GMT" ], "Content-Length": [ "4079" @@ -2574,28 +2574,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6906/providers/microsoft.eventgrid/domains/pstestdomain-ps2691\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8359\",\r\n \"name\": \"EventSubscription-ps8359\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6906/providers/microsoft.eventgrid/domains/pstestdomain-ps2691\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps1909\",\r\n \"name\": \"EventSubscription-ps1909\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6906/providers/microsoft.eventgrid/domains/pstestdomain-ps2691\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps2335\",\r\n \"name\": \"EventSubscription-ps2335\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6906/providers/microsoft.eventgrid/domains/pstestdomain-ps2691\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"UpdatedText1\",\r\n \"subjectEndsWith\": \"Updatedtext2\",\r\n \"advancedFilters\": [\r\n {\r\n \"values\": [\r\n 1.0,\r\n 2.0\r\n ],\r\n \"operatorType\": \"NumberIn\",\r\n \"key\": \"Data.Key1\"\r\n },\r\n {\r\n \"value\": 12.1,\r\n \"operatorType\": \"NumberGreaterThan\",\r\n \"key\": \"Data.Key122\"\r\n }\r\n ]\r\n },\r\n \"labels\": null,\r\n \"expirationTimeUtc\": \"2022-05-11T21:45:38.4983606Z\",\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 12,\r\n \"eventTimeToLiveInMinutes\": 20\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4786\",\r\n \"name\": \"EventSubscription-ps4786\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps4173/providers/microsoft.eventgrid/domains/pstestdomain-ps7022\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps9557\",\r\n \"name\": \"EventSubscription-ps9557\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps4173/providers/microsoft.eventgrid/domains/pstestdomain-ps7022\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4831\",\r\n \"name\": \"EventSubscription-ps4831\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps4173/providers/microsoft.eventgrid/domains/pstestdomain-ps7022\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps2823\",\r\n \"name\": \"EventSubscription-ps2823\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps4173/providers/microsoft.eventgrid/domains/pstestdomain-ps7022\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"UpdatedText1\",\r\n \"subjectEndsWith\": \"Updatedtext2\",\r\n \"advancedFilters\": [\r\n {\r\n \"values\": [\r\n 1.0,\r\n 2.0\r\n ],\r\n \"operatorType\": \"NumberIn\",\r\n \"key\": \"Data.Key1\"\r\n },\r\n {\r\n \"value\": 12.1,\r\n \"operatorType\": \"NumberGreaterThan\",\r\n \"key\": \"Data.Key122\"\r\n }\r\n ]\r\n },\r\n \"labels\": null,\r\n \"expirationTimeUtc\": \"2022-10-15T22:53:11.1234102Z\",\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 12,\r\n \"eventTimeToLiveInMinutes\": 20\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7647\",\r\n \"name\": \"EventSubscription-ps7647\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczY5MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHMyNjkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQxNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM3MDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69ad4198-08ef-4999-bade-9a75223dd5fc" + "86fc1ce1-44f9-4929-943b-60b50a672d22" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2607,25 +2607,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4d0ba126-d0ef-4096-bdbf-6c1897eeb434" + "46989c25-e905-4f3c-b99d-2800a530b21b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11999" ], "x-ms-correlation-request-id": [ - "72953bda-009a-43fb-b3f8-d48c06728dce" + "06403f2d-0ae6-4635-90c2-9fd9ac45aa67" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214633Z:72953bda-009a-43fb-b3f8-d48c06728dce" + "WESTUS2:20221005T225411Z:06403f2d-0ae6-4635-90c2-9fd9ac45aa67" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:46:32 GMT" + "Wed, 05 Oct 2022 22:54:11 GMT" ], "Content-Length": [ "2139" @@ -2637,28 +2637,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6906/providers/microsoft.eventgrid/domains/pstestdomain-ps2691\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps2335\",\r\n \"name\": \"EventSubscription-ps2335\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6906/providers/microsoft.eventgrid/domains/pstestdomain-ps2691\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"UpdatedText1\",\r\n \"subjectEndsWith\": \"Updatedtext2\",\r\n \"advancedFilters\": [\r\n {\r\n \"values\": [\r\n 1.0,\r\n 2.0\r\n ],\r\n \"operatorType\": \"NumberIn\",\r\n \"key\": \"Data.Key1\"\r\n },\r\n {\r\n \"value\": 12.1,\r\n \"operatorType\": \"NumberGreaterThan\",\r\n \"key\": \"Data.Key122\"\r\n }\r\n ]\r\n },\r\n \"labels\": null,\r\n \"expirationTimeUtc\": \"2022-05-11T21:45:38.4983606Z\",\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 12,\r\n \"eventTimeToLiveInMinutes\": 20\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4786\",\r\n \"name\": \"EventSubscription-ps4786\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps4173/providers/microsoft.eventgrid/domains/pstestdomain-ps7022\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps2823\",\r\n \"name\": \"EventSubscription-ps2823\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps4173/providers/microsoft.eventgrid/domains/pstestdomain-ps7022\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"UpdatedText1\",\r\n \"subjectEndsWith\": \"Updatedtext2\",\r\n \"advancedFilters\": [\r\n {\r\n \"values\": [\r\n 1.0,\r\n 2.0\r\n ],\r\n \"operatorType\": \"NumberIn\",\r\n \"key\": \"Data.Key1\"\r\n },\r\n {\r\n \"value\": 12.1,\r\n \"operatorType\": \"NumberGreaterThan\",\r\n \"key\": \"Data.Key122\"\r\n }\r\n ]\r\n },\r\n \"labels\": null,\r\n \"expirationTimeUtc\": \"2022-10-15T22:53:11.1234102Z\",\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 12,\r\n \"eventTimeToLiveInMinutes\": 20\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7647\",\r\n \"name\": \"EventSubscription-ps7647\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczY5MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHMyNjkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQxNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM3MDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e76075cb-4784-4aa4-b1d0-2308148bc562" + "4173605a-8bfd-414b-b2b6-18e94c4e0bde" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2670,25 +2670,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c0c388fc-afc4-4c31-bb7d-ba61f7f38ff1" + "d72c303b-95bf-46a0-9f9b-270f5712589c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11998" ], "x-ms-correlation-request-id": [ - "a0971ee1-07c3-4130-b4b6-7a47a65eca94" + "01efdb78-d594-4158-84ee-6c37a0f2b0a4" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214654Z:a0971ee1-07c3-4130-b4b6-7a47a65eca94" + "WESTUS2:20221005T225434Z:01efdb78-d594-4158-84ee-6c37a0f2b0a4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:46:54 GMT" + "Wed, 05 Oct 2022 22:54:34 GMT" ], "Content-Length": [ "12" @@ -2704,24 +2704,24 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6906/providers/microsoft.eventgrid/domains/pstestdomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8359/getFullUrl?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9yZ25hbWUtcHM2OTA2L3Byb3ZpZGVycy9taWNyb3NvZnQuZXZlbnRncmlkL2RvbWFpbnMvcHN0ZXN0ZG9tYWluLXBzMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM4MzU5L2dldEZ1bGxVcmw/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps4173/providers/microsoft.eventgrid/domains/pstestdomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps9557/getFullUrl?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9yZ25hbWUtcHM0MTczL3Byb3ZpZGVycy9taWNyb3NvZnQuZXZlbnRncmlkL2RvbWFpbnMvcHN0ZXN0ZG9tYWluLXBzNzAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM5NTU3L2dldEZ1bGxVcmw/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09c9ff66-ec4b-411a-957a-29845317a04e" + "7a4c34f8-7c04-4aa8-b383-93df26a12d01" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2733,25 +2733,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5e9f7f67-b34d-4408-8ddf-d0b19a3619c8" + "8afef810-9922-470b-867b-6b7dca2f6e56" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "a0eff7bd-5147-4dd0-97ce-0b50f536c68b" + "802703e9-6b31-4936-8661-289ba4f2ac2e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214611Z:a0eff7bd-5147-4dd0-97ce-0b50f536c68b" + "WESTUS2:20221005T225347Z:802703e9-6b31-4936-8661-289ba4f2ac2e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:46:10 GMT" + "Wed, 05 Oct 2022 22:53:46 GMT" ], "Content-Length": [ "188" @@ -2767,24 +2767,24 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6906/providers/microsoft.eventgrid/domains/pstestdomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps1909/getFullUrl?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9yZ25hbWUtcHM2OTA2L3Byb3ZpZGVycy9taWNyb3NvZnQuZXZlbnRncmlkL2RvbWFpbnMvcHN0ZXN0ZG9tYWluLXBzMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHMxOTA5L2dldEZ1bGxVcmw/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps4173/providers/microsoft.eventgrid/domains/pstestdomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4831/getFullUrl?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9yZ25hbWUtcHM0MTczL3Byb3ZpZGVycy9taWNyb3NvZnQuZXZlbnRncmlkL2RvbWFpbnMvcHN0ZXN0ZG9tYWluLXBzNzAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM0ODMxL2dldEZ1bGxVcmw/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09c9ff66-ec4b-411a-957a-29845317a04e" + "7a4c34f8-7c04-4aa8-b383-93df26a12d01" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2796,25 +2796,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6516d2f9-e1c6-4da7-a489-1989966ce64e" + "2f034e2b-2a6d-4c47-98f3-afcfe9a0bd01" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "a9e99e91-4fda-4623-a733-8c720619ca1a" + "26ec43fd-ef59-4ffe-b836-08f1e9b5d872" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214611Z:a9e99e91-4fda-4623-a733-8c720619ca1a" + "WESTUS2:20221005T225347Z:26ec43fd-ef59-4ffe-b836-08f1e9b5d872" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:46:10 GMT" + "Wed, 05 Oct 2022 22:53:46 GMT" ], "Content-Length": [ "188" @@ -2830,24 +2830,24 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6906/providers/microsoft.eventgrid/domains/pstestdomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps2335/getFullUrl?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9yZ25hbWUtcHM2OTA2L3Byb3ZpZGVycy9taWNyb3NvZnQuZXZlbnRncmlkL2RvbWFpbnMvcHN0ZXN0ZG9tYWluLXBzMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHMyMzM1L2dldEZ1bGxVcmw/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps4173/providers/microsoft.eventgrid/domains/pstestdomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps2823/getFullUrl?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9yZ25hbWUtcHM0MTczL3Byb3ZpZGVycy9taWNyb3NvZnQuZXZlbnRncmlkL2RvbWFpbnMvcHN0ZXN0ZG9tYWluLXBzNzAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHMyODIzL2dldEZ1bGxVcmw/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09c9ff66-ec4b-411a-957a-29845317a04e" + "7a4c34f8-7c04-4aa8-b383-93df26a12d01" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2859,25 +2859,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "87d9ad1a-bd7c-4950-b318-610e06084d78" + "7c54b708-5a47-44ef-8f69-13a7c09a32c7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1197" ], "x-ms-correlation-request-id": [ - "ec0dfc61-8efa-4fae-a652-ad5113ad897e" + "ba52400f-219f-4305-a332-fa5b1e801a21" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214611Z:ec0dfc61-8efa-4fae-a652-ad5113ad897e" + "WESTUS2:20221005T225347Z:ba52400f-219f-4305-a332-fa5b1e801a21" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:46:10 GMT" + "Wed, 05 Oct 2022 22:53:47 GMT" ], "Content-Length": [ "188" @@ -2893,24 +2893,24 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6906/providers/microsoft.eventgrid/domains/pstestdomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4786/getFullUrl?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9yZ25hbWUtcHM2OTA2L3Byb3ZpZGVycy9taWNyb3NvZnQuZXZlbnRncmlkL2RvbWFpbnMvcHN0ZXN0ZG9tYWluLXBzMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM0Nzg2L2dldEZ1bGxVcmw/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps4173/providers/microsoft.eventgrid/domains/pstestdomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7647/getFullUrl?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9yZ25hbWUtcHM0MTczL3Byb3ZpZGVycy9taWNyb3NvZnQuZXZlbnRncmlkL2RvbWFpbnMvcHN0ZXN0ZG9tYWluLXBzNzAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3NjQ3L2dldEZ1bGxVcmw/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09c9ff66-ec4b-411a-957a-29845317a04e" + "7a4c34f8-7c04-4aa8-b383-93df26a12d01" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2922,25 +2922,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7e4b318e-f794-461f-aadc-c08239decc7e" + "ea246e94-d303-4885-9427-fc5e5399255f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1196" ], "x-ms-correlation-request-id": [ - "cd832901-16d8-4b50-abc9-f76d739376aa" + "646ac203-1a94-416b-86a0-6e8ae0e93955" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214611Z:cd832901-16d8-4b50-abc9-f76d739376aa" + "WESTUS2:20221005T225347Z:646ac203-1a94-416b-86a0-6e8ae0e93955" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:46:10 GMT" + "Wed, 05 Oct 2022 22:53:47 GMT" ], "Content-Length": [ "188" @@ -2956,24 +2956,24 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8359?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM2OTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM4MzU5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps9557?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM0MTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzNzAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM5NTU3P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7891b1d5-0c9b-42d2-8fad-7c347b6946c0" + "4531c285-5559-4e7c-8108-18c950da9465" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2982,7 +2982,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/3066EAE8-7097-4BF7-AE6E-3E179BDC2BCF?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/EB13DDB9-E67A-456D-ABDC-C57517A4F8B1?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -2991,7 +2991,7 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/3066EAE8-7097-4BF7-AE6E-3E179BDC2BCF?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/EB13DDB9-E67A-456D-ABDC-C57517A4F8B1?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3000,19 +3000,19 @@ "14999" ], "x-ms-request-id": [ - "30044e0e-f614-4a92-91d6-abc1de9b38f0" + "70036388-333b-4a6b-a2b7-0c88effb9c8b" ], "x-ms-correlation-request-id": [ - "30044e0e-f614-4a92-91d6-abc1de9b38f0" + "70036388-333b-4a6b-a2b7-0c88effb9c8b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214612Z:30044e0e-f614-4a92-91d6-abc1de9b38f0" + "WESTUS2:20221005T225349Z:70036388-333b-4a6b-a2b7-0c88effb9c8b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:46:11 GMT" + "Wed, 05 Oct 2022 22:53:48 GMT" ], "Expires": [ "-1" @@ -3025,21 +3025,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/3066EAE8-7097-4BF7-AE6E-3E179BDC2BCF?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMzA2NkVBRTgtNzA5Ny00QkY3LUFFNkUtM0UxNzlCREMyQkNGP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/EB13DDB9-E67A-456D-ABDC-C57517A4F8B1?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRUIxM0REQjktRTY3QS00NTZELUFCREMtQzU3NTE3QTRGOEIxP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7891b1d5-0c9b-42d2-8fad-7c347b6946c0" + "4531c285-5559-4e7c-8108-18c950da9465" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3051,25 +3051,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f8814b41-4b19-4014-83a6-f2848198a4bf" + "19ace2fa-a377-4de7-88ad-f16eb221b8c5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11999" ], "x-ms-correlation-request-id": [ - "c40704e2-73e1-4543-89a1-7a9a0650a464" + "ed7271cd-5a82-4a0f-b43d-86913aea63d7" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214622Z:c40704e2-73e1-4543-89a1-7a9a0650a464" + "WESTUS2:20221005T225359Z:ed7271cd-5a82-4a0f-b43d-86913aea63d7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:46:21 GMT" + "Wed, 05 Oct 2022 22:53:58 GMT" ], "Content-Length": [ "286" @@ -3081,25 +3081,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/3066EAE8-7097-4BF7-AE6E-3E179BDC2BCF?api-version=2021-12-01\",\r\n \"name\": \"3066eae8-7097-4bf7-ae6e-3e179bdc2bcf\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/EB13DDB9-E67A-456D-ABDC-C57517A4F8B1?api-version=2022-06-15\",\r\n \"name\": \"eb13ddb9-e67a-456d-abdc-c57517a4f8b1\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/3066EAE8-7097-4BF7-AE6E-3E179BDC2BCF?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMzA2NkVBRTgtNzA5Ny00QkY3LUFFNkUtM0UxNzlCREMyQkNGP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/EB13DDB9-E67A-456D-ABDC-C57517A4F8B1?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvRUIxM0REQjktRTY3QS00NTZELUFCREMtQzU3NTE3QTRGOEIxP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7891b1d5-0c9b-42d2-8fad-7c347b6946c0" + "4531c285-5559-4e7c-8108-18c950da9465" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3111,25 +3111,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e8ec37c1-2963-446a-b78d-d020b39edf31" + "3c998d2f-4d33-454f-b655-917dd179341d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11998" ], "x-ms-correlation-request-id": [ - "eaaa59b0-a3ea-439c-964b-4f627ed8a517" + "842656fb-427f-4b4d-909c-3dfc3d44ecbb" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214622Z:eaaa59b0-a3ea-439c-964b-4f627ed8a517" + "WESTUS2:20221005T225359Z:842656fb-427f-4b4d-909c-3dfc3d44ecbb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:46:21 GMT" + "Wed, 05 Oct 2022 22:53:58 GMT" ], "Expires": [ "-1" @@ -3142,24 +3142,24 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps1909?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM2OTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHMxOTA5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4831?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM0MTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzNzAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM0ODMxP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2af64622-0f48-484c-ac40-531a5f576c30" + "daa28b41-a394-4c1c-94e6-cf3d702e3dca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3168,7 +3168,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/038985E6-0BD0-4241-AFC8-BA0492090F13?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/1EC7D898-2EEC-4584-99E3-F4AC3EB73803?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -3177,28 +3177,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/038985E6-0BD0-4241-AFC8-BA0492090F13?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/1EC7D898-2EEC-4584-99E3-F4AC3EB73803?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-request-id": [ - "7f314062-2c9c-44ba-9125-79174c23d644" + "f553e9f9-6909-45e9-ae60-1294a3469ba6" ], "x-ms-correlation-request-id": [ - "7f314062-2c9c-44ba-9125-79174c23d644" + "f553e9f9-6909-45e9-ae60-1294a3469ba6" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214623Z:7f314062-2c9c-44ba-9125-79174c23d644" + "WESTUS2:20221005T225400Z:f553e9f9-6909-45e9-ae60-1294a3469ba6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:46:22 GMT" + "Wed, 05 Oct 2022 22:53:59 GMT" ], "Expires": [ "-1" @@ -3211,21 +3211,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/038985E6-0BD0-4241-AFC8-BA0492090F13?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMDM4OTg1RTYtMEJEMC00MjQxLUFGQzgtQkEwNDkyMDkwRjEzP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/1EC7D898-2EEC-4584-99E3-F4AC3EB73803?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMUVDN0Q4OTgtMkVFQy00NTg0LTk5RTMtRjRBQzNFQjczODAzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2af64622-0f48-484c-ac40-531a5f576c30" + "daa28b41-a394-4c1c-94e6-cf3d702e3dca" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3237,25 +3237,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "80b13504-b806-448c-a955-fd6ec568c147" + "26ea8da1-bb64-4247-aa7c-50b53e11c5fd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11999" ], "x-ms-correlation-request-id": [ - "d5d473fe-0416-4437-a230-81f601c43588" + "5f3de5c7-8bd6-4ef0-92bc-7429a70b55c0" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214633Z:d5d473fe-0416-4437-a230-81f601c43588" + "WESTUS2:20221005T225410Z:5f3de5c7-8bd6-4ef0-92bc-7429a70b55c0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:46:32 GMT" + "Wed, 05 Oct 2022 22:54:09 GMT" ], "Content-Length": [ "286" @@ -3267,25 +3267,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/038985E6-0BD0-4241-AFC8-BA0492090F13?api-version=2021-12-01\",\r\n \"name\": \"038985e6-0bd0-4241-afc8-ba0492090f13\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/1EC7D898-2EEC-4584-99E3-F4AC3EB73803?api-version=2022-06-15\",\r\n \"name\": \"1ec7d898-2eec-4584-99e3-f4ac3eb73803\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/038985E6-0BD0-4241-AFC8-BA0492090F13?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMDM4OTg1RTYtMEJEMC00MjQxLUFGQzgtQkEwNDkyMDkwRjEzP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/1EC7D898-2EEC-4584-99E3-F4AC3EB73803?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMUVDN0Q4OTgtMkVFQy00NTg0LTk5RTMtRjRBQzNFQjczODAzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2af64622-0f48-484c-ac40-531a5f576c30" + "daa28b41-a394-4c1c-94e6-cf3d702e3dca" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3297,25 +3297,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "20610ca7-d27f-4ba0-a6f4-98039a64d920" + "e1267b95-d45b-4c56-9624-c7852d111a31" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11998" ], "x-ms-correlation-request-id": [ - "f41b1a80-aaa9-42ca-a33e-8637f5ae0ab8" + "19b605a2-9b1c-4d5f-9c52-9fb0d2a303e7" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214633Z:f41b1a80-aaa9-42ca-a33e-8637f5ae0ab8" + "WESTUS2:20221005T225410Z:19b605a2-9b1c-4d5f-9c52-9fb0d2a303e7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:46:32 GMT" + "Wed, 05 Oct 2022 22:54:10 GMT" ], "Expires": [ "-1" @@ -3328,24 +3328,24 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps2335?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM2OTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHMyMzM1P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps2823?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM0MTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzNzAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHMyODIzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f2e9040-7bfd-41aa-b42d-eee197859e72" + "e0872046-3cf4-46bd-91be-e1ce0c0252e4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3354,7 +3354,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/557A27A9-695C-4DEB-9A06-5F10213DF667?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/EEDA101C-D78B-4061-8572-7B621AE7E8A1?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -3363,28 +3363,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/557A27A9-695C-4DEB-9A06-5F10213DF667?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/EEDA101C-D78B-4061-8572-7B621AE7E8A1?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-request-id": [ - "331e9d2f-64f0-4a5a-9753-dbe1fd2327d7" + "4b406b89-98c4-488b-ada1-92981c233ac9" ], "x-ms-correlation-request-id": [ - "331e9d2f-64f0-4a5a-9753-dbe1fd2327d7" + "4b406b89-98c4-488b-ada1-92981c233ac9" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214633Z:331e9d2f-64f0-4a5a-9753-dbe1fd2327d7" + "WESTUS2:20221005T225412Z:4b406b89-98c4-488b-ada1-92981c233ac9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:46:33 GMT" + "Wed, 05 Oct 2022 22:54:12 GMT" ], "Expires": [ "-1" @@ -3397,21 +3397,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/557A27A9-695C-4DEB-9A06-5F10213DF667?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNTU3QTI3QTktNjk1Qy00REVCLTlBMDYtNUYxMDIxM0RGNjY3P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/EEDA101C-D78B-4061-8572-7B621AE7E8A1?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRUVEQTEwMUMtRDc4Qi00MDYxLTg1NzItN0I2MjFBRTdFOEExP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f2e9040-7bfd-41aa-b42d-eee197859e72" + "e0872046-3cf4-46bd-91be-e1ce0c0252e4" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3423,25 +3423,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7ab19967-8d2f-4203-b681-9588cbc58f6c" + "10406f36-2c09-4432-8ded-c77504f4a980" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11997" ], "x-ms-correlation-request-id": [ - "58b9a2b7-eed9-4597-9a9a-d6986656d498" + "db6f0658-acb7-4690-bbc1-ef1b66cb12c8" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214644Z:58b9a2b7-eed9-4597-9a9a-d6986656d498" + "WESTUS2:20221005T225422Z:db6f0658-acb7-4690-bbc1-ef1b66cb12c8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:46:43 GMT" + "Wed, 05 Oct 2022 22:54:22 GMT" ], "Content-Length": [ "286" @@ -3453,25 +3453,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/557A27A9-695C-4DEB-9A06-5F10213DF667?api-version=2021-12-01\",\r\n \"name\": \"557a27a9-695c-4deb-9a06-5f10213df667\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/EEDA101C-D78B-4061-8572-7B621AE7E8A1?api-version=2022-06-15\",\r\n \"name\": \"eeda101c-d78b-4061-8572-7b621ae7e8a1\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/557A27A9-695C-4DEB-9A06-5F10213DF667?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNTU3QTI3QTktNjk1Qy00REVCLTlBMDYtNUYxMDIxM0RGNjY3P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/EEDA101C-D78B-4061-8572-7B621AE7E8A1?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvRUVEQTEwMUMtRDc4Qi00MDYxLTg1NzItN0I2MjFBRTdFOEExP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f2e9040-7bfd-41aa-b42d-eee197859e72" + "e0872046-3cf4-46bd-91be-e1ce0c0252e4" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3483,25 +3483,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2e7291f3-6678-4db9-8416-3b36c2d9258e" + "0571b889-216a-4842-affa-55c6c4a8c6d3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11996" ], "x-ms-correlation-request-id": [ - "12cffb3d-3eb5-4086-bcad-710be8039d16" + "4f1552cd-8a04-4b02-b78c-35db3bf2d828" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214644Z:12cffb3d-3eb5-4086-bcad-710be8039d16" + "WESTUS2:20221005T225422Z:4f1552cd-8a04-4b02-b78c-35db3bf2d828" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:46:44 GMT" + "Wed, 05 Oct 2022 22:54:22 GMT" ], "Expires": [ "-1" @@ -3514,24 +3514,24 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4786?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM2OTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM0Nzg2P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7647?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM0MTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvUFNUZXN0RG9tYWluLXBzNzAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvRXZlbnRTdWJzY3JpcHRpb24tcHM3NjQ3P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14581c51-68a2-4723-8302-2640f2e5e341" + "e0be7329-6cdc-41fe-af6d-f58d5627373b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3540,7 +3540,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/5DE4B739-2D9D-4E78-ABB9-C79A8B8A8370?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/43351375-48F0-4C18-85AA-9C22B62D75CE?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -3549,28 +3549,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/5DE4B739-2D9D-4E78-ABB9-C79A8B8A8370?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/43351375-48F0-4C18-85AA-9C22B62D75CE?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14999" ], "x-ms-request-id": [ - "48b2f26c-1fc6-42dd-913d-9b257a16be12" + "8be0b2f6-b017-4b91-af92-8735c8addd0c" ], "x-ms-correlation-request-id": [ - "48b2f26c-1fc6-42dd-913d-9b257a16be12" + "8be0b2f6-b017-4b91-af92-8735c8addd0c" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214644Z:48b2f26c-1fc6-42dd-913d-9b257a16be12" + "WESTUS2:20221005T225423Z:8be0b2f6-b017-4b91-af92-8735c8addd0c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:46:44 GMT" + "Wed, 05 Oct 2022 22:54:23 GMT" ], "Expires": [ "-1" @@ -3583,21 +3583,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/5DE4B739-2D9D-4E78-ABB9-C79A8B8A8370?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNURFNEI3MzktMkQ5RC00RTc4LUFCQjktQzc5QThCOEE4MzcwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/43351375-48F0-4C18-85AA-9C22B62D75CE?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNDMzNTEzNzUtNDhGMC00QzE4LTg1QUEtOUMyMkI2MkQ3NUNFP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14581c51-68a2-4723-8302-2640f2e5e341" + "e0be7329-6cdc-41fe-af6d-f58d5627373b" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3609,25 +3609,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1e9c99a4-216a-42e8-a7fa-b4782156f0fb" + "54bb87c0-08e5-4b32-aa36-c53e1e9b7ec8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11996" ], "x-ms-correlation-request-id": [ - "54b71bc5-f288-4260-bb5f-d7c334ebe22f" + "4f3882f7-0a15-41f3-b171-082a378682d4" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214654Z:54b71bc5-f288-4260-bb5f-d7c334ebe22f" + "WESTUS2:20221005T225433Z:4f3882f7-0a15-41f3-b171-082a378682d4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:46:54 GMT" + "Wed, 05 Oct 2022 22:54:33 GMT" ], "Content-Length": [ "286" @@ -3639,25 +3639,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/5DE4B739-2D9D-4E78-ABB9-C79A8B8A8370?api-version=2021-12-01\",\r\n \"name\": \"5de4b739-2d9d-4e78-abb9-c79a8b8a8370\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/43351375-48F0-4C18-85AA-9C22B62D75CE?api-version=2022-06-15\",\r\n \"name\": \"43351375-48f0-4c18-85aa-9c22b62d75ce\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/5DE4B739-2D9D-4E78-ABB9-C79A8B8A8370?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNURFNEI3MzktMkQ5RC00RTc4LUFCQjktQzc5QThCOEE4MzcwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/43351375-48F0-4C18-85AA-9C22B62D75CE?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNDMzNTEzNzUtNDhGMC00QzE4LTg1QUEtOUMyMkI2MkQ3NUNFP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14581c51-68a2-4723-8302-2640f2e5e341" + "e0be7329-6cdc-41fe-af6d-f58d5627373b" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3669,25 +3669,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c3d3b342-b297-4723-badd-81e838c0b8b2" + "511a5f8e-ac10-45ad-a99b-da7afc821437" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11995" ], "x-ms-correlation-request-id": [ - "70ab504c-2cdc-4df4-8a38-21aef7fec8d6" + "433a8097-4c5f-4799-826d-c4fe30926b1e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214654Z:70ab504c-2cdc-4df4-8a38-21aef7fec8d6" + "WESTUS2:20221005T225433Z:433a8097-4c5f-4799-826d-c4fe30926b1e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:46:54 GMT" + "Wed, 05 Oct 2022 22:54:33 GMT" ], "Expires": [ "-1" @@ -3700,24 +3700,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6906/providers/Microsoft.EventGrid/domains/PSTestDomain-ps2691?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczY5MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHMyNjkxP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4173/providers/Microsoft.EventGrid/domains/PSTestDomain-ps7022?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczQxNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9QU1Rlc3REb21haW4tcHM3MDIyP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75ef7950-c1dc-464a-b3e6-500c776d308c" + "a4c4eca2-3733-43d6-ba06-69c25a20d726" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3726,7 +3726,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/3A4980B9-68F1-40A4-991A-0E618352D4D8?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/81F92CF6-990B-4455-ABDB-8797F899E2B3?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -3735,28 +3735,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/3A4980B9-68F1-40A4-991A-0E618352D4D8?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/81F92CF6-990B-4455-ABDB-8797F899E2B3?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14995" + "14999" ], "x-ms-request-id": [ - "e8f7520c-44be-416e-8e91-17413a4286b1" + "67d65da4-e7a9-4bd7-8394-8226251e98f6" ], "x-ms-correlation-request-id": [ - "e8f7520c-44be-416e-8e91-17413a4286b1" + "67d65da4-e7a9-4bd7-8394-8226251e98f6" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214655Z:e8f7520c-44be-416e-8e91-17413a4286b1" + "WESTUS2:20221005T225435Z:67d65da4-e7a9-4bd7-8394-8226251e98f6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:46:55 GMT" + "Wed, 05 Oct 2022 22:54:34 GMT" ], "Expires": [ "-1" @@ -3769,21 +3769,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/3A4980B9-68F1-40A4-991A-0E618352D4D8?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvM0E0OTgwQjktNjhGMS00MEE0LTk5MUEtMEU2MTgzNTJENEQ4P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/81F92CF6-990B-4455-ABDB-8797F899E2B3?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvODFGOTJDRjYtOTkwQi00NDU1LUFCREItODc5N0Y4OTlFMkIzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75ef7950-c1dc-464a-b3e6-500c776d308c" + "a4c4eca2-3733-43d6-ba06-69c25a20d726" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3795,25 +3795,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d05f62a2-d486-41cd-b7df-ee3394a41b7a" + "8548bf5b-b80a-40a2-8671-08c6f74fca18" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11998" ], "x-ms-correlation-request-id": [ - "60933fbb-ba9a-4c2d-8060-40a6598f7211" + "af3640b1-702c-4158-aa14-b41d91ab37b2" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214705Z:60933fbb-ba9a-4c2d-8060-40a6598f7211" + "WESTUS2:20221005T225445Z:af3640b1-702c-4158-aa14-b41d91ab37b2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:47:04 GMT" + "Wed, 05 Oct 2022 22:54:44 GMT" ], "Content-Length": [ "286" @@ -3825,25 +3825,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/3A4980B9-68F1-40A4-991A-0E618352D4D8?api-version=2021-12-01\",\r\n \"name\": \"3a4980b9-68f1-40a4-991a-0e618352d4d8\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/81F92CF6-990B-4455-ABDB-8797F899E2B3?api-version=2022-06-15\",\r\n \"name\": \"81f92cf6-990b-4455-abdb-8797f899e2b3\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/3A4980B9-68F1-40A4-991A-0E618352D4D8?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvM0E0OTgwQjktNjhGMS00MEE0LTk5MUEtMEU2MTgzNTJENEQ4P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/81F92CF6-990B-4455-ABDB-8797F899E2B3?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvODFGOTJDRjYtOTkwQi00NDU1LUFCREItODc5N0Y4OTlFMkIzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75ef7950-c1dc-464a-b3e6-500c776d308c" + "a4c4eca2-3733-43d6-ba06-69c25a20d726" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3855,25 +3855,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0513b4ef-bacc-421f-86f1-79de435b972f" + "e593452d-a8b9-4d66-8ce4-c48d19c9f5fc" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11997" ], "x-ms-correlation-request-id": [ - "f7cfb235-8d67-4504-901f-7b9286e0117e" + "b1aa59d4-adab-4088-93ad-1d7a7bd43387" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T214705Z:f7cfb235-8d67-4504-901f-7b9286e0117e" + "WESTUS2:20221005T225445Z:b1aa59d4-adab-4088-93ad-1d7a7bd43387" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:47:04 GMT" + "Wed, 05 Oct 2022 22:54:44 GMT" ], "Expires": [ "-1" @@ -3886,24 +3886,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps6906?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczY5MDY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps4173?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczQxNzM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0581237c-b529-4cec-b565-9e98d801394b" + "8e80e391-4b13-4f71-b54d-70e434adc710" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3912,7 +3912,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzY5MDYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzQxNzMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3921,13 +3921,13 @@ "14999" ], "x-ms-request-id": [ - "50b1bbc3-a3d4-4568-ba82-a54ea95be3d2" + "9f9a1f52-aac3-43e2-a565-02acbedff503" ], "x-ms-correlation-request-id": [ - "50b1bbc3-a3d4-4568-ba82-a54ea95be3d2" + "9f9a1f52-aac3-43e2-a565-02acbedff503" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214707Z:50b1bbc3-a3d4-4568-ba82-a54ea95be3d2" + "WESTUS2:20221005T225446Z:9f9a1f52-aac3-43e2-a565-02acbedff503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3936,7 +3936,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:47:07 GMT" + "Wed, 05 Oct 2022 22:54:46 GMT" ], "Expires": [ "-1" @@ -3949,18 +3949,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzY5MDYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpZNU1EWXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzQxNzMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpReE56TXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3969,16 +3969,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "c38e0336-56e5-4ba2-9a41-71c1bb88668f" + "32e8603b-15db-4370-bf67-3dba42f00a23" ], "x-ms-correlation-request-id": [ - "c38e0336-56e5-4ba2-9a41-71c1bb88668f" + "32e8603b-15db-4370-bf67-3dba42f00a23" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214722Z:c38e0336-56e5-4ba2-9a41-71c1bb88668f" + "WESTUS2:20221005T225502Z:32e8603b-15db-4370-bf67-3dba42f00a23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3987,7 +3987,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:47:21 GMT" + "Wed, 05 Oct 2022 22:55:01 GMT" ], "Expires": [ "-1" @@ -4000,18 +4000,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzY5MDYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpZNU1EWXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzQxNzMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpReE56TXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4020,16 +4020,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-request-id": [ - "d190f3d5-ccbe-4653-aa70-36def6ef7387" + "b53a904d-615a-4fa1-b8d7-1a8b429bc705" ], "x-ms-correlation-request-id": [ - "d190f3d5-ccbe-4653-aa70-36def6ef7387" + "b53a904d-615a-4fa1-b8d7-1a8b429bc705" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214722Z:d190f3d5-ccbe-4653-aa70-36def6ef7387" + "WESTUS2:20221005T225502Z:b53a904d-615a-4fa1-b8d7-1a8b429bc705" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4038,7 +4038,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:47:21 GMT" + "Wed, 05 Oct 2022 22:55:01 GMT" ], "Expires": [ "-1" @@ -4053,12 +4053,12 @@ ], "Names": { "": [ - "ps6906", - "ps2691", - "ps8359", - "ps1909", - "ps2335", - "ps4786" + "ps4173", + "ps7022", + "ps9557", + "ps4831", + "ps2823", + "ps7647" ] }, "Variables": { diff --git a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.EventSubscriptionTests/EventGrid_EventSubscription_ResourceCRUD.json b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.EventSubscriptionTests/EventGrid_EventSubscription_ResourceCRUD.json index 1a6aa5b369e7..ae1449323c4c 100644 --- a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.EventSubscriptionTests/EventGrid_EventSubscription_ResourceCRUD.json +++ b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.EventSubscriptionTests/EventGrid_EventSubscription_ResourceCRUD.json @@ -1,22 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps2704?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczI3MDQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps5367?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczUzNjc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fa3c03a7-051d-4e52-8247-70df01a7f189" + "64d77621-316d-49b1-bd97-ac9c52a47bb5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,6 +24,7 @@ "35" ] }, + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "5c57071f-b357-40f4-89d6-e08a56eedaf5" + "1d3dc579-b89c-4ff8-b949-2098b300c679" ], "x-ms-correlation-request-id": [ - "5c57071f-b357-40f4-89d6-e08a56eedaf5" + "1d3dc579-b89c-4ff8-b949-2098b300c679" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T213612Z:5c57071f-b357-40f4-89d6-e08a56eedaf5" + "WESTUS2:20221005T224341Z:1d3dc579-b89c-4ff8-b949-2098b300c679" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:36:12 GMT" + "Wed, 05 Oct 2022 22:43:41 GMT" ], "Content-Length": [ "186" @@ -63,26 +63,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704\",\r\n \"name\": \"RGName-ps2704\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367\",\r\n \"name\": \"RGName-ps5367\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI3MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL1BTVGVzdEVILXBzOTkwNT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006?api-version=2022-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL1BTVGVzdEVILXBzODAwNj9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "270114c1-f80e-476f-a26c-61248a413c3d" + "c1857a53-a75a-4abe-b2e4-d1f312811121" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/4.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -91,6 +90,7 @@ "35" ] }, + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -99,23 +99,23 @@ "no-cache" ], "x-ms-request-id": [ - "204adbe9-e7bf-44a8-a06a-ebbf367c90d1_M4SN1_M4SN1" + "af978368-2a18-4099-a506-6ab9152c134e_M6CH3_M6CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" + "Service-Bus-Resource-Provider/CH3" ], "Server": [ - "Service-Bus-Resource-Provider/SN1", + "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "49" ], "x-ms-correlation-request-id": [ - "c38b1212-12a5-4ab5-84f6-a14400b84df4" + "378e7711-ca61-428f-a8ab-ba1d57c31102" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T213615Z:c38b1212-12a5-4ab5-84f6-a14400b84df4" + "WESTUS2:20221005T224345Z:378e7711-ca61-428f-a8ab-ba1d57c31102" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -124,10 +124,10 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:36:15 GMT" + "Wed, 05 Oct 2022 22:43:44 GMT" ], "Content-Length": [ - "712" + "770" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,25 +136,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905\",\r\n \"name\": \"PSTestEH-ps9905\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:pstesteh-ps9905\",\r\n \"createdAt\": \"2022-05-01T21:36:14.78Z\",\r\n \"updatedAt\": \"2022-05-01T21:36:14.78Z\",\r\n \"serviceBusEndpoint\": \"https://PSTestEH-ps9905.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006\",\r\n \"name\": \"PSTestEH-ps8006\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:pstesteh-ps8006\",\r\n \"createdAt\": \"2022-10-05T22:43:45.16Z\",\r\n \"updatedAt\": \"2022-10-05T22:43:45.16Z\",\r\n \"serviceBusEndpoint\": \"https://PSTestEH-ps8006.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI3MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL1BTVGVzdEVILXBzOTkwNT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006?api-version=2022-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL1BTVGVzdEVILXBzODAwNj9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "270114c1-f80e-476f-a26c-61248a413c3d" + "c1857a53-a75a-4abe-b2e4-d1f312811121" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/4.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/5.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -163,7 +163,7 @@ "no-cache" ], "x-ms-request-id": [ - "20e35453-5ca2-4719-bb06-d1c2c8791dbe_M0SN1_M0SN1" + "ca919b9b-d6f3-4133-afbd-7e25cc174596_M1SN1_M1SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -176,10 +176,10 @@ "11999" ], "x-ms-correlation-request-id": [ - "86c1c364-c6e2-440e-92fe-1667b687ee0d" + "00f7b321-af7b-42e2-bfe6-5f25eb040fd8" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T213645Z:86c1c364-c6e2-440e-92fe-1667b687ee0d" + "WESTUS2:20221005T224416Z:00f7b321-af7b-42e2-bfe6-5f25eb040fd8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -188,10 +188,10 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:36:45 GMT" + "Wed, 05 Oct 2022 22:44:16 GMT" ], "Content-Length": [ - "712" + "770" ], "Content-Type": [ "application/json; charset=utf-8" @@ -200,25 +200,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905\",\r\n \"name\": \"PSTestEH-ps9905\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:pstesteh-ps9905\",\r\n \"createdAt\": \"2022-05-01T21:36:14.78Z\",\r\n \"updatedAt\": \"2022-05-01T21:36:14.78Z\",\r\n \"serviceBusEndpoint\": \"https://PSTestEH-ps9905.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006\",\r\n \"name\": \"PSTestEH-ps8006\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:pstesteh-ps8006\",\r\n \"createdAt\": \"2022-10-05T22:43:45.16Z\",\r\n \"updatedAt\": \"2022-10-05T22:43:45.16Z\",\r\n \"serviceBusEndpoint\": \"https://PSTestEH-ps8006.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI3MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL1BTVGVzdEVILXBzOTkwNT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006?api-version=2022-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL1BTVGVzdEVILXBzODAwNj9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "270114c1-f80e-476f-a26c-61248a413c3d" + "c1857a53-a75a-4abe-b2e4-d1f312811121" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/4.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/5.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -227,7 +227,7 @@ "no-cache" ], "x-ms-request-id": [ - "bda2eae9-c106-42cc-a162-d60c22d899a2_M4SN1_M4SN1" + "50991a3e-3131-4d2a-a861-5850061e1fdb_M7SN1_M7SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -240,10 +240,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "1cca5328-27be-44d7-8736-20c54dd315e7" + "4573a452-f33d-4a72-93f7-55d3c8bea50b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T213716Z:1cca5328-27be-44d7-8736-20c54dd315e7" + "WESTUS2:20221005T224446Z:4573a452-f33d-4a72-93f7-55d3c8bea50b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -252,10 +252,10 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:37:15 GMT" + "Wed, 05 Oct 2022 22:44:46 GMT" ], "Content-Length": [ - "711" + "768" ], "Content-Type": [ "application/json; charset=utf-8" @@ -264,26 +264,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905\",\r\n \"name\": \"PSTestEH-ps9905\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:pstesteh-ps9905\",\r\n \"createdAt\": \"2022-05-01T21:36:14.78Z\",\r\n \"updatedAt\": \"2022-05-01T21:37:02.967Z\",\r\n \"serviceBusEndpoint\": \"https://PSTestEH-ps9905.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006\",\r\n \"name\": \"PSTestEH-ps8006\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"5b4b650e-28b9-4790-b3ab-ddbd88d727c4:pstesteh-ps8006\",\r\n \"createdAt\": \"2022-10-05T22:43:45.16Z\",\r\n \"updatedAt\": \"2022-10-05T22:44:31.88Z\",\r\n \"serviceBusEndpoint\": \"https://PSTestEH-ps8006.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps3087?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHMyNzA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9QU1Rlc3RFSC1wczk5MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzMzA4Nz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps103?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1MzY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9QU1Rlc3RFSC1wczgwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzMTAzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"eventDeliverySchema\": \"EventGridSchema\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9af3f76e-9c4e-4a37-adab-4c095227fe3f" + "44e1786c-84c8-4341-9b5a-9bbd432b3364" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -292,6 +291,7 @@ "480" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"eventDeliverySchema\": \"EventGridSchema\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -306,10 +306,10 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/A5B66937-756C-4499-B902-E1BDB4531F76?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/0474CDFB-E94B-4CAE-A272-F1D5FCCC6BF4?api-version=2022-06-15" ], "x-ms-request-id": [ - "376ca72b-d7c5-4677-bae9-6e4fd1f6c701" + "18057ef9-a596-49c5-9e78-50f5cb7a7dce" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -318,19 +318,19 @@ "899" ], "x-ms-correlation-request-id": [ - "d5bceba6-c157-411f-af65-d2718dcbd046" + "e94943f8-05c4-48c4-8107-b9e31522959a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T213717Z:d5bceba6-c157-411f-af65-d2718dcbd046" + "WESTUS2:20221005T224447Z:e94943f8-05c4-48c4-8107-b9e31522959a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:37:16 GMT" + "Wed, 05 Oct 2022 22:44:46 GMT" ], "Content-Length": [ - "926" + "924" ], "Content-Type": [ "application/json; charset=utf-8" @@ -339,25 +339,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2704/providers/microsoft.eventhub/namespaces/pstesteh-ps9905\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"includedEventTypes\": [\r\n \"Microsoft.EventHub.CaptureFileCreated\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps3087\",\r\n \"name\": \"EventSubscription-ps3087\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5367/providers/microsoft.eventhub/namespaces/pstesteh-ps8006\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"includedEventTypes\": [\r\n \"Microsoft.EventHub.CaptureFileCreated\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps103\",\r\n \"name\": \"EventSubscription-ps103\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/A5B66937-756C-4499-B902-E1BDB4531F76?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvQTVCNjY5MzctNzU2Qy00NDk5LUI5MDItRTFCREI0NTMxRjc2P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/0474CDFB-E94B-4CAE-A272-F1D5FCCC6BF4?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMDQ3NENERkItRTk0Qi00Q0FFLUEyNzItRjFENUZDQ0M2QkY0P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9af3f76e-9c4e-4a37-adab-4c095227fe3f" + "44e1786c-84c8-4341-9b5a-9bbd432b3364" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -369,7 +369,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "04dfa391-e981-41f6-ab8a-c8aa178021e3" + "15f9d195-c452-4ea4-8889-006203edae75" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -378,16 +378,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "e94590f5-f3ce-4a6e-a7a3-0be533c03792" + "76d00f4f-0290-446d-956b-02fa41c2a667" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T213727Z:e94590f5-f3ce-4a6e-a7a3-0be533c03792" + "WESTUS2:20221005T224457Z:76d00f4f-0290-446d-956b-02fa41c2a667" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:37:26 GMT" + "Wed, 05 Oct 2022 22:44:56 GMT" ], "Content-Length": [ "286" @@ -399,25 +399,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/A5B66937-756C-4499-B902-E1BDB4531F76?api-version=2021-12-01\",\r\n \"name\": \"a5b66937-756c-4499-b902-e1bdb4531f76\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/0474CDFB-E94B-4CAE-A272-F1D5FCCC6BF4?api-version=2022-06-15\",\r\n \"name\": \"0474cdfb-e94b-4cae-a272-f1d5fccc6bf4\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps3087?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHMyNzA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9QU1Rlc3RFSC1wczk5MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzMzA4Nz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps103?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1MzY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9QU1Rlc3RFSC1wczgwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzMTAzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9af3f76e-9c4e-4a37-adab-4c095227fe3f" + "44e1786c-84c8-4341-9b5a-9bbd432b3364" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -429,7 +429,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "050ebf0c-5666-42c0-af21-eada14fd5da2" + "cfe63a9a-7817-42c7-a9af-f74fd622e9c2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -438,19 +438,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "4814485f-f16a-4af1-9a13-1ac803230e56" + "7e1f1e08-99ca-47e2-a047-b7d1a50ef799" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T213727Z:4814485f-f16a-4af1-9a13-1ac803230e56" + "WESTUS2:20221005T224457Z:7e1f1e08-99ca-47e2-a047-b7d1a50ef799" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:37:27 GMT" + "Wed, 05 Oct 2022 22:44:56 GMT" ], "Content-Length": [ - "1028" + "1026" ], "Content-Type": [ "application/json; charset=utf-8" @@ -459,28 +459,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2704/providers/microsoft.eventhub/namespaces/pstesteh-ps9905\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.EventHub.CaptureFileCreated\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps3087\",\r\n \"name\": \"EventSubscription-ps3087\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5367/providers/microsoft.eventhub/namespaces/pstesteh-ps8006\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.EventHub.CaptureFileCreated\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps103\",\r\n \"name\": \"EventSubscription-ps103\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps3087?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHMyNzA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9QU1Rlc3RFSC1wczk5MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzMzA4Nz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps103?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1MzY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9QU1Rlc3RFSC1wczgwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzMTAzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e0101caf-6fb7-466e-a169-a7aa5e910737" + "556bf912-a753-4eb0-a56d-1390241941de" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -492,28 +492,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "24ab7ca9-343e-4bbc-8f0f-706b33617bee" + "2183c654-28d5-4d28-82f1-cab357ec10e6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11998" ], "x-ms-correlation-request-id": [ - "0b1838a0-b12e-439f-becb-70fba9fdd39c" + "a685b0e5-71b2-4535-8f23-906ea27265c8" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T213738Z:0b1838a0-b12e-439f-becb-70fba9fdd39c" + "WESTUS2:20221005T224509Z:a685b0e5-71b2-4535-8f23-906ea27265c8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:37:37 GMT" + "Wed, 05 Oct 2022 22:45:09 GMT" ], "Content-Length": [ - "1028" + "1026" ], "Content-Type": [ "application/json; charset=utf-8" @@ -522,28 +522,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2704/providers/microsoft.eventhub/namespaces/pstesteh-ps9905\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.EventHub.CaptureFileCreated\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps3087\",\r\n \"name\": \"EventSubscription-ps3087\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5367/providers/microsoft.eventhub/namespaces/pstesteh-ps8006\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.EventHub.CaptureFileCreated\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps103\",\r\n \"name\": \"EventSubscription-ps103\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps3087?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHMyNzA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9QU1Rlc3RFSC1wczk5MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzMzA4Nz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps103?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1MzY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9QU1Rlc3RFSC1wczgwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzMTAzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "073532fa-51f7-48c9-aaed-1561f9539cb2" + "afb91500-b53f-4ae8-ba2a-6a25ed4ce7b8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -555,28 +555,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3ab11436-9855-4cc7-a83a-cd34c5d14a97" + "17e248c7-5480-4ea9-babf-b6edfbf0cc65" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11999" ], "x-ms-correlation-request-id": [ - "33755651-5670-40ce-9e78-dc9d6c7a3142" + "fe6c32ed-b79d-4809-ae8b-d340e0192de4" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T213738Z:33755651-5670-40ce-9e78-dc9d6c7a3142" + "WESTUS2:20221005T224509Z:fe6c32ed-b79d-4809-ae8b-d340e0192de4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:37:37 GMT" + "Wed, 05 Oct 2022 22:45:09 GMT" ], "Content-Length": [ - "1028" + "1026" ], "Content-Type": [ "application/json; charset=utf-8" @@ -585,25 +585,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2704/providers/microsoft.eventhub/namespaces/pstesteh-ps9905\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.EventHub.CaptureFileCreated\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps3087\",\r\n \"name\": \"EventSubscription-ps3087\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5367/providers/microsoft.eventhub/namespaces/pstesteh-ps8006\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.EventHub.CaptureFileCreated\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps103\",\r\n \"name\": \"EventSubscription-ps103\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps3087?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHMyNzA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9QU1Rlc3RFSC1wczk5MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzMzA4Nz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps103?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1MzY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9QU1Rlc3RFSC1wczgwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzMTAzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "073532fa-51f7-48c9-aaed-1561f9539cb2" + "afb91500-b53f-4ae8-ba2a-6a25ed4ce7b8" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -615,28 +615,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dd83ffb5-f827-45d4-b067-585fee747c80" + "c116b886-533e-4c46-a069-2e6bb50aa460" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11997" ], "x-ms-correlation-request-id": [ - "c9967f9e-16ef-4a97-89a9-3bdb8190e26a" + "08cd1722-dd1b-4971-92a8-6e49fa3fba56" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T213749Z:c9967f9e-16ef-4a97-89a9-3bdb8190e26a" + "WESTUS2:20221005T224520Z:08cd1722-dd1b-4971-92a8-6e49fa3fba56" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:37:49 GMT" + "Wed, 05 Oct 2022 22:45:20 GMT" ], "Content-Length": [ - "997" + "995" ], "Content-Type": [ "application/json; charset=utf-8" @@ -645,28 +645,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2704/providers/microsoft.eventhub/namespaces/pstesteh-ps9905\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.EventHub.CaptureFileCreated\"\r\n ]\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps3087\",\r\n \"name\": \"EventSubscription-ps3087\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5367/providers/microsoft.eventhub/namespaces/pstesteh-ps8006\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.EventHub.CaptureFileCreated\"\r\n ]\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps103\",\r\n \"name\": \"EventSubscription-ps103\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps3087?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHMyNzA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9QU1Rlc3RFSC1wczk5MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzMzA4Nz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps103?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1MzY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9QU1Rlc3RFSC1wczgwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzMTAzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df89d23b-019e-414d-aaf4-4d425ef4bee9" + "52c2d26e-4caa-4c30-8862-4f49969976be" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -678,28 +678,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "561791c7-a2bf-466b-b066-843ad603a819" + "e2404016-4ed6-4515-8165-1a2987b5bbda" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11999" ], "x-ms-correlation-request-id": [ - "41b70f52-089a-4d49-b95b-6fe0534443c9" + "a09165f5-bc35-4c25-b192-18cc84e759a9" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T213749Z:41b70f52-089a-4d49-b95b-6fe0534443c9" + "WESTUS2:20221005T224521Z:a09165f5-bc35-4c25-b192-18cc84e759a9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:37:49 GMT" + "Wed, 05 Oct 2022 22:45:21 GMT" ], "Content-Length": [ - "997" + "995" ], "Content-Type": [ "application/json; charset=utf-8" @@ -708,26 +708,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2704/providers/microsoft.eventhub/namespaces/pstesteh-ps9905\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.EventHub.CaptureFileCreated\"\r\n ]\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps3087\",\r\n \"name\": \"EventSubscription-ps3087\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5367/providers/microsoft.eventhub/namespaces/pstesteh-ps8006\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.EventHub.CaptureFileCreated\"\r\n ]\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps103\",\r\n \"name\": \"EventSubscription-ps103\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8761?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHMyNzA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9QU1Rlc3RFSC1wczk5MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzODc2MT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps2646?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1MzY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9QU1Rlc3RFSC1wczgwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzMjY0Nj9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"eventDeliverySchema\": \"EventGridSchema\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d54f4f26-be9f-4b97-b5f2-f37ec524f60c" + "f4306670-69b2-4de7-a777-50861c3d1b72" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -736,6 +735,7 @@ "480" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"eventDeliverySchema\": \"EventGridSchema\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -750,28 +750,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/9220815F-9BD3-4E70-844C-2D6D09B1B8A6?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/CB8EFAD8-834A-4322-B260-18DF5C6DD3E1?api-version=2022-06-15" ], "x-ms-request-id": [ - "ce690a23-b09b-4899-8854-d81957586402" + "7d94e1af-c04e-4c38-8c5e-3a44cf4d92e0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "898" + "899" ], "x-ms-correlation-request-id": [ - "c8e52316-2799-465c-8141-e86ddba0d4ec" + "e7cb8f66-d831-4c73-9aea-e53028a4be5e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T213728Z:c8e52316-2799-465c-8141-e86ddba0d4ec" + "WESTUS2:20221005T224458Z:e7cb8f66-d831-4c73-9aea-e53028a4be5e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:37:27 GMT" + "Wed, 05 Oct 2022 22:44:58 GMT" ], "Content-Length": [ "926" @@ -783,25 +783,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2704/providers/microsoft.eventhub/namespaces/pstesteh-ps9905\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"includedEventTypes\": [\r\n \"Microsoft.EventHub.CaptureFileCreated\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8761\",\r\n \"name\": \"EventSubscription-ps8761\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5367/providers/microsoft.eventhub/namespaces/pstesteh-ps8006\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"includedEventTypes\": [\r\n \"Microsoft.EventHub.CaptureFileCreated\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps2646\",\r\n \"name\": \"EventSubscription-ps2646\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/9220815F-9BD3-4E70-844C-2D6D09B1B8A6?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvOTIyMDgxNUYtOUJEMy00RTcwLTg0NEMtMkQ2RDA5QjFCOEE2P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/CB8EFAD8-834A-4322-B260-18DF5C6DD3E1?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvQ0I4RUZBRDgtODM0QS00MzIyLUIyNjAtMThERjVDNkREM0UxP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d54f4f26-be9f-4b97-b5f2-f37ec524f60c" + "f4306670-69b2-4de7-a777-50861c3d1b72" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -813,25 +813,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b9c28166-3777-43c9-9dcb-dd862894ff18" + "a8ab8c8d-be94-4d0b-a7af-bc9754db9082" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-correlation-request-id": [ - "180e0180-2b6d-4dc0-9065-28df18cd5ef9" + "8367fb5b-65a5-4b1c-b03b-9c82185f2af3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T213738Z:180e0180-2b6d-4dc0-9065-28df18cd5ef9" + "WESTUS2:20221005T224508Z:8367fb5b-65a5-4b1c-b03b-9c82185f2af3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:37:37 GMT" + "Wed, 05 Oct 2022 22:45:08 GMT" ], "Content-Length": [ "286" @@ -843,25 +843,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/9220815F-9BD3-4E70-844C-2D6D09B1B8A6?api-version=2021-12-01\",\r\n \"name\": \"9220815f-9bd3-4e70-844c-2d6d09b1b8a6\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/CB8EFAD8-834A-4322-B260-18DF5C6DD3E1?api-version=2022-06-15\",\r\n \"name\": \"cb8efad8-834a-4322-b260-18df5c6dd3e1\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8761?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHMyNzA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9QU1Rlc3RFSC1wczk5MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzODc2MT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps2646?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1MzY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9QU1Rlc3RFSC1wczgwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzMjY0Nj9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d54f4f26-be9f-4b97-b5f2-f37ec524f60c" + "f4306670-69b2-4de7-a777-50861c3d1b72" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -873,25 +873,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fa41b0a7-d935-4c7a-8806-a78bf2a24586" + "c93a9e2c-ec0b-43b2-b028-fab77bffde63" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-correlation-request-id": [ - "e234d922-92ab-41e3-a92a-b52271794e3a" + "416e145a-12ff-447d-bd86-903bc2824f81" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T213738Z:e234d922-92ab-41e3-a92a-b52271794e3a" + "WESTUS2:20221005T224509Z:416e145a-12ff-447d-bd86-903bc2824f81" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:37:37 GMT" + "Wed, 05 Oct 2022 22:45:08 GMT" ], "Content-Length": [ "1028" @@ -903,26 +903,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2704/providers/microsoft.eventhub/namespaces/pstesteh-ps9905\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.EventHub.CaptureFileCreated\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8761\",\r\n \"name\": \"EventSubscription-ps8761\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5367/providers/microsoft.eventhub/namespaces/pstesteh-ps8006\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.EventHub.CaptureFileCreated\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps2646\",\r\n \"name\": \"EventSubscription-ps2646\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps3087?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHMyNzA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9QU1Rlc3RFSC1wczk5MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzMzA4Nz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps103?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1MzY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9QU1Rlc3RFSC1wczgwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzMTAzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n }\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\"\r\n },\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "073532fa-51f7-48c9-aaed-1561f9539cb2" + "afb91500-b53f-4ae8-ba2a-6a25ed4ce7b8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -931,6 +930,7 @@ "542" ] }, + "RequestBody": "{\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n }\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\"\r\n },\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -945,31 +945,31 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/CE944A77-1207-43ED-99D8-8550B3CB62E3?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/A0FE5E67-1DF3-4B38-8FDC-C6F155A484EE?api-version=2022-06-15" ], "x-ms-request-id": [ - "6329a386-8dfb-4652-b719-4ee8446aa452" + "a381b093-6a62-4c86-9a82-fc4f9205a479" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "897" + "899" ], "x-ms-correlation-request-id": [ - "dfab6bff-6406-43ae-a40d-103051fac812" + "5bf5d961-e0d6-4085-beb7-71615cbdf01c" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T213739Z:dfab6bff-6406-43ae-a40d-103051fac812" + "WESTUS2:20221005T224510Z:5bf5d961-e0d6-4085-beb7-71615cbdf01c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:37:38 GMT" + "Wed, 05 Oct 2022 22:45:10 GMT" ], "Content-Length": [ - "996" + "994" ], "Content-Type": [ "application/json; charset=utf-8" @@ -978,25 +978,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2704/providers/microsoft.eventhub/namespaces/pstesteh-ps9905\",\r\n \"provisioningState\": \"Updating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.EventHub.CaptureFileCreated\"\r\n ]\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps3087\",\r\n \"name\": \"EventSubscription-ps3087\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5367/providers/microsoft.eventhub/namespaces/pstesteh-ps8006\",\r\n \"provisioningState\": \"Updating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.EventHub.CaptureFileCreated\"\r\n ]\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps103\",\r\n \"name\": \"EventSubscription-ps103\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/CE944A77-1207-43ED-99D8-8550B3CB62E3?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvQ0U5NDRBNzctMTIwNy00M0VELTk5RDgtODU1MEIzQ0I2MkUzP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/A0FE5E67-1DF3-4B38-8FDC-C6F155A484EE?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvQTBGRTVFNjctMURGMy00QjM4LThGREMtQzZGMTU1QTQ4NEVFP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "073532fa-51f7-48c9-aaed-1561f9539cb2" + "afb91500-b53f-4ae8-ba2a-6a25ed4ce7b8" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1008,25 +1008,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "eaa97172-7dfd-44fc-8057-80c8329acf2f" + "5cbb2a09-f209-4631-ac97-40e6716fd0a9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11998" ], "x-ms-correlation-request-id": [ - "f55ef83f-8a56-44df-a218-ee3cc7ed00cd" + "9683d1fb-863b-4414-b376-5b4b6e097c29" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T213749Z:f55ef83f-8a56-44df-a218-ee3cc7ed00cd" + "WESTUS2:20221005T224520Z:9683d1fb-863b-4414-b376-5b4b6e097c29" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:37:49 GMT" + "Wed, 05 Oct 2022 22:45:20 GMT" ], "Content-Length": [ "286" @@ -1038,28 +1038,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/CE944A77-1207-43ED-99D8-8550B3CB62E3?api-version=2021-12-01\",\r\n \"name\": \"ce944a77-1207-43ed-99d8-8550b3cb62e3\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/A0FE5E67-1DF3-4B38-8FDC-C6F155A484EE?api-version=2022-06-15\",\r\n \"name\": \"a0fe5e67-1df3-4b38-8fdc-c6f155a484ee\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps3087/getFullUrl?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHMyNzA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9QU1Rlc3RFSC1wczk5MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzMzA4Ny9nZXRGdWxsVXJsP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps103/getFullUrl?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1MzY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9QU1Rlc3RFSC1wczgwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzMTAzL2dldEZ1bGxVcmw/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df89d23b-019e-414d-aaf4-4d425ef4bee9" + "52c2d26e-4caa-4c30-8862-4f49969976be" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1071,7 +1071,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "adbe50c5-d341-4afc-b78c-dac0e2f0db31" + "1b75077b-e231-4f83-b89a-9086626f1b08" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1080,16 +1080,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "dd3e41c2-ebc0-4e98-8650-134df9a54df6" + "25fbc7c9-c2b5-4ab2-b83e-39d633461bbb" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T213749Z:dd3e41c2-ebc0-4e98-8650-134df9a54df6" + "WESTUS2:20221005T224521Z:25fbc7c9-c2b5-4ab2-b83e-39d633461bbb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:37:49 GMT" + "Wed, 05 Oct 2022 22:45:21 GMT" ], "Content-Length": [ "188" @@ -1105,24 +1105,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI3MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL1BTVGVzdEVILXBzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL1BTVGVzdEVILXBzODAwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e72541e-7819-4dcd-8eb6-ce4253ffb9f3" + "6fc31641-0b0f-4043-9910-0130653f9fb9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1134,28 +1134,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3ea1e3af-43b5-4c5f-8c39-b3e990b58769" + "670eee30-ec78-4703-8eb6-7c8b003133d9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11999" ], "x-ms-correlation-request-id": [ - "a9bd086e-031a-4c1c-8777-e068fa813cfe" + "bf52e031-78d9-400b-b018-8e74c6a8617b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T213749Z:a9bd086e-031a-4c1c-8777-e068fa813cfe" + "WESTUS2:20221005T224521Z:bf52e031-78d9-400b-b018-8e74c6a8617b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:37:49 GMT" + "Wed, 05 Oct 2022 22:45:21 GMT" ], "Content-Length": [ - "2038" + "2036" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1164,28 +1164,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2704/providers/microsoft.eventhub/namespaces/pstesteh-ps9905\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.EventHub.CaptureFileCreated\"\r\n ]\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps3087\",\r\n \"name\": \"EventSubscription-ps3087\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2704/providers/microsoft.eventhub/namespaces/pstesteh-ps9905\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.EventHub.CaptureFileCreated\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8761\",\r\n \"name\": \"EventSubscription-ps8761\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5367/providers/microsoft.eventhub/namespaces/pstesteh-ps8006\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.EventHub.CaptureFileCreated\"\r\n ]\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps103\",\r\n \"name\": \"EventSubscription-ps103\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5367/providers/microsoft.eventhub/namespaces/pstesteh-ps8006\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.EventHub.CaptureFileCreated\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps2646\",\r\n \"name\": \"EventSubscription-ps2646\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI3MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL1BTVGVzdEVILXBzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL1BTVGVzdEVILXBzODAwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8fa40f71-4fe4-4452-8368-b577fa0c59fd" + "cdc6101d-b6de-470c-8581-cf0a9c7df17b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1197,25 +1197,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d70f2c45-bff7-4845-9e5c-f68cf8fdea38" + "8ee53ad2-2540-40fd-a862-772f68a8f10a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11999" ], "x-ms-correlation-request-id": [ - "23f424a1-b0a3-4028-99a2-e0a6d3472e5b" + "903d533c-6a96-48fb-8a92-1e0a9e230dfd" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T213812Z:23f424a1-b0a3-4028-99a2-e0a6d3472e5b" + "WESTUS2:20221005T224547Z:903d533c-6a96-48fb-8a92-1e0a9e230dfd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:38:11 GMT" + "Wed, 05 Oct 2022 22:45:47 GMT" ], "Content-Length": [ "12" @@ -1231,24 +1231,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/topicTypes/Microsoft.EventHub.Namespaces/eventSubscriptions?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljVHlwZXMvTWljcm9zb2Z0LkV2ZW50SHViLk5hbWVzcGFjZXMvZXZlbnRTdWJzY3JpcHRpb25zP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/topicTypes/Microsoft.EventHub.Namespaces/eventSubscriptions?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljVHlwZXMvTWljcm9zb2Z0LkV2ZW50SHViLk5hbWVzcGFjZXMvZXZlbnRTdWJzY3JpcHRpb25zP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e0670f41-9fed-4e98-b1be-505927a2830e" + "02d5f8b4-9934-4811-9ec3-69c38972132c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1260,25 +1260,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a7bd579b-4341-4cfe-8b56-b5cdb5845056" + "df9f1a53-a6e3-4c9d-beea-3efd41c2c65b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11999" ], "x-ms-correlation-request-id": [ - "ba98c632-4f74-4916-973c-5c831c7bfb1d" + "8cde873f-1fd6-4ddc-9bda-c38d661ad2fe" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T213750Z:ba98c632-4f74-4916-973c-5c831c7bfb1d" + "WESTUS2:20221005T224522Z:8cde873f-1fd6-4ddc-9bda-c38d661ad2fe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:37:50 GMT" + "Wed, 05 Oct 2022 22:45:21 GMT" ], "Content-Length": [ "12" @@ -1294,24 +1294,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/topicTypes/Microsoft.EventHub.Namespaces/eventSubscriptions?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL3RvcGljVHlwZXMvTWljcm9zb2Z0LkV2ZW50SHViLk5hbWVzcGFjZXMvZXZlbnRTdWJzY3JpcHRpb25zP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/topicTypes/Microsoft.EventHub.Namespaces/eventSubscriptions?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL3RvcGljVHlwZXMvTWljcm9zb2Z0LkV2ZW50SHViLk5hbWVzcGFjZXMvZXZlbnRTdWJzY3JpcHRpb25zP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fde6ccfe-28e1-4ac4-b8ec-7c4820d2b327" + "e6adf0be-aa40-482c-8fd5-d286c8e5858d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1323,28 +1323,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "174be7b7-655e-4e4d-a196-c5c351ddc961" + "42ddf84a-b2ee-40d3-9e9b-7ea5cb837862" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11999" ], "x-ms-correlation-request-id": [ - "a3a447a7-fd3f-4c06-8565-f0a7a728f68b" + "c0b4b3a7-03ed-4914-9071-0e04cc85c072" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T213750Z:a3a447a7-fd3f-4c06-8565-f0a7a728f68b" + "WESTUS2:20221005T224522Z:c0b4b3a7-03ed-4914-9071-0e04cc85c072" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:37:50 GMT" + "Wed, 05 Oct 2022 22:45:22 GMT" ], "Content-Length": [ - "2038" + "2036" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1353,28 +1353,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2704/providers/microsoft.eventhub/namespaces/pstesteh-ps9905\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.EventHub.CaptureFileCreated\"\r\n ]\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps3087\",\r\n \"name\": \"EventSubscription-ps3087\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2704/providers/microsoft.eventhub/namespaces/pstesteh-ps9905\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.EventHub.CaptureFileCreated\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8761\",\r\n \"name\": \"EventSubscription-ps8761\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5367/providers/microsoft.eventhub/namespaces/pstesteh-ps8006\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.EventHub.CaptureFileCreated\"\r\n ]\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps103\",\r\n \"name\": \"EventSubscription-ps103\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5367/providers/microsoft.eventhub/namespaces/pstesteh-ps8006\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.EventHub.CaptureFileCreated\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps2646\",\r\n \"name\": \"EventSubscription-ps2646\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/eventSubscriptions?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL2V2ZW50U3Vic2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/eventSubscriptions?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL2V2ZW50U3Vic2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a98381ab-30cc-47af-9382-c326c7766b0f" + "7aa8d6a5-0229-4da1-bbf2-fe990e3ef797" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1386,28 +1386,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d24a9b8f-4644-4d6c-b8ba-65dd44850893" + "51ca1b7c-fc5b-4844-b87c-3ea72600b44d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11999" ], "x-ms-correlation-request-id": [ - "8b107eb7-98c0-4982-9c1b-e270b2e5d1cc" + "f9c42052-4a0a-4288-bdfb-edd1d8c110cd" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T213750Z:8b107eb7-98c0-4982-9c1b-e270b2e5d1cc" + "WESTUS2:20221005T224523Z:f9c42052-4a0a-4288-bdfb-edd1d8c110cd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:37:50 GMT" + "Wed, 05 Oct 2022 22:45:22 GMT" ], "Content-Length": [ - "20584" + "22712" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1416,28 +1416,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azureeventgridrunnerrgwestcentralus/providers/microsoft.storage/storageaccounts/pubstgrunner2ee2f0d9\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventHub/namespaces/egrunnereventhubnamespacewestcentralus/eventhubs/egstrgrunnereventhubwestcentralus\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1439\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.Storage/storageAccounts/pubstgrunner2ee2f0d9/providers/Microsoft.EventGrid/eventSubscriptions/StorageSubscriptionb8dcb881\",\r\n \"name\": \"StorageSubscriptionb8dcb881\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azureeventgridrunnerrgwestcentralus/providers/microsoft.storage/storageaccounts/pubstgrunner1427fd55\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventHub/namespaces/egrunnereventhubnamespacewestcentralus/eventhubs/egstrgrunnereventhubwestcentralus\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1439\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.Storage/storageAccounts/pubstgrunner1427fd55/providers/Microsoft.EventGrid/eventSubscriptions/StorageSubscriptionb698afd0\",\r\n \"name\": \"StorageSubscriptionb698afd0\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azureeventgridrunnerrgwestcentralus/providers/microsoft.storage/storageaccounts/pubstgrunner873c11cb\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventHub/namespaces/egrunnereventhubnamespacewestcentralus/eventhubs/egstrgrunnereventhubwestcentralus\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1439\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.Storage/storageAccounts/pubstgrunner873c11cb/providers/Microsoft.EventGrid/eventSubscriptions/StorageSubscriptiond401a320\",\r\n \"name\": \"StorageSubscriptiond401a320\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azureeventgridrunnerrgwestcentralus/providers/microsoft.storage/storageaccounts/pubstgrunner8c5d4b38\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventHub/namespaces/egrunnereventhubnamespacewestcentralus/eventhubs/egstrgrunnereventhubwestcentralus\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1439\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.Storage/storageAccounts/pubstgrunner8c5d4b38/providers/Microsoft.EventGrid/eventSubscriptions/StorageSubscription474ef047\",\r\n \"name\": \"StorageSubscription474ef047\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azureeventgridrunnerrgwestcentralus/providers/microsoft.storage/storageaccounts/pubstgrunner1f3b515b\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventHub/namespaces/egrunnereventhubnamespacewestcentralus/eventhubs/egstrgrunnereventhubwestcentralus\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1439\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.Storage/storageAccounts/pubstgrunner1f3b515b/providers/Microsoft.EventGrid/eventSubscriptions/StorageSubscriptione188d91c\",\r\n \"name\": \"StorageSubscriptione188d91c\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azureeventgridrunnerrgwestcentralus/providers/microsoft.storage/storageaccounts/pubstgrunner7a6eaf6e\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventHub/namespaces/egrunnereventhubnamespacewestcentralus/eventhubs/egstrgrunnereventhubwestcentralus\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1439\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.Storage/storageAccounts/pubstgrunner7a6eaf6e/providers/Microsoft.EventGrid/eventSubscriptions/StorageSubscription521bcd2d\",\r\n \"name\": \"StorageSubscription521bcd2d\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azureeventgridrunnerrgwestcentralus/providers/microsoft.storage/storageaccounts/pubstgrunner798bb4ef\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventHub/namespaces/egrunnereventhubnamespacewestcentralus/eventhubs/egstrgrunnereventhubwestcentralus\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1439\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.Storage/storageAccounts/pubstgrunner798bb4ef/providers/Microsoft.EventGrid/eventSubscriptions/StorageSubscription306a15e5\",\r\n \"name\": \"StorageSubscription306a15e5\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azureeventgridrunnerrgwestcentralus/providers/microsoft.storage/storageaccounts/pubstgrunnerc5273686\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventHub/namespaces/egrunnereventhubnamespacewestcentralus/eventhubs/egstrgrunnereventhubwestcentralus\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1439\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.Storage/storageAccounts/pubstgrunnerc5273686/providers/Microsoft.EventGrid/eventSubscriptions/StorageSubscription72118617\",\r\n \"name\": \"StorageSubscription72118617\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azureeventgridrunnerrgwestcentralus/providers/microsoft.storage/storageaccounts/pubstgrunner60499228\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventHub/namespaces/egrunnereventhubnamespacewestcentralus/eventhubs/egstrgrunnereventhubwestcentralus\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1439\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.Storage/storageAccounts/pubstgrunner60499228/providers/Microsoft.EventGrid/eventSubscriptions/StorageSubscription5c5ac740\",\r\n \"name\": \"StorageSubscription5c5ac740\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azureeventgridrunnerrgwestcentralus/providers/microsoft.storage/storageaccounts/pubstgrunnerae7c6116\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventHub/namespaces/egrunnereventhubnamespacewestcentralus/eventhubs/egstrgrunnereventhubwestcentralus\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1439\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.Storage/storageAccounts/pubstgrunnerae7c6116/providers/Microsoft.EventGrid/eventSubscriptions/StorageSubscription550ff5f0\",\r\n \"name\": \"StorageSubscription550ff5f0\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azureeventgridrunnerrgwestcentralus/providers/microsoft.storage/storageaccounts/pubstgrunnere9a53682\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventHub/namespaces/egrunnereventhubnamespacewestcentralus/eventhubs/egstrgrunnereventhubwestcentralus\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1439\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.Storage/storageAccounts/pubstgrunnere9a53682/providers/Microsoft.EventGrid/eventSubscriptions/StorageSubscription7c5c9228\",\r\n \"name\": \"StorageSubscription7c5c9228\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azureeventgridrunnerrgwestcentralus/providers/microsoft.storage/storageaccounts/pubstgrunnerb648c0e6\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventHub/namespaces/egrunnereventhubnamespacewestcentralus/eventhubs/egstrgrunnereventhubwestcentralus\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1439\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.Storage/storageAccounts/pubstgrunnerb648c0e6/providers/Microsoft.EventGrid/eventSubscriptions/StorageSubscription7b44219c\",\r\n \"name\": \"StorageSubscription7b44219c\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azureeventgridrunnerrgwestcentralus/providers/microsoft.storage/storageaccounts/pubstgrunnere649f481\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventHub/namespaces/egrunnereventhubnamespacewestcentralus/eventhubs/egstrgrunnereventhubwestcentralus\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1439\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.Storage/storageAccounts/pubstgrunnere649f481/providers/Microsoft.EventGrid/eventSubscriptions/StorageSubscriptioneddc746b\",\r\n \"name\": \"StorageSubscriptioneddc746b\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azureeventgridrunnerrgwestcentralus/providers/microsoft.storage/storageaccounts/pubstgrunnere3166afd\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventHub/namespaces/egrunnereventhubnamespacewestcentralus/eventhubs/egstrgrunnereventhubwestcentralus\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1439\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.Storage/storageAccounts/pubstgrunnere3166afd/providers/Microsoft.EventGrid/eventSubscriptions/StorageSubscription9491461c\",\r\n \"name\": \"StorageSubscription9491461c\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azureeventgridrunnerrgwestcentralus/providers/microsoft.storage/storageaccounts/pubstgrunner8641b28b\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventHub/namespaces/egrunnereventhubnamespacewestcentralus/eventhubs/egstrgrunnereventhubwestcentralus\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1439\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.Storage/storageAccounts/pubstgrunner8641b28b/providers/Microsoft.EventGrid/eventSubscriptions/StorageSubscription84717110\",\r\n \"name\": \"StorageSubscription84717110\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps7184/providers/microsoft.eventgrid/topics/pstesttopic-ps2795\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7184/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2795/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6533\",\r\n \"name\": \"EventSubscription-ps6533\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2704/providers/microsoft.eventhub/namespaces/pstesteh-ps9905\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.EventHub.CaptureFileCreated\"\r\n ]\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps3087\",\r\n \"name\": \"EventSubscription-ps3087\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2704/providers/microsoft.eventhub/namespaces/pstesteh-ps9905\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.EventHub.CaptureFileCreated\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8761\",\r\n \"name\": \"EventSubscription-ps8761\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azureeventgridrunnerrgwestcentralus/providers/microsoft.storage/storageaccounts/pubstgrunner2ee2f0d9\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventHub/namespaces/egrunnereventhubnamespacewestcentralus/eventhubs/egstrgrunnereventhubwestcentralus\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1439\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.Storage/storageAccounts/pubstgrunner2ee2f0d9/providers/Microsoft.EventGrid/eventSubscriptions/StorageSubscriptionb8dcb881\",\r\n \"name\": \"StorageSubscriptionb8dcb881\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azureeventgridrunnerrgwestcentralus/providers/microsoft.storage/storageaccounts/pubstgrunner1427fd55\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventHub/namespaces/egrunnereventhubnamespacewestcentralus/eventhubs/egstrgrunnereventhubwestcentralus\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1439\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.Storage/storageAccounts/pubstgrunner1427fd55/providers/Microsoft.EventGrid/eventSubscriptions/StorageSubscriptionb698afd0\",\r\n \"name\": \"StorageSubscriptionb698afd0\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azureeventgridrunnerrgwestcentralus/providers/microsoft.storage/storageaccounts/pubstgrunner873c11cb\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventHub/namespaces/egrunnereventhubnamespacewestcentralus/eventhubs/egstrgrunnereventhubwestcentralus\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1439\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.Storage/storageAccounts/pubstgrunner873c11cb/providers/Microsoft.EventGrid/eventSubscriptions/StorageSubscriptiond401a320\",\r\n \"name\": \"StorageSubscriptiond401a320\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azureeventgridrunnerrgwestcentralus/providers/microsoft.storage/storageaccounts/pubstgrunner8c5d4b38\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventHub/namespaces/egrunnereventhubnamespacewestcentralus/eventhubs/egstrgrunnereventhubwestcentralus\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1439\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.Storage/storageAccounts/pubstgrunner8c5d4b38/providers/Microsoft.EventGrid/eventSubscriptions/StorageSubscription474ef047\",\r\n \"name\": \"StorageSubscription474ef047\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azureeventgridrunnerrgwestcentralus/providers/microsoft.storage/storageaccounts/pubstgrunner1f3b515b\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventHub/namespaces/egrunnereventhubnamespacewestcentralus/eventhubs/egstrgrunnereventhubwestcentralus\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1439\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.Storage/storageAccounts/pubstgrunner1f3b515b/providers/Microsoft.EventGrid/eventSubscriptions/StorageSubscriptione188d91c\",\r\n \"name\": \"StorageSubscriptione188d91c\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azureeventgridrunnerrgwestcentralus/providers/microsoft.storage/storageaccounts/pubstgrunner7a6eaf6e\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventHub/namespaces/egrunnereventhubnamespacewestcentralus/eventhubs/egstrgrunnereventhubwestcentralus\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1439\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.Storage/storageAccounts/pubstgrunner7a6eaf6e/providers/Microsoft.EventGrid/eventSubscriptions/StorageSubscription521bcd2d\",\r\n \"name\": \"StorageSubscription521bcd2d\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azureeventgridrunnerrgwestcentralus/providers/microsoft.storage/storageaccounts/pubstgrunner798bb4ef\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventHub/namespaces/egrunnereventhubnamespacewestcentralus/eventhubs/egstrgrunnereventhubwestcentralus\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1439\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.Storage/storageAccounts/pubstgrunner798bb4ef/providers/Microsoft.EventGrid/eventSubscriptions/StorageSubscription306a15e5\",\r\n \"name\": \"StorageSubscription306a15e5\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azureeventgridrunnerrgwestcentralus/providers/microsoft.storage/storageaccounts/pubstgrunnerc5273686\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventHub/namespaces/egrunnereventhubnamespacewestcentralus/eventhubs/egstrgrunnereventhubwestcentralus\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1439\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.Storage/storageAccounts/pubstgrunnerc5273686/providers/Microsoft.EventGrid/eventSubscriptions/StorageSubscription72118617\",\r\n \"name\": \"StorageSubscription72118617\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azureeventgridrunnerrgwestcentralus/providers/microsoft.storage/storageaccounts/pubstgrunner60499228\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventHub/namespaces/egrunnereventhubnamespacewestcentralus/eventhubs/egstrgrunnereventhubwestcentralus\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1439\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.Storage/storageAccounts/pubstgrunner60499228/providers/Microsoft.EventGrid/eventSubscriptions/StorageSubscription5c5ac740\",\r\n \"name\": \"StorageSubscription5c5ac740\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azureeventgridrunnerrgwestcentralus/providers/microsoft.storage/storageaccounts/pubstgrunnerae7c6116\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventHub/namespaces/egrunnereventhubnamespacewestcentralus/eventhubs/egstrgrunnereventhubwestcentralus\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1439\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.Storage/storageAccounts/pubstgrunnerae7c6116/providers/Microsoft.EventGrid/eventSubscriptions/StorageSubscription550ff5f0\",\r\n \"name\": \"StorageSubscription550ff5f0\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azureeventgridrunnerrgwestcentralus/providers/microsoft.storage/storageaccounts/pubstgrunnere9a53682\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventHub/namespaces/egrunnereventhubnamespacewestcentralus/eventhubs/egstrgrunnereventhubwestcentralus\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1439\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.Storage/storageAccounts/pubstgrunnere9a53682/providers/Microsoft.EventGrid/eventSubscriptions/StorageSubscription7c5c9228\",\r\n \"name\": \"StorageSubscription7c5c9228\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azureeventgridrunnerrgwestcentralus/providers/microsoft.storage/storageaccounts/pubstgrunnerb648c0e6\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventHub/namespaces/egrunnereventhubnamespacewestcentralus/eventhubs/egstrgrunnereventhubwestcentralus\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1439\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.Storage/storageAccounts/pubstgrunnerb648c0e6/providers/Microsoft.EventGrid/eventSubscriptions/StorageSubscription7b44219c\",\r\n \"name\": \"StorageSubscription7b44219c\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azureeventgridrunnerrgwestcentralus/providers/microsoft.storage/storageaccounts/pubstgrunnere649f481\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventHub/namespaces/egrunnereventhubnamespacewestcentralus/eventhubs/egstrgrunnereventhubwestcentralus\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1439\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.Storage/storageAccounts/pubstgrunnere649f481/providers/Microsoft.EventGrid/eventSubscriptions/StorageSubscriptioneddc746b\",\r\n \"name\": \"StorageSubscriptioneddc746b\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azureeventgridrunnerrgwestcentralus/providers/microsoft.storage/storageaccounts/pubstgrunnere3166afd\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventHub/namespaces/egrunnereventhubnamespacewestcentralus/eventhubs/egstrgrunnereventhubwestcentralus\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1439\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.Storage/storageAccounts/pubstgrunnere3166afd/providers/Microsoft.EventGrid/eventSubscriptions/StorageSubscription9491461c\",\r\n \"name\": \"StorageSubscription9491461c\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azureeventgridrunnerrgwestcentralus/providers/microsoft.storage/storageaccounts/pubstgrunner8641b28b\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventHub/namespaces/egrunnereventhubnamespacewestcentralus/eventhubs/egstrgrunnereventhubwestcentralus\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1439\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.Storage/storageAccounts/pubstgrunner8641b28b/providers/Microsoft.EventGrid/eventSubscriptions/StorageSubscription84717110\",\r\n \"name\": \"StorageSubscription84717110\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps7184/providers/microsoft.eventgrid/topics/pstesttopic-ps2795\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7184/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2795/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6533\",\r\n \"name\": \"EventSubscription-ps6533\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps8154/providers/microsoft.storage/storageaccounts/storagenameps7454\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/RGNAME-PS8154/providers/MICROSOFT.STORAGE/STORAGEACCOUNTS/STORAGENAMEPS7454/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps4150\",\r\n \"name\": \"EventSubscription-ps4150\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps8466/providers/microsoft.storage/storageaccounts/storagenameps8390\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Storage.BlobCreated\",\r\n \"Microsoft.Storage.BlobDeleted\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/RGNAME-PS8466/providers/MICROSOFT.STORAGE/STORAGEACCOUNTS/STORAGENAMEPS8390/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps5597\",\r\n \"name\": \"EventSubscription-ps5597\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5367/providers/microsoft.eventhub/namespaces/pstesteh-ps8006\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.EventHub.CaptureFileCreated\"\r\n ]\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps103\",\r\n \"name\": \"EventSubscription-ps103\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5367/providers/microsoft.eventhub/namespaces/pstesteh-ps8006\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.EventHub.CaptureFileCreated\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps2646\",\r\n \"name\": \"EventSubscription-ps2646\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventGrid/topicTypes/Microsoft.EventHub.Namespaces/eventSubscriptions?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI3MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNUeXBlcy9NaWNyb3NvZnQuRXZlbnRIdWIuTmFtZXNwYWNlcy9ldmVudFN1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventGrid/topicTypes/Microsoft.EventHub.Namespaces/eventSubscriptions?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNUeXBlcy9NaWNyb3NvZnQuRXZlbnRIdWIuTmFtZXNwYWNlcy9ldmVudFN1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a738ab39-37a3-4cbf-bf82-eb6ed0226e7f" + "93da38ce-9106-40cb-b2ff-3ae691da5f1b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1449,25 +1449,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e8faaf1b-5c17-41e8-b8e7-093fcab36a6f" + "ddf63954-0470-4c65-affe-eaa82a27541c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11999" ], "x-ms-correlation-request-id": [ - "1129d53a-5194-4bb0-b0ef-f4da9e2f893d" + "a301b613-3ccc-404b-8bf1-bfa01978ede9" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T213750Z:1129d53a-5194-4bb0-b0ef-f4da9e2f893d" + "WESTUS2:20221005T224523Z:a301b613-3ccc-404b-8bf1-bfa01978ede9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:37:50 GMT" + "Wed, 05 Oct 2022 22:45:23 GMT" ], "Content-Length": [ "12" @@ -1483,24 +1483,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventGrid/locations/westcentralus/topicTypes/Microsoft.EventHub.Namespaces/eventSubscriptions?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI3MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvdG9waWNUeXBlcy9NaWNyb3NvZnQuRXZlbnRIdWIuTmFtZXNwYWNlcy9ldmVudFN1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventGrid/locations/westcentralus/topicTypes/Microsoft.EventHub.Namespaces/eventSubscriptions?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvdG9waWNUeXBlcy9NaWNyb3NvZnQuRXZlbnRIdWIuTmFtZXNwYWNlcy9ldmVudFN1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6841527-e5ed-41c9-ae4a-e390b8afc4c8" + "115c2895-c90d-4c1c-a996-cd2e1386c1d4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1512,28 +1512,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "50e5de42-d4c8-4b11-89e4-fa17a1b5d0ea" + "e688235e-f000-425d-a048-2a3c1af26eba" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11999" ], "x-ms-correlation-request-id": [ - "4d835c77-87f8-488f-939a-f2c88a17897a" + "ad2499d1-31fc-4140-a06c-467faba6cda7" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T213750Z:4d835c77-87f8-488f-939a-f2c88a17897a" + "WESTUS2:20221005T224524Z:ad2499d1-31fc-4140-a06c-467faba6cda7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:37:50 GMT" + "Wed, 05 Oct 2022 22:45:23 GMT" ], "Content-Length": [ - "2038" + "2036" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1542,28 +1542,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2704/providers/microsoft.eventhub/namespaces/pstesteh-ps9905\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.EventHub.CaptureFileCreated\"\r\n ]\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps3087\",\r\n \"name\": \"EventSubscription-ps3087\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2704/providers/microsoft.eventhub/namespaces/pstesteh-ps9905\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.EventHub.CaptureFileCreated\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8761\",\r\n \"name\": \"EventSubscription-ps8761\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5367/providers/microsoft.eventhub/namespaces/pstesteh-ps8006\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.EventHub.CaptureFileCreated\"\r\n ]\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps103\",\r\n \"name\": \"EventSubscription-ps103\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5367/providers/microsoft.eventhub/namespaces/pstesteh-ps8006\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.EventHub.CaptureFileCreated\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps2646\",\r\n \"name\": \"EventSubscription-ps2646\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventGrid/locations/westcentralus/eventSubscriptions?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI3MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvZXZlbnRTdWJzY3JpcHRpb25zP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventGrid/locations/westcentralus/eventSubscriptions?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvZXZlbnRTdWJzY3JpcHRpb25zP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b2b02b5e-020b-4e8e-a894-a306a36d9af6" + "f10d2b6e-0e11-4b67-bb51-469d5bc56a57" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1575,28 +1575,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "47887c06-4d8f-49fd-9f59-9f0d75d6c59f" + "dcc02e22-ceae-4bf1-a99f-2f2236e3a358" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11999" ], "x-ms-correlation-request-id": [ - "b1827e32-c00e-4419-a7b9-d4ee0baf2687" + "7e00d18d-2fdd-4785-bac2-207926628b20" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T213751Z:b1827e32-c00e-4419-a7b9-d4ee0baf2687" + "WESTUS2:20221005T224525Z:7e00d18d-2fdd-4785-bac2-207926628b20" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:37:51 GMT" + "Wed, 05 Oct 2022 22:45:24 GMT" ], "Content-Length": [ - "2038" + "2036" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1605,28 +1605,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2704/providers/microsoft.eventhub/namespaces/pstesteh-ps9905\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.EventHub.CaptureFileCreated\"\r\n ]\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps3087\",\r\n \"name\": \"EventSubscription-ps3087\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2704/providers/microsoft.eventhub/namespaces/pstesteh-ps9905\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.EventHub.CaptureFileCreated\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8761\",\r\n \"name\": \"EventSubscription-ps8761\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5367/providers/microsoft.eventhub/namespaces/pstesteh-ps8006\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.EventHub.CaptureFileCreated\"\r\n ]\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps103\",\r\n \"name\": \"EventSubscription-ps103\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps5367/providers/microsoft.eventhub/namespaces/pstesteh-ps8006\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.EventHub.CaptureFileCreated\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps2646\",\r\n \"name\": \"EventSubscription-ps2646\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps3087?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHMyNzA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9QU1Rlc3RFSC1wczk5MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzMzA4Nz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps103?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1MzY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9QU1Rlc3RFSC1wczgwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzMTAzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "975d80cb-a8c5-4b48-8487-d1c26eb1c22b" + "1fa4aec4-1438-4b0d-8eed-e90fe141f401" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1635,7 +1635,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/4AE0E1D6-6639-44DA-94CE-A95D23E8FA9C?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/E993DDC9-98D7-49B0-8222-03A13D8B6CF0?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -1644,7 +1644,7 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4AE0E1D6-6639-44DA-94CE-A95D23E8FA9C?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E993DDC9-98D7-49B0-8222-03A13D8B6CF0?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1653,19 +1653,19 @@ "14999" ], "x-ms-request-id": [ - "3204ad82-6f05-4d57-bd17-7d7ffc253a92" + "2c48b95c-8f1f-4b66-948b-0939a1ed797b" ], "x-ms-correlation-request-id": [ - "3204ad82-6f05-4d57-bd17-7d7ffc253a92" + "2c48b95c-8f1f-4b66-948b-0939a1ed797b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T213751Z:3204ad82-6f05-4d57-bd17-7d7ffc253a92" + "WESTUS2:20221005T224526Z:2c48b95c-8f1f-4b66-948b-0939a1ed797b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:37:51 GMT" + "Wed, 05 Oct 2022 22:45:25 GMT" ], "Expires": [ "-1" @@ -1678,21 +1678,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4AE0E1D6-6639-44DA-94CE-A95D23E8FA9C?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNEFFMEUxRDYtNjYzOS00NERBLTk0Q0UtQTk1RDIzRThGQTlDP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E993DDC9-98D7-49B0-8222-03A13D8B6CF0?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRTk5M0REQzktOThENy00OUIwLTgyMjItMDNBMTNEOEI2Q0YwP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "975d80cb-a8c5-4b48-8487-d1c26eb1c22b" + "1fa4aec4-1438-4b0d-8eed-e90fe141f401" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1704,25 +1704,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "94521d5f-dbe4-4566-b0f8-a91c3e5dc1a6" + "629f2868-065a-456d-8bb3-43f90d0aa117" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11999" ], "x-ms-correlation-request-id": [ - "74119fc4-6ae0-418d-b947-9ef78c8fa22c" + "0077258b-f1c1-4dc2-81d7-891933f2eb12" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T213801Z:74119fc4-6ae0-418d-b947-9ef78c8fa22c" + "WESTUS2:20221005T224536Z:0077258b-f1c1-4dc2-81d7-891933f2eb12" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:38:01 GMT" + "Wed, 05 Oct 2022 22:45:35 GMT" ], "Content-Length": [ "286" @@ -1734,25 +1734,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4AE0E1D6-6639-44DA-94CE-A95D23E8FA9C?api-version=2021-12-01\",\r\n \"name\": \"4ae0e1d6-6639-44da-94ce-a95d23e8fa9c\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E993DDC9-98D7-49B0-8222-03A13D8B6CF0?api-version=2022-06-15\",\r\n \"name\": \"e993ddc9-98d7-49b0-8222-03a13d8b6cf0\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/4AE0E1D6-6639-44DA-94CE-A95D23E8FA9C?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNEFFMEUxRDYtNjYzOS00NERBLTk0Q0UtQTk1RDIzRThGQTlDP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/E993DDC9-98D7-49B0-8222-03A13D8B6CF0?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvRTk5M0REQzktOThENy00OUIwLTgyMjItMDNBMTNEOEI2Q0YwP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "975d80cb-a8c5-4b48-8487-d1c26eb1c22b" + "1fa4aec4-1438-4b0d-8eed-e90fe141f401" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1764,25 +1764,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "64ea4de4-c895-4197-9eca-cba879871d87" + "2fd34b0f-31d5-452a-9602-a67ea799d186" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11998" ], "x-ms-correlation-request-id": [ - "6d2f860e-238c-4b08-8f6e-82c67e9913cf" + "f6ea3ced-5ad7-4f7c-afa2-1d3ddfcb1bf9" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T213801Z:6d2f860e-238c-4b08-8f6e-82c67e9913cf" + "WESTUS2:20221005T224536Z:f6ea3ced-5ad7-4f7c-afa2-1d3ddfcb1bf9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:38:01 GMT" + "Wed, 05 Oct 2022 22:45:35 GMT" ], "Expires": [ "-1" @@ -1795,24 +1795,24 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2704/providers/Microsoft.EventHub/namespaces/PSTestEH-ps9905/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8761?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHMyNzA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9QU1Rlc3RFSC1wczk5MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzODc2MT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5367/providers/Microsoft.EventHub/namespaces/PSTestEH-ps8006/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps2646?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM1MzY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9QU1Rlc3RFSC1wczgwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzMjY0Nj9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e43e12da-6154-47d7-a9e4-bb3bb053fa8c" + "94a7eb72-fa18-4e95-aa4d-40378c0adfee" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1821,7 +1821,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/80D658EC-0E3E-48A6-B53B-DDD84CC82778?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/1A887DCD-189C-4632-B3C6-171A1799138E?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -1830,28 +1830,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/80D658EC-0E3E-48A6-B53B-DDD84CC82778?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/1A887DCD-189C-4632-B3C6-171A1799138E?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-request-id": [ - "9a7f3609-2d0d-47f9-8512-ba97c19148e6" + "c1a4d37e-c9c1-4825-bc79-5ff0ae28a1c3" ], "x-ms-correlation-request-id": [ - "9a7f3609-2d0d-47f9-8512-ba97c19148e6" + "c1a4d37e-c9c1-4825-bc79-5ff0ae28a1c3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T213802Z:9a7f3609-2d0d-47f9-8512-ba97c19148e6" + "WESTUS2:20221005T224537Z:c1a4d37e-c9c1-4825-bc79-5ff0ae28a1c3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:38:01 GMT" + "Wed, 05 Oct 2022 22:45:37 GMT" ], "Expires": [ "-1" @@ -1864,21 +1864,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/80D658EC-0E3E-48A6-B53B-DDD84CC82778?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvODBENjU4RUMtMEUzRS00OEE2LUI1M0ItREREODRDQzgyNzc4P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/1A887DCD-189C-4632-B3C6-171A1799138E?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMUE4ODdEQ0QtMTg5Qy00NjMyLUIzQzYtMTcxQTE3OTkxMzhFP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e43e12da-6154-47d7-a9e4-bb3bb053fa8c" + "94a7eb72-fa18-4e95-aa4d-40378c0adfee" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1890,25 +1890,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8f83ac36-2d11-4954-843c-b344838a31bf" + "e11ba36a-a91c-4297-accd-5852148ec017" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11999" ], "x-ms-correlation-request-id": [ - "90e33724-db40-4a46-8ed2-ce75d779c1b4" + "6754cb8d-d842-4e09-9481-1b0abf848e18" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T213812Z:90e33724-db40-4a46-8ed2-ce75d779c1b4" + "WESTUS2:20221005T224547Z:6754cb8d-d842-4e09-9481-1b0abf848e18" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:38:11 GMT" + "Wed, 05 Oct 2022 22:45:47 GMT" ], "Content-Length": [ "286" @@ -1920,25 +1920,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/80D658EC-0E3E-48A6-B53B-DDD84CC82778?api-version=2021-12-01\",\r\n \"name\": \"80d658ec-0e3e-48a6-b53b-ddd84cc82778\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/1A887DCD-189C-4632-B3C6-171A1799138E?api-version=2022-06-15\",\r\n \"name\": \"1a887dcd-189c-4632-b3c6-171a1799138e\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/80D658EC-0E3E-48A6-B53B-DDD84CC82778?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvODBENjU4RUMtMEUzRS00OEE2LUI1M0ItREREODRDQzgyNzc4P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/1A887DCD-189C-4632-B3C6-171A1799138E?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMUE4ODdEQ0QtMTg5Qy00NjMyLUIzQzYtMTcxQTE3OTkxMzhFP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e43e12da-6154-47d7-a9e4-bb3bb053fa8c" + "94a7eb72-fa18-4e95-aa4d-40378c0adfee" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1950,25 +1950,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "70df6677-4e0e-4377-82e7-e94353b73db5" + "dcf5e08f-30e6-4f3d-812a-d9997af954d7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11998" ], "x-ms-correlation-request-id": [ - "1baf181e-8326-4858-bc5c-3193d8e4cff9" + "8824df27-a850-4c12-8231-3139c7868992" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T213812Z:1baf181e-8326-4858-bc5c-3193d8e4cff9" + "WESTUS2:20221005T224547Z:8824df27-a850-4c12-8231-3139c7868992" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:38:11 GMT" + "Wed, 05 Oct 2022 22:45:47 GMT" ], "Expires": [ "-1" @@ -1981,24 +1981,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps2704?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczI3MDQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps5367?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczUzNjc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "149b96a2-b764-4636-9ca4-dc19e245b5da" + "bca68a25-3d02-4e3a-8887-ae47a31a1386" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2007,7 +2007,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzI3MDQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzUzNjctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2016,13 +2016,13 @@ "14999" ], "x-ms-request-id": [ - "99872423-3e9b-4b67-a2ff-76c7a9210c93" + "f56f27ae-8f70-4567-9264-623dd6fdc11a" ], "x-ms-correlation-request-id": [ - "99872423-3e9b-4b67-a2ff-76c7a9210c93" + "f56f27ae-8f70-4567-9264-623dd6fdc11a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T213812Z:99872423-3e9b-4b67-a2ff-76c7a9210c93" + "WESTUS2:20221005T224549Z:f56f27ae-8f70-4567-9264-623dd6fdc11a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2031,7 +2031,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:38:11 GMT" + "Wed, 05 Oct 2022 22:45:48 GMT" ], "Expires": [ "-1" @@ -2044,18 +2044,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzI3MDQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpJM01EUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzUzNjctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpVek5qY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2064,7 +2064,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzI3MDQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzUzNjctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2073,13 +2073,13 @@ "11999" ], "x-ms-request-id": [ - "cdb86db8-e3be-4b7d-b109-c16696ceb32e" + "cb906fb3-ad67-4206-8afc-1c02fde7f67d" ], "x-ms-correlation-request-id": [ - "cdb86db8-e3be-4b7d-b109-c16696ceb32e" + "cb906fb3-ad67-4206-8afc-1c02fde7f67d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T213827Z:cdb86db8-e3be-4b7d-b109-c16696ceb32e" + "WESTUS2:20221005T224604Z:cb906fb3-ad67-4206-8afc-1c02fde7f67d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2088,7 +2088,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:38:27 GMT" + "Wed, 05 Oct 2022 22:46:03 GMT" ], "Expires": [ "-1" @@ -2101,18 +2101,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzI3MDQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpJM01EUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzUzNjctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpVek5qY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2121,7 +2121,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzI3MDQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzUzNjctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2130,13 +2130,13 @@ "11998" ], "x-ms-request-id": [ - "c31ccd35-f158-4d7e-90fd-bbda4f4c4d30" + "7fee05ad-8c28-4ff3-a09d-c6556608e45d" ], "x-ms-correlation-request-id": [ - "c31ccd35-f158-4d7e-90fd-bbda4f4c4d30" + "7fee05ad-8c28-4ff3-a09d-c6556608e45d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T213842Z:c31ccd35-f158-4d7e-90fd-bbda4f4c4d30" + "WESTUS2:20221005T224619Z:7fee05ad-8c28-4ff3-a09d-c6556608e45d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2145,7 +2145,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:38:42 GMT" + "Wed, 05 Oct 2022 22:46:18 GMT" ], "Expires": [ "-1" @@ -2158,18 +2158,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzI3MDQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpJM01EUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzUzNjctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpVek5qY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2178,7 +2178,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzI3MDQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzUzNjctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2187,13 +2187,13 @@ "11997" ], "x-ms-request-id": [ - "c039f497-ff94-41d5-bb61-0f68ff4ce9a0" + "dcb735c1-26d4-4798-ba9e-0f8b893a4969" ], "x-ms-correlation-request-id": [ - "c039f497-ff94-41d5-bb61-0f68ff4ce9a0" + "dcb735c1-26d4-4798-ba9e-0f8b893a4969" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T213857Z:c039f497-ff94-41d5-bb61-0f68ff4ce9a0" + "WESTUS2:20221005T224634Z:dcb735c1-26d4-4798-ba9e-0f8b893a4969" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2202,7 +2202,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:38:57 GMT" + "Wed, 05 Oct 2022 22:46:34 GMT" ], "Expires": [ "-1" @@ -2215,75 +2215,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzI3MDQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpJM01EUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzUzNjctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpVek5qY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzI3MDQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-request-id": [ - "63588744-9a18-4457-888d-78771a5b2607" - ], - "x-ms-correlation-request-id": [ - "63588744-9a18-4457-888d-78771a5b2607" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T213912Z:63588744-9a18-4457-888d-78771a5b2607" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sun, 01 May 2022 21:39:12 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzI3MDQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpJM01EUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.16002", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" - ] - }, "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2292,16 +2235,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-request-id": [ - "6482eea8-f5bc-492b-a67f-3f80b0243050" + "6492d74f-d366-4a33-8b2f-2d341f03aeae" ], "x-ms-correlation-request-id": [ - "6482eea8-f5bc-492b-a67f-3f80b0243050" + "6492d74f-d366-4a33-8b2f-2d341f03aeae" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T213928Z:6482eea8-f5bc-492b-a67f-3f80b0243050" + "WESTUS2:20221005T224655Z:6492d74f-d366-4a33-8b2f-2d341f03aeae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2310,7 +2253,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:39:27 GMT" + "Wed, 05 Oct 2022 22:46:55 GMT" ], "Expires": [ "-1" @@ -2323,18 +2266,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzI3MDQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpJM01EUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzUzNjctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpVek5qY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2343,16 +2286,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-request-id": [ - "7e459100-0b32-45d1-b750-18b146d223ae" + "b0a20520-b798-4ce7-b278-1cb864aae3c4" ], "x-ms-correlation-request-id": [ - "7e459100-0b32-45d1-b750-18b146d223ae" + "b0a20520-b798-4ce7-b278-1cb864aae3c4" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T213928Z:7e459100-0b32-45d1-b750-18b146d223ae" + "WESTUS2:20221005T224655Z:b0a20520-b798-4ce7-b278-1cb864aae3c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2361,7 +2304,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:39:27 GMT" + "Wed, 05 Oct 2022 22:46:55 GMT" ], "Expires": [ "-1" @@ -2376,10 +2319,10 @@ ], "Names": { "": [ - "ps9905", - "ps3087", - "ps8761", - "ps2704" + "ps8006", + "ps103", + "ps2646", + "ps5367" ] }, "Variables": { diff --git a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.EventSubscriptionTests/EventGrid_EventSubscription_ResourceGroup.json b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.EventSubscriptionTests/EventGrid_EventSubscription_ResourceGroup.json index 9aaaea7495b7..989ec49d9a09 100644 --- a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.EventSubscriptionTests/EventGrid_EventSubscription_ResourceGroup.json +++ b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.EventSubscriptionTests/EventGrid_EventSubscription_ResourceGroup.json @@ -1,22 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps936?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczkzNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps6584?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczY1ODQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "888a3341-20de-4ae5-918a-1e9f9b2a735d" + "739e1845-fb03-4e76-b82f-63c967f4dd59" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,6 +24,7 @@ "35" ] }, + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "3e9da6b8-ca84-40b5-b202-2152854a11b5" + "87b11467-3e18-4050-9027-4d7f6bc704f5" ], "x-ms-correlation-request-id": [ - "3e9da6b8-ca84-40b5-b202-2152854a11b5" + "87b11467-3e18-4050-9027-4d7f6bc704f5" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214216Z:3e9da6b8-ca84-40b5-b202-2152854a11b5" + "WESTUS2:20221005T224944Z:87b11467-3e18-4050-9027-4d7f6bc704f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:42:16 GMT" + "Wed, 05 Oct 2022 22:49:43 GMT" ], "Content-Length": [ - "184" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps936\",\r\n \"name\": \"RGName-ps936\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6584\",\r\n \"name\": \"RGName-ps6584\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps936/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8194?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM5MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzODE5ND9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6584/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7105?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM2NTg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9FdmVudFN1YnNjcmlwdGlvbi1wczcxMDU/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ca66fe88-1cea-4a5c-aaf4-f4b958d8408a" + "3ffd841c-8bb9-4ebe-9ca0-f59537fa9779" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -91,6 +90,7 @@ "535" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -105,10 +105,10 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/23E8257E-1DF5-4A45-935A-E3EFDA09B0AA?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/FF96541A-38B2-402D-A618-EB7EE7F8E155?api-version=2022-06-15" ], "x-ms-request-id": [ - "46a0f911-4a7f-4099-aa4a-b1ddf82cbb94" + "396bcd13-d16a-494e-a57b-ac69c0c41e03" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -117,19 +117,19 @@ "899" ], "x-ms-correlation-request-id": [ - "2fe69e94-5140-46c6-a74c-ea11caf2f5af" + "2fe9a4c5-e3d8-4864-a2ae-f6917af4ca4e" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214218Z:2fe69e94-5140-46c6-a74c-ea11caf2f5af" + "WESTUS2:20221005T224946Z:2fe9a4c5-e3d8-4864-a2ae-f6917af4ca4e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:42:18 GMT" + "Wed, 05 Oct 2022 22:49:46 GMT" ], "Content-Length": [ - "1174" + "1176" ], "Content-Type": [ "application/json; charset=utf-8" @@ -138,25 +138,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps936\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps936/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8194\",\r\n \"name\": \"EventSubscription-ps8194\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6584\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6584/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7105\",\r\n \"name\": \"EventSubscription-ps7105\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/23E8257E-1DF5-4A45-935A-E3EFDA09B0AA?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvbnNTdGF0dXMvMjNFODI1N0UtMURGNS00QTQ1LTkzNUEtRTNFRkRBMDlCMEFBP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/FF96541A-38B2-402D-A618-EB7EE7F8E155?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvbnNTdGF0dXMvRkY5NjU0MUEtMzhCMi00MDJELUE2MTgtRUI3RUU3RjhFMTU1P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ca66fe88-1cea-4a5c-aaf4-f4b958d8408a" + "3ffd841c-8bb9-4ebe-9ca0-f59537fa9779" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -168,25 +168,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "07b1a6a1-1172-4a67-83bc-47a20405e78a" + "b4b416f9-ec15-418c-b8cd-a391cce7d0d4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11996" ], "x-ms-correlation-request-id": [ - "0fb39ad4-07a7-4dea-9c3c-fa635d519e82" + "e7f35d4c-b8e9-417a-9aa9-f5136b5214d6" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214229Z:0fb39ad4-07a7-4dea-9c3c-fa635d519e82" + "WESTUS2:20221005T224956Z:e7f35d4c-b8e9-417a-9aa9-f5136b5214d6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:42:28 GMT" + "Wed, 05 Oct 2022 22:49:56 GMT" ], "Content-Length": [ "262" @@ -198,25 +198,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/23E8257E-1DF5-4A45-935A-E3EFDA09B0AA?api-version=2021-12-01\",\r\n \"name\": \"23e8257e-1df5-4a45-935a-e3efda09b0aa\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/FF96541A-38B2-402D-A618-EB7EE7F8E155?api-version=2022-06-15\",\r\n \"name\": \"ff96541a-38b2-402d-a618-eb7ee7f8e155\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps936/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8194?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM5MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzODE5ND9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6584/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7105?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM2NTg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9FdmVudFN1YnNjcmlwdGlvbi1wczcxMDU/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ca66fe88-1cea-4a5c-aaf4-f4b958d8408a" + "3ffd841c-8bb9-4ebe-9ca0-f59537fa9779" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -228,28 +228,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dc094d80-0903-43f5-a528-f07224190ef3" + "77d7f146-cdd0-49c5-b548-9026283aad59" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11995" ], "x-ms-correlation-request-id": [ - "b32b981e-3a7a-4165-9f08-e0c7a1687a73" + "2b6744d0-a9ae-40e3-8feb-eec58f96df0f" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214229Z:b32b981e-3a7a-4165-9f08-e0c7a1687a73" + "WESTUS2:20221005T224956Z:2b6744d0-a9ae-40e3-8feb-eec58f96df0f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:42:28 GMT" + "Wed, 05 Oct 2022 22:49:56 GMT" ], "Content-Length": [ - "1276" + "1278" ], "Content-Type": [ "application/json; charset=utf-8" @@ -258,28 +258,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps936\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps936/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8194\",\r\n \"name\": \"EventSubscription-ps8194\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6584\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6584/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7105\",\r\n \"name\": \"EventSubscription-ps7105\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps936/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8194?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM5MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzODE5ND9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6584/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7105?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM2NTg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9FdmVudFN1YnNjcmlwdGlvbi1wczcxMDU/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95f4fcd6-c512-4bd4-a955-5c86e040b72a" + "a1d29a74-2d6d-4884-bee3-3e39093b2479" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -291,28 +291,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "186afdc9-d8ae-43c5-aa70-1f1d57dc1799" + "96496bd2-8cd2-40e8-9ecf-aebb413ad607" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11999" ], "x-ms-correlation-request-id": [ - "399cc33c-3d21-4c2e-a7db-cecd76ea5f7e" + "06f0c267-1b96-42c5-a597-615c66c5fd8f" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214240Z:399cc33c-3d21-4c2e-a7db-cecd76ea5f7e" + "WESTUS2:20221005T225008Z:06f0c267-1b96-42c5-a597-615c66c5fd8f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:42:39 GMT" + "Wed, 05 Oct 2022 22:50:08 GMT" ], "Content-Length": [ - "1276" + "1278" ], "Content-Type": [ "application/json; charset=utf-8" @@ -321,28 +321,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps936\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps936/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8194\",\r\n \"name\": \"EventSubscription-ps8194\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6584\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6584/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7105\",\r\n \"name\": \"EventSubscription-ps7105\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps936/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8194?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM5MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzODE5ND9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6584/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7105?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM2NTg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9FdmVudFN1YnNjcmlwdGlvbi1wczcxMDU/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eafebc5-add0-4626-bd4e-7568d9e36f4f" + "788f3093-8650-4fa3-9fd9-fea91ec2c9dc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -354,28 +354,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7c5c2b8b-640a-408e-89ee-2ae33802f89c" + "df4425ff-e766-4db4-bd1a-bc5030a15328" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11999" ], "x-ms-correlation-request-id": [ - "e4fcb8de-f33a-4278-865f-0600419f09cb" + "2f17f75a-371a-426c-a7be-a442c78af8e1" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214240Z:e4fcb8de-f33a-4278-865f-0600419f09cb" + "WESTUS2:20221005T225009Z:2f17f75a-371a-426c-a7be-a442c78af8e1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:42:39 GMT" + "Wed, 05 Oct 2022 22:50:08 GMT" ], "Content-Length": [ - "1276" + "1278" ], "Content-Type": [ "application/json; charset=utf-8" @@ -384,25 +384,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps936\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps936/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8194\",\r\n \"name\": \"EventSubscription-ps8194\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6584\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6584/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7105\",\r\n \"name\": \"EventSubscription-ps7105\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps936/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8194?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM5MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzODE5ND9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6584/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7105?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM2NTg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9FdmVudFN1YnNjcmlwdGlvbi1wczcxMDU/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eafebc5-add0-4626-bd4e-7568d9e36f4f" + "788f3093-8650-4fa3-9fd9-fea91ec2c9dc" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -414,28 +414,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2ccba482-2ae8-4e3f-b7fe-5a8662ddb544" + "f0c747c9-00e0-4786-a53f-34c7fae26b29" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11997" ], "x-ms-correlation-request-id": [ - "5841d184-d38c-4361-8000-cb6138fce734" + "99075fdf-7901-4e3c-9c00-1753b14fd6ff" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214251Z:5841d184-d38c-4361-8000-cb6138fce734" + "WESTUS2:20221005T225020Z:99075fdf-7901-4e3c-9c00-1753b14fd6ff" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:42:51 GMT" + "Wed, 05 Oct 2022 22:50:19 GMT" ], "Content-Length": [ - "1250" + "1252" ], "Content-Type": [ "application/json; charset=utf-8" @@ -444,26 +444,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps936\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"Marketing\",\r\n \"Sales\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps936/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8194\",\r\n \"name\": \"EventSubscription-ps8194\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6584\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"Marketing\",\r\n \"Sales\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6584/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7105\",\r\n \"name\": \"EventSubscription-ps7105\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps936/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps2736?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM5MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzMjczNj9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6584/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps1757?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM2NTg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9FdmVudFN1YnNjcmlwdGlvbi1wczE3NTc/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteSuccess\"\r\n ],\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"eventDeliverySchema\": \"EventGridSchema\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f6c75eca-c697-42b9-a909-c56a5e95515a" + "94ba362e-4711-4112-8688-4be7f6b6e009" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -472,6 +471,7 @@ "626" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteSuccess\"\r\n ],\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"eventDeliverySchema\": \"EventGridSchema\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -486,31 +486,31 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/EB75B1F0-0A90-432E-83F0-7DFE8392A7A5?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/3D0C9DBA-3CBA-4864-8E18-F70405A995FA?api-version=2022-06-15" ], "x-ms-request-id": [ - "8ed6fcc4-679d-4fc3-b0d0-3b94f43bbf0f" + "0fe3328f-6cc1-4aef-9d1b-274a1dd497e7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "898" + "899" ], "x-ms-correlation-request-id": [ - "253ba64d-99f8-448f-a463-88f3b74734b6" + "1bbde688-eb51-4d0e-b44b-1f089cec2d9e" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214229Z:253ba64d-99f8-448f-a463-88f3b74734b6" + "WESTUS2:20221005T224958Z:1bbde688-eb51-4d0e-b44b-1f089cec2d9e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:42:29 GMT" + "Wed, 05 Oct 2022 22:49:57 GMT" ], "Content-Length": [ - "858" + "860" ], "Content-Type": [ "application/json; charset=utf-8" @@ -519,25 +519,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps936\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteSuccess\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps936/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps2736\",\r\n \"name\": \"EventSubscription-ps2736\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6584\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteSuccess\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6584/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps1757\",\r\n \"name\": \"EventSubscription-ps1757\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/EB75B1F0-0A90-432E-83F0-7DFE8392A7A5?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvbnNTdGF0dXMvRUI3NUIxRjAtMEE5MC00MzJFLTgzRjAtN0RGRTgzOTJBN0E1P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/3D0C9DBA-3CBA-4864-8E18-F70405A995FA?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvbnNTdGF0dXMvM0QwQzlEQkEtM0NCQS00ODY0LThFMTgtRjcwNDA1QTk5NUZBP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6c75eca-c697-42b9-a909-c56a5e95515a" + "94ba362e-4711-4112-8688-4be7f6b6e009" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -549,7 +549,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a23f6058-c00c-430c-bf1e-db0573d9c090" + "f2c2ae86-847b-4dfa-a86e-1125ca28b080" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -558,16 +558,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "880d2078-a4cb-47d6-b599-92f386dc852e" + "286a9a34-5f20-47f3-8f7a-ba433fa31cc7" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214240Z:880d2078-a4cb-47d6-b599-92f386dc852e" + "WESTUS2:20221005T225008Z:286a9a34-5f20-47f3-8f7a-ba433fa31cc7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:42:39 GMT" + "Wed, 05 Oct 2022 22:50:08 GMT" ], "Content-Length": [ "262" @@ -579,25 +579,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/EB75B1F0-0A90-432E-83F0-7DFE8392A7A5?api-version=2021-12-01\",\r\n \"name\": \"eb75b1f0-0a90-432e-83f0-7dfe8392a7a5\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/3D0C9DBA-3CBA-4864-8E18-F70405A995FA?api-version=2022-06-15\",\r\n \"name\": \"3d0c9dba-3cba-4864-8e18-f70405a995fa\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps936/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps2736?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM5MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzMjczNj9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6584/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps1757?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM2NTg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9FdmVudFN1YnNjcmlwdGlvbi1wczE3NTc/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6c75eca-c697-42b9-a909-c56a5e95515a" + "94ba362e-4711-4112-8688-4be7f6b6e009" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -609,7 +609,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a68c1d56-71e8-402c-a57c-23889f945fbf" + "f487e33b-d41b-4428-917b-e4f27b6276ff" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -618,19 +618,19 @@ "11996" ], "x-ms-correlation-request-id": [ - "eca2dc73-004b-493b-9a93-b4264eac2046" + "a91b1565-1b46-4519-b6f2-8ff0c440a11c" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214240Z:eca2dc73-004b-493b-9a93-b4264eac2046" + "WESTUS2:20221005T225008Z:a91b1565-1b46-4519-b6f2-8ff0c440a11c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:42:39 GMT" + "Wed, 05 Oct 2022 22:50:08 GMT" ], "Content-Length": [ - "960" + "962" ], "Content-Type": [ "application/json; charset=utf-8" @@ -639,28 +639,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps936\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteSuccess\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps936/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps2736\",\r\n \"name\": \"EventSubscription-ps2736\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6584\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteSuccess\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6584/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps1757\",\r\n \"name\": \"EventSubscription-ps1757\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps936/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8194/getFullUrl?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM5MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzODE5NC9nZXRGdWxsVXJsP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6584/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7105/getFullUrl?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM2NTg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9FdmVudFN1YnNjcmlwdGlvbi1wczcxMDUvZ2V0RnVsbFVybD9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95f4fcd6-c512-4bd4-a955-5c86e040b72a" + "a1d29a74-2d6d-4884-bee3-3e39093b2479" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -672,25 +672,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "59deb084-c9ac-48da-a4d2-c6b93c357c38" + "61e7b5e6-5efe-4603-a767-ffe84a87d586" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "07ee3708-d6a6-4f06-90c1-2d6ae4034368" + "d84e27ea-4b28-4e08-ba51-8af393c3dd1f" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214240Z:07ee3708-d6a6-4f06-90c1-2d6ae4034368" + "WESTUS2:20221005T225008Z:d84e27ea-4b28-4e08-ba51-8af393c3dd1f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:42:39 GMT" + "Wed, 05 Oct 2022 22:50:08 GMT" ], "Content-Length": [ "188" @@ -706,22 +706,21 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps936/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8194?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM5MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzODE5ND9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6584/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7105?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM2NTg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9FdmVudFN1YnNjcmlwdGlvbi1wczcxMDU/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\"\r\n },\r\n \"labels\": [\r\n \"Marketing\",\r\n \"Sales\"\r\n ],\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2eafebc5-add0-4626-bd4e-7568d9e36f4f" + "788f3093-8650-4fa3-9fd9-fea91ec2c9dc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -730,6 +729,7 @@ "238" ] }, + "RequestBody": "{\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\"\r\n },\r\n \"labels\": [\r\n \"Marketing\",\r\n \"Sales\"\r\n ],\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -744,31 +744,31 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/05487C07-3E21-483F-BADB-A0214E14E1C9?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/04E92CB9-5740-4561-8B1E-F7061A4E65F7?api-version=2022-06-15" ], "x-ms-request-id": [ - "92bc73d7-052c-4375-b236-bbbe915a99d7" + "032509ba-0508-4dde-bd2d-06fc1636c5d0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "897" + "899" ], "x-ms-correlation-request-id": [ - "60d9a01d-7bc2-42b5-b036-a9e99f84dbaf" + "0e60007a-add1-453c-a585-dbaf4c1776c3" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214241Z:60d9a01d-7bc2-42b5-b036-a9e99f84dbaf" + "WESTUS2:20221005T225009Z:0e60007a-add1-453c-a585-dbaf4c1776c3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:42:40 GMT" + "Wed, 05 Oct 2022 22:50:09 GMT" ], "Content-Length": [ - "1249" + "1251" ], "Content-Type": [ "application/json; charset=utf-8" @@ -777,25 +777,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps936\",\r\n \"provisioningState\": \"Updating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"Marketing\",\r\n \"Sales\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps936/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8194\",\r\n \"name\": \"EventSubscription-ps8194\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6584\",\r\n \"provisioningState\": \"Updating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"Marketing\",\r\n \"Sales\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6584/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7105\",\r\n \"name\": \"EventSubscription-ps7105\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/05487C07-3E21-483F-BADB-A0214E14E1C9?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvbnNTdGF0dXMvMDU0ODdDMDctM0UyMS00ODNGLUJBREItQTAyMTRFMTRFMUM5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/04E92CB9-5740-4561-8B1E-F7061A4E65F7?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvbnNTdGF0dXMvMDRFOTJDQjktNTc0MC00NTYxLThCMUUtRjcwNjFBNEU2NUY3P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eafebc5-add0-4626-bd4e-7568d9e36f4f" + "788f3093-8650-4fa3-9fd9-fea91ec2c9dc" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -807,25 +807,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e5aeb567-4c66-403e-ac36-e2ff63445848" + "5dad0d72-ef75-4305-b423-4ddff2709781" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11998" ], "x-ms-correlation-request-id": [ - "28409c2f-4233-4025-852c-02d411997287" + "931e2ee9-0ed0-4177-b379-abafe0b814d4" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214251Z:28409c2f-4233-4025-852c-02d411997287" + "WESTUS2:20221005T225020Z:931e2ee9-0ed0-4177-b379-abafe0b814d4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:42:51 GMT" + "Wed, 05 Oct 2022 22:50:19 GMT" ], "Content-Length": [ "262" @@ -837,28 +837,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/05487C07-3E21-483F-BADB-A0214E14E1C9?api-version=2021-12-01\",\r\n \"name\": \"05487c07-3e21-483f-badb-a0214e14e1c9\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/04E92CB9-5740-4561-8B1E-F7061A4E65F7?api-version=2022-06-15\",\r\n \"name\": \"04e92cb9-5740-4561-8b1e-f7061a4e65f7\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps936/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczkzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6584/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczY1ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7cc2d4b4-a965-4f41-a351-0cea08ad49a0" + "3a3f7126-3d8d-4807-9b54-e6e32baedb57" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -870,28 +870,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "40abd810-551b-4a13-8f68-5a2c6af8bd43" + "acf93436-bd19-4ae0-b48e-ec1a09a5c6e0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11999" ], "x-ms-correlation-request-id": [ - "6767bb84-8613-4619-bec5-7e92bc796ce5" + "d523c3df-aa5f-4c06-9e0c-68b9c3b3d99e" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214251Z:6767bb84-8613-4619-bec5-7e92bc796ce5" + "WESTUS2:20221005T225020Z:d523c3df-aa5f-4c06-9e0c-68b9c3b3d99e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:42:51 GMT" + "Wed, 05 Oct 2022 22:50:20 GMT" ], "Content-Length": [ - "2223" + "2541" ], "Content-Type": [ "application/json; charset=utf-8" @@ -900,28 +900,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps936\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"Marketing\",\r\n \"Sales\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps936/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8194\",\r\n \"name\": \"EventSubscription-ps8194\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps936\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteSuccess\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps936/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps2736\",\r\n \"name\": \"EventSubscription-ps2736\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6584\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"Marketing\",\r\n \"Sales\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6584/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7105\",\r\n \"name\": \"EventSubscription-ps7105\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6584\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteSuccess\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6584/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps1757\",\r\n \"name\": \"EventSubscription-ps1757\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6584/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2022-06-15&$skiptoken=%5b%7b%22token%22%3anull%2c%22range%22%3a%7b%22min%22%3a%2205C1E0%22%2c%22max%22%3a%22FF%22%7d%7d%5d&$top=20\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps936/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczkzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6584/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczY1ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2cd0c3e5-3f2e-408c-89ba-79daa8ca0e5d" + "c9e773dc-3bba-4eea-a2f0-c2525bff8ce5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -933,28 +933,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "98565ac5-f654-40d8-9c8d-d567aa10a3c7" + "f776a2ec-b9aa-4de0-ab68-7c3a15b0fb47" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11996" ], "x-ms-correlation-request-id": [ - "c561145c-0d4c-4182-9c3f-a5e4f70f763b" + "bde4b11f-8950-4bd3-8999-5ecda43e0a33" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214252Z:c561145c-0d4c-4182-9c3f-a5e4f70f763b" + "WESTUS2:20221005T225021Z:bde4b11f-8950-4bd3-8999-5ecda43e0a33" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:42:52 GMT" + "Wed, 05 Oct 2022 22:50:20 GMT" ], "Content-Length": [ - "2223" + "2541" ], "Content-Type": [ "application/json; charset=utf-8" @@ -963,28 +963,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps936\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"Marketing\",\r\n \"Sales\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps936/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8194\",\r\n \"name\": \"EventSubscription-ps8194\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps936\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteSuccess\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps936/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps2736\",\r\n \"name\": \"EventSubscription-ps2736\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6584\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"Marketing\",\r\n \"Sales\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6584/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7105\",\r\n \"name\": \"EventSubscription-ps7105\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6584\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteSuccess\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6584/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps1757\",\r\n \"name\": \"EventSubscription-ps1757\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6584/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2022-06-15&$skiptoken=%5b%7b%22token%22%3anull%2c%22range%22%3a%7b%22min%22%3a%2205C1E0%22%2c%22max%22%3a%22FF%22%7d%7d%5d&$top=20\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps936/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczkzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6584/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczY1ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5b517be-f763-4154-8ef3-4e591bed80b1" + "ccf1a986-53c2-4138-a711-545045d1894c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -996,25 +996,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3eb72691-e0cc-4009-8687-afbba93831eb" + "a3f9b83d-8342-4c78-9589-b4fd40c5b8aa" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11999" ], "x-ms-correlation-request-id": [ - "3b934199-b23d-4291-a19b-fd481f661000" + "087c5f85-a8af-4754-b7b6-b03c9c5ca557" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214314Z:3b934199-b23d-4291-a19b-fd481f661000" + "WESTUS2:20221005T225044Z:087c5f85-a8af-4754-b7b6-b03c9c5ca557" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:43:13 GMT" + "Wed, 05 Oct 2022 22:50:43 GMT" ], "Content-Length": [ "12" @@ -1030,24 +1030,87 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps936/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2021-12-01&$top=1", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczkzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAyMS0xMi0wMSYkdG9wPTE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6584/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2022-06-15&$skiptoken=%5b%7B%22token%22%3anull%2c%22range%22%3a%7B%22min%22%3a%2205C1E0%22%2c%22max%22%3a%22FF%22%7D%7D%5d&$top=20", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczY1ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zP2FwaS12ZXJzaW9uPTIwMjItMDYtMTUmJHNraXB0b2tlbj0lNWIlN2IlMjJ0b2tlbiUyMiUzYW51bGwlMmMlMjJyYW5nZSUyMiUzYSU3YiUyMm1pbiUyMiUzYSUyMjA1QzFFMCUyMiUyYyUyMm1heCUyMiUzYSUyMkZGJTIyJTdkJTdkJTVkJiR0b3A9MjA=", "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a3f7126-3d8d-4807-9b54-e6e32baedb57" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.41602", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "db098c86-7289-47ce-866e-aea54cc52ecb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "72d07a02-47ed-4e98-856f-4f696562512f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221005T225020Z:72d07a02-47ed-4e98-856f-4f696562512f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 05 Oct 2022 22:50:20 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6584/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2022-06-15&$skiptoken=%5b%7B%22token%22%3anull%2c%22range%22%3a%7B%22min%22%3a%2205C1E0%22%2c%22max%22%3a%22FF%22%7D%7D%5d&$top=20", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczY1ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zP2FwaS12ZXJzaW9uPTIwMjItMDYtMTUmJHNraXB0b2tlbj0lNWIlN2IlMjJ0b2tlbiUyMiUzYW51bGwlMmMlMjJyYW5nZSUyMiUzYSU3YiUyMm1pbiUyMiUzYSUyMjA1QzFFMCUyMiUyYyUyMm1heCUyMiUzYSUyMkZGJTIyJTdkJTdkJTVkJiR0b3A9MjA=", + "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "a66e1449-2fa0-49dc-a289-e2c5b99a0de4" + "c9e773dc-3bba-4eea-a2f0-c2525bff8ce5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1059,28 +1122,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a3102f65-c5e8-48dd-8a52-871a1bac8e24" + "fd5ba266-3f41-4512-b438-b724e14ed239" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11995" ], "x-ms-correlation-request-id": [ - "8e8ebc34-0417-4573-8593-14ea0e7852be" + "691ecdca-8ff6-4b8a-aaec-fb27ab7521d1" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214251Z:8e8ebc34-0417-4573-8593-14ea0e7852be" + "WESTUS2:20221005T225021Z:691ecdca-8ff6-4b8a-aaec-fb27ab7521d1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:42:51 GMT" + "Wed, 05 Oct 2022 22:50:20 GMT" ], "Content-Length": [ - "1688" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1089,28 +1152,91 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps936\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"Marketing\",\r\n \"Sales\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps936/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8194\",\r\n \"name\": \"EventSubscription-ps8194\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps936/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2021-12-01&$skiptoken=%5b%7b%22token%22%3a%22%2bRID%3a%7e9fgUAOy9bALjeB0AAAAAAA%3d%3d%23RT%3a1%23TRC%3a1%23ISV%3a2%23IEO%3a65551%23FPC%3aAeN4HQAAAAAA5HgdAAAAAAA%3d%22%2c%22range%22%3a%7b%22min%22%3a%22%22%2c%22max%22%3a%22FF%22%7d%7d%5d&$top=1\"\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps936/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2021-12-01&$top=1", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczkzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAyMS0xMi0wMSYkdG9wPTE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6584/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2022-06-15&$top=1", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczY1ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zP2FwaS12ZXJzaW9uPTIwMjItMDYtMTUmJHRvcD0x", "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2a1ab658-00b9-4703-af59-a10788b180c0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.41602", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ec14f8e8-cb7e-4264-8594-e0c047d3bc3e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "df9fb435-6ee0-4297-b47a-525b9fb88631" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221005T225020Z:df9fb435-6ee0-4297-b47a-525b9fb88631" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 05 Oct 2022 22:50:20 GMT" + ], + "Content-Length": [ + "1705" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6584\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"Marketing\",\r\n \"Sales\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6584/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7105\",\r\n \"name\": \"EventSubscription-ps7105\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6584/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2022-06-15&$skiptoken=%5b%7b%22token%22%3a%22%2bRID%3a%7e9fgUAOy9bAJQIAMAAAAACA%3d%3d%23RT%3a1%23TRC%3a1%23ISV%3a2%23IEO%3a65551%23QCF%3a8%23FPC%3aAVAgAwAAAAAIUSADAAAAAAg%3d%22%2c%22range%22%3a%7b%22min%22%3a%22%22%2c%22max%22%3a%2205C1E0%22%7d%7d%5d&$top=1\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6584/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2022-06-15&$top=1", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczY1ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zP2FwaS12ZXJzaW9uPTIwMjItMDYtMTUmJHRvcD0x", + "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "23759929-290d-411d-9421-14b4ecaa3297" + "9a755f62-1b26-4a56-9e35-dd751ce2beb4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1122,28 +1248,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "57a04c76-ab61-4e38-bd08-a937391c6e51" + "ba48c974-c7fa-493c-aee8-27353a91de33" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11998" ], "x-ms-correlation-request-id": [ - "7c68f510-f132-4405-bc48-0fec758ed046" + "ab3f30e5-7b13-4cfa-8b92-c2c3eac754f8" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214252Z:7c68f510-f132-4405-bc48-0fec758ed046" + "WESTUS2:20221005T225021Z:ab3f30e5-7b13-4cfa-8b92-c2c3eac754f8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:42:52 GMT" + "Wed, 05 Oct 2022 22:50:20 GMT" ], "Content-Length": [ - "1688" + "1705" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1152,28 +1278,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps936\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"Marketing\",\r\n \"Sales\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps936/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8194\",\r\n \"name\": \"EventSubscription-ps8194\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps936/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2021-12-01&$skiptoken=%5b%7b%22token%22%3a%22%2bRID%3a%7e9fgUAOy9bALjeB0AAAAAAA%3d%3d%23RT%3a1%23TRC%3a1%23ISV%3a2%23IEO%3a65551%23FPC%3aAeN4HQAAAAAA5HgdAAAAAAA%3d%22%2c%22range%22%3a%7b%22min%22%3a%22%22%2c%22max%22%3a%22FF%22%7d%7d%5d&$top=1\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps6584\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"NewSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"Marketing\",\r\n \"Sales\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6584/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7105\",\r\n \"name\": \"EventSubscription-ps7105\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6584/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2022-06-15&$skiptoken=%5b%7b%22token%22%3a%22%2bRID%3a%7e9fgUAOy9bAJQIAMAAAAACA%3d%3d%23RT%3a1%23TRC%3a1%23ISV%3a2%23IEO%3a65551%23QCF%3a8%23FPC%3aAVAgAwAAAAAIUSADAAAAAAg%3d%22%2c%22range%22%3a%7b%22min%22%3a%22%22%2c%22max%22%3a%2205C1E0%22%7d%7d%5d&$top=1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps936/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8194?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM5MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzODE5ND9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6584/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7105?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM2NTg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9FdmVudFN1YnNjcmlwdGlvbi1wczcxMDU/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6bb3e42c-dae1-4775-93f6-2f3e790c0a29" + "655ab31e-70a0-41db-9b07-ad0a0f625ced" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1182,7 +1308,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationResults/49B77151-7940-4B9E-913E-A925C52BCD39?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationResults/E18E95D0-5DA3-4A2A-9CB0-0C79C370C46D?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -1191,7 +1317,7 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/49B77151-7940-4B9E-913E-A925C52BCD39?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/E18E95D0-5DA3-4A2A-9CB0-0C79C370C46D?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1200,19 +1326,19 @@ "14999" ], "x-ms-request-id": [ - "3340a5ff-9c9f-4325-b56c-6ae173248043" + "e6e75c84-b22e-4687-87d0-085ee7e98fb4" ], "x-ms-correlation-request-id": [ - "3340a5ff-9c9f-4325-b56c-6ae173248043" + "e6e75c84-b22e-4687-87d0-085ee7e98fb4" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214252Z:3340a5ff-9c9f-4325-b56c-6ae173248043" + "WESTUS2:20221005T225022Z:e6e75c84-b22e-4687-87d0-085ee7e98fb4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:42:52 GMT" + "Wed, 05 Oct 2022 22:50:22 GMT" ], "Expires": [ "-1" @@ -1225,21 +1351,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/49B77151-7940-4B9E-913E-A925C52BCD39?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvbnNTdGF0dXMvNDlCNzcxNTEtNzk0MC00QjlFLTkxM0UtQTkyNUM1MkJDRDM5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/E18E95D0-5DA3-4A2A-9CB0-0C79C370C46D?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvbnNTdGF0dXMvRTE4RTk1RDAtNURBMy00QTJBLTlDQjAtMEM3OUMzNzBDNDZEP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6bb3e42c-dae1-4775-93f6-2f3e790c0a29" + "655ab31e-70a0-41db-9b07-ad0a0f625ced" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1251,25 +1377,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0980c741-135d-4a12-9b1b-aa6258704635" + "cb631b6b-d424-49ad-94c9-19a3147406ef" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11998" ], "x-ms-correlation-request-id": [ - "536026e6-444e-44c5-867c-190c30eabea2" + "a88e11ec-364d-44cf-8ee5-d15d70c2c7d5" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214303Z:536026e6-444e-44c5-867c-190c30eabea2" + "WESTUS2:20221005T225032Z:a88e11ec-364d-44cf-8ee5-d15d70c2c7d5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:43:02 GMT" + "Wed, 05 Oct 2022 22:50:32 GMT" ], "Content-Length": [ "262" @@ -1281,25 +1407,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/49B77151-7940-4B9E-913E-A925C52BCD39?api-version=2021-12-01\",\r\n \"name\": \"49b77151-7940-4b9e-913e-a925c52bcd39\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/E18E95D0-5DA3-4A2A-9CB0-0C79C370C46D?api-version=2022-06-15\",\r\n \"name\": \"e18e95d0-5da3-4a2a-9cb0-0c79c370c46d\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationResults/49B77151-7940-4B9E-913E-A925C52BCD39?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvblJlc3VsdHMvNDlCNzcxNTEtNzk0MC00QjlFLTkxM0UtQTkyNUM1MkJDRDM5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationResults/E18E95D0-5DA3-4A2A-9CB0-0C79C370C46D?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvblJlc3VsdHMvRTE4RTk1RDAtNURBMy00QTJBLTlDQjAtMEM3OUMzNzBDNDZEP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6bb3e42c-dae1-4775-93f6-2f3e790c0a29" + "655ab31e-70a0-41db-9b07-ad0a0f625ced" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1311,7 +1437,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2f15a108-9522-486c-af87-31ccf67d6163" + "5d9085f2-c403-4523-8097-ffcbea657a90" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1320,16 +1446,16 @@ "899" ], "x-ms-correlation-request-id": [ - "3cad8052-3a01-4671-9af2-1bff5b3a1991" + "a950482f-a8fb-4481-ba40-1b6530436a8f" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214303Z:3cad8052-3a01-4671-9af2-1bff5b3a1991" + "WESTUS2:20221005T225032Z:a950482f-a8fb-4481-ba40-1b6530436a8f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:43:02 GMT" + "Wed, 05 Oct 2022 22:50:32 GMT" ], "Expires": [ "-1" @@ -1342,24 +1468,24 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps936/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps2736?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM5MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL0V2ZW50U3Vic2NyaXB0aW9uLXBzMjczNj9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps6584/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps1757?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM2NTg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9FdmVudFN1YnNjcmlwdGlvbi1wczE3NTc/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45b75072-0bea-4f7c-a485-c4da10f293ed" + "12c372a7-c30e-468a-bee7-ef275514face" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1368,7 +1494,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationResults/85B2A96F-A1DC-4B0F-9A36-1A57B6EAA4AE?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationResults/F4DD5599-62E1-4F38-B00D-1CB84309E43A?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -1377,28 +1503,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/85B2A96F-A1DC-4B0F-9A36-1A57B6EAA4AE?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/F4DD5599-62E1-4F38-B00D-1CB84309E43A?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-request-id": [ - "b750b1d9-a29c-44ad-8327-24783c5f0fb3" + "52cdf3d2-452d-4e5b-8614-9a411e7c7ed2" ], "x-ms-correlation-request-id": [ - "b750b1d9-a29c-44ad-8327-24783c5f0fb3" + "52cdf3d2-452d-4e5b-8614-9a411e7c7ed2" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214303Z:b750b1d9-a29c-44ad-8327-24783c5f0fb3" + "WESTUS2:20221005T225033Z:52cdf3d2-452d-4e5b-8614-9a411e7c7ed2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:43:03 GMT" + "Wed, 05 Oct 2022 22:50:33 GMT" ], "Expires": [ "-1" @@ -1411,21 +1537,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/85B2A96F-A1DC-4B0F-9A36-1A57B6EAA4AE?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvbnNTdGF0dXMvODVCMkE5NkYtQTFEQy00QjBGLTlBMzYtMUE1N0I2RUFBNEFFP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/F4DD5599-62E1-4F38-B00D-1CB84309E43A?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvbnNTdGF0dXMvRjRERDU1OTktNjJFMS00RjM4LUIwMEQtMUNCODQzMDlFNDNBP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45b75072-0bea-4f7c-a485-c4da10f293ed" + "12c372a7-c30e-468a-bee7-ef275514face" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1437,25 +1563,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "10b8850a-39e5-4620-851c-004e7f751c8b" + "21707269-83b9-4d04-a1d9-e0085f218a02" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11997" ], "x-ms-correlation-request-id": [ - "543e4c42-c348-49dd-a7d6-fb60622df27d" + "9fa677f3-a91e-4139-a9cc-7cc878ed3954" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214314Z:543e4c42-c348-49dd-a7d6-fb60622df27d" + "WESTUS2:20221005T225044Z:9fa677f3-a91e-4139-a9cc-7cc878ed3954" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:43:13 GMT" + "Wed, 05 Oct 2022 22:50:44 GMT" ], "Content-Length": [ "262" @@ -1467,25 +1593,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/85B2A96F-A1DC-4B0F-9A36-1A57B6EAA4AE?api-version=2021-12-01\",\r\n \"name\": \"85b2a96f-a1dc-4b0f-9a36-1a57b6eaa4ae\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/F4DD5599-62E1-4F38-B00D-1CB84309E43A?api-version=2022-06-15\",\r\n \"name\": \"f4dd5599-62e1-4f38-b00d-1cb84309e43a\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationResults/85B2A96F-A1DC-4B0F-9A36-1A57B6EAA4AE?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvblJlc3VsdHMvODVCMkE5NkYtQTFEQy00QjBGLTlBMzYtMUE1N0I2RUFBNEFFP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationResults/F4DD5599-62E1-4F38-B00D-1CB84309E43A?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvblJlc3VsdHMvRjRERDU1OTktNjJFMS00RjM4LUIwMEQtMUNCODQzMDlFNDNBP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45b75072-0bea-4f7c-a485-c4da10f293ed" + "12c372a7-c30e-468a-bee7-ef275514face" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1497,25 +1623,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ca67386e-1a24-45c3-8765-3b19b1f23dac" + "ab3b3136-6844-4abc-b7e1-d87cf805c0fe" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "898" + "899" ], "x-ms-correlation-request-id": [ - "19bb55a0-818c-4d3e-97f4-5482839c4cda" + "ab010218-cd29-4dac-b44f-af90bc731aa0" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214314Z:19bb55a0-818c-4d3e-97f4-5482839c4cda" + "WESTUS2:20221005T225044Z:ab010218-cd29-4dac-b44f-af90bc731aa0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:43:13 GMT" + "Wed, 05 Oct 2022 22:50:44 GMT" ], "Expires": [ "-1" @@ -1528,24 +1654,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps936?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczkzNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps6584?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczY1ODQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "20af3c35-98f1-4df9-99f2-20dd7254aba9" + "dcd2c782-5b16-402a-b699-9c20b8238431" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1554,7 +1680,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzkzNi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzY1ODQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1563,13 +1689,13 @@ "14999" ], "x-ms-request-id": [ - "e4af862f-cbd6-4295-8f41-512c775e2335" + "9151f296-750c-4b94-9a20-2387d90d4049" ], "x-ms-correlation-request-id": [ - "e4af862f-cbd6-4295-8f41-512c775e2335" + "9151f296-750c-4b94-9a20-2387d90d4049" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214315Z:e4af862f-cbd6-4295-8f41-512c775e2335" + "WESTUS2:20221005T225045Z:9151f296-750c-4b94-9a20-2387d90d4049" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1578,7 +1704,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:43:15 GMT" + "Wed, 05 Oct 2022 22:50:44 GMT" ], "Expires": [ "-1" @@ -1591,18 +1717,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzkzNi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXprek5pMVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzY1ODQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpZMU9EUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1611,16 +1737,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "0bc8f38f-4b96-427b-bd51-57c56fa3ee07" + "7862cc3e-32ba-43bc-b0be-181e7b48535b" ], "x-ms-correlation-request-id": [ - "0bc8f38f-4b96-427b-bd51-57c56fa3ee07" + "7862cc3e-32ba-43bc-b0be-181e7b48535b" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214330Z:0bc8f38f-4b96-427b-bd51-57c56fa3ee07" + "WESTUS2:20221005T225100Z:7862cc3e-32ba-43bc-b0be-181e7b48535b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1629,7 +1755,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:43:29 GMT" + "Wed, 05 Oct 2022 22:50:59 GMT" ], "Expires": [ "-1" @@ -1642,18 +1768,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzkzNi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXprek5pMVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzY1ODQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpZMU9EUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1662,16 +1788,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-request-id": [ - "e28ac807-96be-46de-a22c-a33c8bee4d3b" + "6d3aed5f-b369-48ee-8102-75d21570b81b" ], "x-ms-correlation-request-id": [ - "e28ac807-96be-46de-a22c-a33c8bee4d3b" + "6d3aed5f-b369-48ee-8102-75d21570b81b" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214330Z:e28ac807-96be-46de-a22c-a33c8bee4d3b" + "WESTUS2:20221005T225100Z:6d3aed5f-b369-48ee-8102-75d21570b81b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1680,7 +1806,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:43:29 GMT" + "Wed, 05 Oct 2022 22:50:59 GMT" ], "Expires": [ "-1" @@ -1695,9 +1821,9 @@ ], "Names": { "": [ - "ps8194", - "ps2736", - "ps936" + "ps7105", + "ps1757", + "ps6584" ] }, "Variables": { diff --git a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.EventSubscriptionTests/EventGrid_EventSubscription_ResourceGroup2.json b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.EventSubscriptionTests/EventGrid_EventSubscription_ResourceGroup2.json index 08c6bf5534fc..cc04b1863faf 100644 --- a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.EventSubscriptionTests/EventGrid_EventSubscription_ResourceGroup2.json +++ b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.EventSubscriptionTests/EventGrid_EventSubscription_ResourceGroup2.json @@ -1,22 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps9586?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczk1ODY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps2832?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczI4MzI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a2981a8e-e387-4031-bb31-554961c4af6e" + "5c75c811-c49e-44cd-b261-5753c5facc3f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,6 +24,7 @@ "35" ] }, + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "77b53237-d4da-491f-b285-4d788acb1428" + "550b7dd7-7ae9-4fc6-bacf-2b7da12c94cf" ], "x-ms-correlation-request-id": [ - "77b53237-d4da-491f-b285-4d788acb1428" + "550b7dd7-7ae9-4fc6-bacf-2b7da12c94cf" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214336Z:77b53237-d4da-491f-b285-4d788acb1428" + "WESTUS2:20221005T225104Z:550b7dd7-7ae9-4fc6-bacf-2b7da12c94cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:43:35 GMT" + "Wed, 05 Oct 2022 22:51:03 GMT" ], "Content-Length": [ "186" @@ -63,26 +63,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9586\",\r\n \"name\": \"RGName-ps9586\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2832\",\r\n \"name\": \"RGName-ps2832\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9586/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6257?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM5NTg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9FdmVudFN1YnNjcmlwdGlvbi1wczYyNTc/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2832/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps3454?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHMyODMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9FdmVudFN1YnNjcmlwdGlvbi1wczM0NTQ/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3173434b-e1c5-42cc-9efe-3b4122a26ca5" + "c479df33-bada-49a0-8fb6-ad6dbe1048c9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -91,6 +90,7 @@ "535" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -105,10 +105,10 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/033362B2-3C70-4589-B00C-533B665CF313?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/B014D1AE-9431-4D85-9916-97976301A8F4?api-version=2022-06-15" ], "x-ms-request-id": [ - "272e5e4d-c51e-4ddd-b41f-aa5220a172e6" + "a220bb3b-43da-479d-9317-f7f8b17ea6a9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -117,16 +117,16 @@ "899" ], "x-ms-correlation-request-id": [ - "eb26a064-8a4b-4099-bffc-d900eb391e2b" + "54b8a77f-5233-4b2e-93b7-168dc4a46bb3" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214338Z:eb26a064-8a4b-4099-bffc-d900eb391e2b" + "WESTUS2:20221005T225105Z:54b8a77f-5233-4b2e-93b7-168dc4a46bb3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:43:37 GMT" + "Wed, 05 Oct 2022 22:51:05 GMT" ], "Content-Length": [ "1176" @@ -138,25 +138,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps9586\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9586/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6257\",\r\n \"name\": \"EventSubscription-ps6257\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2832\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2832/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps3454\",\r\n \"name\": \"EventSubscription-ps3454\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/033362B2-3C70-4589-B00C-533B665CF313?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvbnNTdGF0dXMvMDMzMzYyQjItM0M3MC00NTg5LUIwMEMtNTMzQjY2NUNGMzEzP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/B014D1AE-9431-4D85-9916-97976301A8F4?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvbnNTdGF0dXMvQjAxNEQxQUUtOTQzMS00RDg1LTk5MTYtOTc5NzYzMDFBOEY0P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3173434b-e1c5-42cc-9efe-3b4122a26ca5" + "c479df33-bada-49a0-8fb6-ad6dbe1048c9" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -168,25 +168,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f35ebba7-4d4d-4731-bfb9-19a2cc213419" + "2ebc0109-798d-45c6-921f-6b799b74bb7c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "c2c69b57-5909-4be0-aed4-4568fee91290" + "aa5b0f90-abd1-4acc-ad10-c54a201968e5" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214348Z:c2c69b57-5909-4be0-aed4-4568fee91290" + "WESTUS2:20221005T225115Z:aa5b0f90-abd1-4acc-ad10-c54a201968e5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:43:48 GMT" + "Wed, 05 Oct 2022 22:51:15 GMT" ], "Content-Length": [ "262" @@ -198,25 +198,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/033362B2-3C70-4589-B00C-533B665CF313?api-version=2021-12-01\",\r\n \"name\": \"033362b2-3c70-4589-b00c-533b665cf313\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/B014D1AE-9431-4D85-9916-97976301A8F4?api-version=2022-06-15\",\r\n \"name\": \"b014d1ae-9431-4d85-9916-97976301a8f4\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9586/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6257?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM5NTg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9FdmVudFN1YnNjcmlwdGlvbi1wczYyNTc/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2832/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps3454?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHMyODMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9FdmVudFN1YnNjcmlwdGlvbi1wczM0NTQ/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3173434b-e1c5-42cc-9efe-3b4122a26ca5" + "c479df33-bada-49a0-8fb6-ad6dbe1048c9" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -228,25 +228,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c4c3adc2-4ee9-47ce-94f4-dcf65ffa83d8" + "05ca97cf-d8c7-4229-b1f5-fe64c809a85d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "17c105e5-583d-465f-abbb-118a90e916de" + "3117365c-b57d-49ee-8979-98bb7ee6cd53" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214348Z:17c105e5-583d-465f-abbb-118a90e916de" + "WESTUS2:20221005T225115Z:3117365c-b57d-49ee-8979-98bb7ee6cd53" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:43:48 GMT" + "Wed, 05 Oct 2022 22:51:15 GMT" ], "Content-Length": [ "1278" @@ -258,28 +258,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps9586\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9586/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6257\",\r\n \"name\": \"EventSubscription-ps6257\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2832\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2832/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps3454\",\r\n \"name\": \"EventSubscription-ps3454\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9586/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6257?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM5NTg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9FdmVudFN1YnNjcmlwdGlvbi1wczYyNTc/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2832/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps3454?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHMyODMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9FdmVudFN1YnNjcmlwdGlvbi1wczM0NTQ/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5757e02-34b0-4574-89e2-9f73668660bd" + "116e82c9-5e87-4533-80a7-9d33f850260f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -291,25 +291,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "acbc27a6-f92c-4d7c-81b1-77df139e7cc7" + "ba6da58a-2da4-4d69-ba94-8ac558f30565" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11999" ], "x-ms-correlation-request-id": [ - "bb69f402-1ea2-4334-9c1e-4da53db21aae" + "85b6da61-005a-4dcd-8c6f-f41767b76f75" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214359Z:bb69f402-1ea2-4334-9c1e-4da53db21aae" + "WESTUS2:20221005T225127Z:85b6da61-005a-4dcd-8c6f-f41767b76f75" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:43:59 GMT" + "Wed, 05 Oct 2022 22:51:26 GMT" ], "Content-Length": [ "1278" @@ -321,26 +321,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps9586\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9586/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6257\",\r\n \"name\": \"EventSubscription-ps6257\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2832\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2832/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps3454\",\r\n \"name\": \"EventSubscription-ps3454\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9586/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8187?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM5NTg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9FdmVudFN1YnNjcmlwdGlvbi1wczgxODc/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2832/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7201?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHMyODMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9FdmVudFN1YnNjcmlwdGlvbi1wczcyMDE/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteSuccess\"\r\n ],\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"eventDeliverySchema\": \"EventGridSchema\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "542300b1-df57-4ac2-949b-fd12f0a248b6" + "c117ba32-e97f-4337-97a3-7a3de1008d80" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -349,6 +348,7 @@ "626" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteSuccess\"\r\n ],\r\n \"isSubjectCaseSensitive\": false,\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"eventDeliverySchema\": \"EventGridSchema\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -363,28 +363,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/62BF1E65-8475-4BA7-9A45-F794DBDE7918?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/1ACB77CB-38D9-4E4F-A99D-CE3FFA06082C?api-version=2022-06-15" ], "x-ms-request-id": [ - "95d0d812-6a13-4f92-ae06-0e4dd5514e6d" + "1c2777f5-24c5-4b11-ba0b-e03c2c6abb16" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "898" + "899" ], "x-ms-correlation-request-id": [ - "a523fab1-d8b0-446c-9d76-e30ed70b6307" + "b7dbcd2a-ba96-4774-8f6b-054d7eda0b15" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214349Z:a523fab1-d8b0-446c-9d76-e30ed70b6307" + "WESTUS2:20221005T225117Z:b7dbcd2a-ba96-4774-8f6b-054d7eda0b15" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:43:48 GMT" + "Wed, 05 Oct 2022 22:51:16 GMT" ], "Content-Length": [ "860" @@ -396,25 +396,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps9586\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteSuccess\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9586/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8187\",\r\n \"name\": \"EventSubscription-ps8187\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2832\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteSuccess\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2832/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7201\",\r\n \"name\": \"EventSubscription-ps7201\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/62BF1E65-8475-4BA7-9A45-F794DBDE7918?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvbnNTdGF0dXMvNjJCRjFFNjUtODQ3NS00QkE3LTlBNDUtRjc5NERCREU3OTE4P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/1ACB77CB-38D9-4E4F-A99D-CE3FFA06082C?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvbnNTdGF0dXMvMUFDQjc3Q0ItMzhEOS00RTRGLUE5OUQtQ0UzRkZBMDYwODJDP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "542300b1-df57-4ac2-949b-fd12f0a248b6" + "c117ba32-e97f-4337-97a3-7a3de1008d80" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -426,7 +426,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8be49543-572f-47b9-b85c-98a5f149404e" + "47ef28a4-59a2-43fa-a043-30121ea5278a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -435,16 +435,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "5b16be64-dc91-4f1d-a142-721366331abb" + "0b4d5c79-41ef-4c56-9f5e-45a8a836eef6" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214359Z:5b16be64-dc91-4f1d-a142-721366331abb" + "WESTUS2:20221005T225127Z:0b4d5c79-41ef-4c56-9f5e-45a8a836eef6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:43:59 GMT" + "Wed, 05 Oct 2022 22:51:26 GMT" ], "Content-Length": [ "262" @@ -456,25 +456,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/62BF1E65-8475-4BA7-9A45-F794DBDE7918?api-version=2021-12-01\",\r\n \"name\": \"62bf1e65-8475-4ba7-9a45-f794dbde7918\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/1ACB77CB-38D9-4E4F-A99D-CE3FFA06082C?api-version=2022-06-15\",\r\n \"name\": \"1acb77cb-38d9-4e4f-a99d-ce3ffa06082c\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9586/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8187?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM5NTg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9FdmVudFN1YnNjcmlwdGlvbi1wczgxODc/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2832/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7201?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHMyODMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9FdmVudFN1YnNjcmlwdGlvbi1wczcyMDE/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "542300b1-df57-4ac2-949b-fd12f0a248b6" + "c117ba32-e97f-4337-97a3-7a3de1008d80" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -486,7 +486,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d51f1920-0b0e-4ded-b856-d571a0a43e6f" + "bd690891-f4f2-4d5e-8f4c-e0c8efc67027" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -495,16 +495,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "b605d01e-50c1-482e-83c8-1386902ce616" + "57f60a1b-232c-48d5-a77b-fefbf1ae0e9e" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214359Z:b605d01e-50c1-482e-83c8-1386902ce616" + "WESTUS2:20221005T225127Z:57f60a1b-232c-48d5-a77b-fefbf1ae0e9e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:43:59 GMT" + "Wed, 05 Oct 2022 22:51:26 GMT" ], "Content-Length": [ "962" @@ -516,28 +516,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps9586\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteSuccess\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9586/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8187\",\r\n \"name\": \"EventSubscription-ps8187\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2832\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteSuccess\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2832/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7201\",\r\n \"name\": \"EventSubscription-ps7201\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9586/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6257/getFullUrl?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM5NTg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9FdmVudFN1YnNjcmlwdGlvbi1wczYyNTcvZ2V0RnVsbFVybD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2832/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps3454/getFullUrl?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHMyODMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9FdmVudFN1YnNjcmlwdGlvbi1wczM0NTQvZ2V0RnVsbFVybD9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5757e02-34b0-4574-89e2-9f73668660bd" + "116e82c9-5e87-4533-80a7-9d33f850260f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -549,7 +549,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6a56efa7-8449-4a68-a90a-45aa67bfbefa" + "51157568-9a9f-4ff1-9abf-e9c7be806b41" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -558,16 +558,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "9d8cc896-c1af-450f-964f-d675d68881af" + "e3003578-f461-45bf-aba9-a05691e61598" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214359Z:9d8cc896-c1af-450f-964f-d675d68881af" + "WESTUS2:20221005T225127Z:e3003578-f461-45bf-aba9-a05691e61598" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:43:59 GMT" + "Wed, 05 Oct 2022 22:51:26 GMT" ], "Content-Length": [ "188" @@ -583,24 +583,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9586/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczk1ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2832/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI4MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b049b41-fc6f-4a46-bbb4-f4b66489006c" + "93531113-9371-4944-9628-6ec8f15bbf94" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -612,28 +612,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "804de662-3aa8-4450-85c6-bc17f42251ef" + "2f2d2fc2-3925-4e86-a686-fe7ad3fe41de" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11999" ], "x-ms-correlation-request-id": [ - "17e4027a-244b-4adf-a67d-3132e5c29412" + "6299a126-6d8e-4fd9-b185-ff84b0e05b88" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214359Z:17e4027a-244b-4adf-a67d-3132e5c29412" + "WESTUS2:20221005T225128Z:6299a126-6d8e-4fd9-b185-ff84b0e05b88" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:43:59 GMT" + "Wed, 05 Oct 2022 22:51:27 GMT" ], "Content-Length": [ - "2253" + "2567" ], "Content-Type": [ "application/json; charset=utf-8" @@ -642,28 +642,91 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps9586\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9586/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6257\",\r\n \"name\": \"EventSubscription-ps6257\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps9586\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteSuccess\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9586/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8187\",\r\n \"name\": \"EventSubscription-ps8187\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2832\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": [\r\n \"Finance\",\r\n \"HR\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2832/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps3454\",\r\n \"name\": \"EventSubscription-ps3454\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rgname-ps2832\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteSuccess\"\r\n ],\r\n \"enableAdvancedFilteringOnArrays\": false\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2832/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7201\",\r\n \"name\": \"EventSubscription-ps7201\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2832/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2022-06-15&$skiptoken=%5b%7b%22token%22%3anull%2c%22range%22%3a%7b%22min%22%3a%2205C1E0%22%2c%22max%22%3a%22FF%22%7d%7d%5d&$top=20\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9586/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczk1ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2832/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI4MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b4ca3fe3-730a-420a-b29e-24682d2b6251" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.41602", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a6c6bc4e-da9a-4b05-a7a8-4e08ad40938b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "fd085d59-e257-4be7-90eb-35f469ef5631" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221005T225151Z:fd085d59-e257-4be7-90eb-35f469ef5631" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 05 Oct 2022 22:51:50 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2832/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2022-06-15&$skiptoken=%5b%7B%22token%22%3anull%2c%22range%22%3a%7B%22min%22%3a%2205C1E0%22%2c%22max%22%3a%22FF%22%7D%7D%5d&$top=20", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI4MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zP2FwaS12ZXJzaW9uPTIwMjItMDYtMTUmJHNraXB0b2tlbj0lNWIlN2IlMjJ0b2tlbiUyMiUzYW51bGwlMmMlMjJyYW5nZSUyMiUzYSU3YiUyMm1pbiUyMiUzYSUyMjA1QzFFMCUyMiUyYyUyMm1heCUyMiUzYSUyMkZGJTIyJTdkJTdkJTVkJiR0b3A9MjA=", + "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "98308085-591c-4c47-b28f-aa59556a91ee" + "93531113-9371-4944-9628-6ec8f15bbf94" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -675,25 +738,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5fff97a0-9c9b-4297-b1bc-49ff3f21f9ea" + "2775c560-f14a-463c-a8d2-9c1f427d9e5a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11998" ], "x-ms-correlation-request-id": [ - "0ccb001e-d14a-4f85-8aa9-acaf16e2fa88" + "ba26f207-517b-4565-87cb-f656a784596b" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214421Z:0ccb001e-d14a-4f85-8aa9-acaf16e2fa88" + "WESTUS2:20221005T225128Z:ba26f207-517b-4565-87cb-f656a784596b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:44:21 GMT" + "Wed, 05 Oct 2022 22:51:27 GMT" ], "Content-Length": [ "12" @@ -709,24 +772,24 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9586/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps6257?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM5NTg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9FdmVudFN1YnNjcmlwdGlvbi1wczYyNTc/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2832/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps3454?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHMyODMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9FdmVudFN1YnNjcmlwdGlvbi1wczM0NTQ/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d42bd91-6b39-42b6-a890-dd3cad4b4539" + "3d37bc2b-24e2-40e8-8c42-92025bf7b17d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -735,7 +798,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationResults/79BB6F97-E5E3-4E9D-AF9E-B0D6DC123D61?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationResults/3575EDFD-E63D-40BB-9815-B724B815D510?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -744,7 +807,7 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/79BB6F97-E5E3-4E9D-AF9E-B0D6DC123D61?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/3575EDFD-E63D-40BB-9815-B724B815D510?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -753,19 +816,19 @@ "14999" ], "x-ms-request-id": [ - "fa26543a-600b-46fc-9d60-999680f489c8" + "89690a0d-e15a-4c2f-ad1b-608da22e6776" ], "x-ms-correlation-request-id": [ - "fa26543a-600b-46fc-9d60-999680f489c8" + "89690a0d-e15a-4c2f-ad1b-608da22e6776" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214400Z:fa26543a-600b-46fc-9d60-999680f489c8" + "WESTUS2:20221005T225129Z:89690a0d-e15a-4c2f-ad1b-608da22e6776" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:44:00 GMT" + "Wed, 05 Oct 2022 22:51:28 GMT" ], "Expires": [ "-1" @@ -778,21 +841,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/79BB6F97-E5E3-4E9D-AF9E-B0D6DC123D61?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvbnNTdGF0dXMvNzlCQjZGOTctRTVFMy00RTlELUFGOUUtQjBENkRDMTIzRDYxP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/3575EDFD-E63D-40BB-9815-B724B815D510?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvbnNTdGF0dXMvMzU3NUVERkQtRTYzRC00MEJCLTk4MTUtQjcyNEI4MTVENTEwP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d42bd91-6b39-42b6-a890-dd3cad4b4539" + "3d37bc2b-24e2-40e8-8c42-92025bf7b17d" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -804,25 +867,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f211c3d2-ec75-41dc-86ea-923b9d206a66" + "3ea12938-e43e-46a4-894b-b6f07e474d8c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11999" ], "x-ms-correlation-request-id": [ - "ae733446-8d0d-459c-adea-957910782e3b" + "f09c8d08-3607-423d-817d-0aa0f48469d4" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214410Z:ae733446-8d0d-459c-adea-957910782e3b" + "WESTUS2:20221005T225139Z:f09c8d08-3607-423d-817d-0aa0f48469d4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:44:10 GMT" + "Wed, 05 Oct 2022 22:51:38 GMT" ], "Content-Length": [ "262" @@ -834,25 +897,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/79BB6F97-E5E3-4E9D-AF9E-B0D6DC123D61?api-version=2021-12-01\",\r\n \"name\": \"79bb6f97-e5e3-4e9d-af9e-b0d6dc123d61\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/3575EDFD-E63D-40BB-9815-B724B815D510?api-version=2022-06-15\",\r\n \"name\": \"3575edfd-e63d-40bb-9815-b724b815d510\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationResults/79BB6F97-E5E3-4E9D-AF9E-B0D6DC123D61?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvblJlc3VsdHMvNzlCQjZGOTctRTVFMy00RTlELUFGOUUtQjBENkRDMTIzRDYxP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationResults/3575EDFD-E63D-40BB-9815-B724B815D510?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvblJlc3VsdHMvMzU3NUVERkQtRTYzRC00MEJCLTk4MTUtQjcyNEI4MTVENTEwP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d42bd91-6b39-42b6-a890-dd3cad4b4539" + "3d37bc2b-24e2-40e8-8c42-92025bf7b17d" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -864,7 +927,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "48c628ac-c556-4973-bdf9-d408f6e7a02f" + "2d8c62dd-b877-497a-b918-47761a3496fa" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -873,16 +936,16 @@ "899" ], "x-ms-correlation-request-id": [ - "bac8c9e8-fe52-41e7-a265-a7ed759a67b0" + "13bb87ae-39d2-4f3f-b953-2aa2a8237919" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214410Z:bac8c9e8-fe52-41e7-a265-a7ed759a67b0" + "WESTUS2:20221005T225139Z:13bb87ae-39d2-4f3f-b953-2aa2a8237919" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:44:10 GMT" + "Wed, 05 Oct 2022 22:51:38 GMT" ], "Expires": [ "-1" @@ -895,24 +958,24 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9586/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps8187?api-version=2021-12-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHM5NTg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9FdmVudFN1YnNjcmlwdGlvbi1wczgxODc/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2832/providers/Microsoft.EventGrid/eventSubscriptions/EventSubscription-ps7201?api-version=2022-06-15", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9SR05hbWUtcHMyODMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9FdmVudFN1YnNjcmlwdGlvbi1wczcyMDE/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d3d9b91-60e1-4332-9d9d-5ddf72576e4f" + "5648ebaf-1a94-474f-82b8-1656add59dd5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -921,7 +984,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationResults/7C082764-5BEF-4921-9854-2C9ADE697C55?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationResults/DE9F58F3-B8AA-4305-9EC0-E0DA82ACE18D?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -930,28 +993,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/7C082764-5BEF-4921-9854-2C9ADE697C55?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/DE9F58F3-B8AA-4305-9EC0-E0DA82ACE18D?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-request-id": [ - "be787cbb-3670-409e-99cb-d8872ac6d1c4" + "fd0e40bf-947f-48b9-930b-c31514a5882d" ], "x-ms-correlation-request-id": [ - "be787cbb-3670-409e-99cb-d8872ac6d1c4" + "fd0e40bf-947f-48b9-930b-c31514a5882d" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214411Z:be787cbb-3670-409e-99cb-d8872ac6d1c4" + "WESTUS2:20221005T225140Z:fd0e40bf-947f-48b9-930b-c31514a5882d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:44:11 GMT" + "Wed, 05 Oct 2022 22:51:40 GMT" ], "Expires": [ "-1" @@ -964,21 +1027,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/7C082764-5BEF-4921-9854-2C9ADE697C55?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvbnNTdGF0dXMvN0MwODI3NjQtNUJFRi00OTIxLTk4NTQtMkM5QURFNjk3QzU1P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/DE9F58F3-B8AA-4305-9EC0-E0DA82ACE18D?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvbnNTdGF0dXMvREU5RjU4RjMtQjhBQS00MzA1LTlFQzAtRTBEQTgyQUNFMThEP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d3d9b91-60e1-4332-9d9d-5ddf72576e4f" + "5648ebaf-1a94-474f-82b8-1656add59dd5" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -990,25 +1053,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5dd1450c-6991-4cc4-b6e2-db0e7cd748b2" + "4c0f28f2-07b0-453f-bcc2-d8873ce917b4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11999" ], "x-ms-correlation-request-id": [ - "42306cd6-dfe1-4a77-8475-659f88fef059" + "a164bec5-5f67-4077-a9fb-a8815aabb023" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214421Z:42306cd6-dfe1-4a77-8475-659f88fef059" + "WESTUS2:20221005T225150Z:a164bec5-5f67-4077-a9fb-a8815aabb023" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:44:21 GMT" + "Wed, 05 Oct 2022 22:51:50 GMT" ], "Content-Length": [ "262" @@ -1020,25 +1083,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/7C082764-5BEF-4921-9854-2C9ADE697C55?api-version=2021-12-01\",\r\n \"name\": \"7c082764-5bef-4921-9854-2c9ade697c55\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/DE9F58F3-B8AA-4305-9EC0-E0DA82ACE18D?api-version=2022-06-15\",\r\n \"name\": \"de9f58f3-b8aa-4305-9ec0-e0da82ace18d\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationResults/7C082764-5BEF-4921-9854-2C9ADE697C55?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvblJlc3VsdHMvN0MwODI3NjQtNUJFRi00OTIxLTk4NTQtMkM5QURFNjk3QzU1P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationResults/DE9F58F3-B8AA-4305-9EC0-E0DA82ACE18D?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvblJlc3VsdHMvREU5RjU4RjMtQjhBQS00MzA1LTlFQzAtRTBEQTgyQUNFMThEP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d3d9b91-60e1-4332-9d9d-5ddf72576e4f" + "5648ebaf-1a94-474f-82b8-1656add59dd5" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1050,25 +1113,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4f1043b8-f437-49ba-ab2e-464ce1c45b0e" + "84daca50-a1f9-4cdf-8a27-e10c1f75b434" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "898" + "899" ], "x-ms-correlation-request-id": [ - "ebccee1e-9fe4-4d43-a881-6132f2a6f1e7" + "044369db-74c6-4dcc-8c3b-557ea105e162" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214421Z:ebccee1e-9fe4-4d43-a881-6132f2a6f1e7" + "WESTUS2:20221005T225150Z:044369db-74c6-4dcc-8c3b-557ea105e162" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:44:21 GMT" + "Wed, 05 Oct 2022 22:51:50 GMT" ], "Expires": [ "-1" @@ -1081,24 +1144,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps9586?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczk1ODY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps2832?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczI4MzI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "836c3b56-9b93-4edd-954e-66aa00199ae5" + "e981c6b6-ac2e-490a-808d-ce47fb905471" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1107,22 +1170,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzk1ODYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzI4MzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-request-id": [ - "744c41df-092b-4a60-84c7-81c6f2853e19" + "c974d17c-86db-40af-b394-ec40b51fe5c5" ], "x-ms-correlation-request-id": [ - "744c41df-092b-4a60-84c7-81c6f2853e19" + "c974d17c-86db-40af-b394-ec40b51fe5c5" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214422Z:744c41df-092b-4a60-84c7-81c6f2853e19" + "WESTUS2:20221005T225152Z:c974d17c-86db-40af-b394-ec40b51fe5c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1131,7 +1194,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:44:22 GMT" + "Wed, 05 Oct 2022 22:51:51 GMT" ], "Expires": [ "-1" @@ -1144,18 +1207,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzk1ODYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXprMU9EWXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzI4MzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpJNE16SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1164,16 +1227,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11984" ], "x-ms-request-id": [ - "1b86b6ca-2ef7-4fe5-b674-af3d923a84ab" + "b5f6db9b-ee75-4a16-9c4c-845a02ebc110" ], "x-ms-correlation-request-id": [ - "1b86b6ca-2ef7-4fe5-b674-af3d923a84ab" + "b5f6db9b-ee75-4a16-9c4c-845a02ebc110" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214437Z:1b86b6ca-2ef7-4fe5-b674-af3d923a84ab" + "WESTUS2:20221005T225207Z:b5f6db9b-ee75-4a16-9c4c-845a02ebc110" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1182,7 +1245,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:44:36 GMT" + "Wed, 05 Oct 2022 22:52:06 GMT" ], "Expires": [ "-1" @@ -1195,18 +1258,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzk1ODYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXprMU9EWXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzI4MzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpJNE16SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1215,16 +1278,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11983" ], "x-ms-request-id": [ - "2e6b0061-e72e-4a07-893a-0054b5df4650" + "cc224b38-de70-4e41-8483-e5bf3ac66f7f" ], "x-ms-correlation-request-id": [ - "2e6b0061-e72e-4a07-893a-0054b5df4650" + "cc224b38-de70-4e41-8483-e5bf3ac66f7f" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T214437Z:2e6b0061-e72e-4a07-893a-0054b5df4650" + "WESTUS2:20221005T225207Z:cc224b38-de70-4e41-8483-e5bf3ac66f7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1233,7 +1296,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:44:37 GMT" + "Wed, 05 Oct 2022 22:52:07 GMT" ], "Expires": [ "-1" @@ -1248,9 +1311,9 @@ ], "Names": { "": [ - "ps6257", - "ps8187", - "ps9586" + "ps3454", + "ps7201", + "ps2832" ] }, "Variables": { diff --git a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.TopicTests/EventGrid_TopicsCreateGetAndDelete.json b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.TopicTests/EventGrid_TopicsCreateGetAndDelete.json index d39cfb410926..b74ec389b297 100644 --- a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.TopicTests/EventGrid_TopicsCreateGetAndDelete.json +++ b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.TopicTests/EventGrid_TopicsCreateGetAndDelete.json @@ -1,22 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps5765?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczU3NjU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps5347?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczUzNDc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "790d5271-d373-4aa8-afd5-fe813a3f8489" + "ad23d01d-5407-437c-90cb-a45a43e7a2e3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,6 +24,7 @@ "35" ] }, + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-request-id": [ - "ddc53a3c-6664-45a1-b976-4313b586036c" + "742f99d8-fee0-4b9d-9026-402499ba49d9" ], "x-ms-correlation-request-id": [ - "ddc53a3c-6664-45a1-b976-4313b586036c" + "742f99d8-fee0-4b9d-9026-402499ba49d9" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212201Z:ddc53a3c-6664-45a1-b976-4313b586036c" + "WESTUS2:20221005T230447Z:742f99d8-fee0-4b9d-9026-402499ba49d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:22:00 GMT" + "Wed, 05 Oct 2022 23:04:46 GMT" ], "Content-Length": [ "186" @@ -63,26 +63,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5765\",\r\n \"name\": \"RGName-ps5765\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5347\",\r\n \"name\": \"RGName-ps5347\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps113?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczExMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps7060?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczcwNjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "22e18eb2-a2ef-41ce-835c-0637d91d5452" + "1bd7c774-d93b-4e80-b8d5-38739c561bf9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ], "Content-Type": [ "application/json; charset=utf-8" @@ -91,6 +90,7 @@ "35" ] }, + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-request-id": [ - "081626c2-37a5-44cc-81fe-74cad4aa365e" + "e0c3379c-0a2c-4d28-810f-1129aed4798e" ], "x-ms-correlation-request-id": [ - "081626c2-37a5-44cc-81fe-74cad4aa365e" + "e0c3379c-0a2c-4d28-810f-1129aed4798e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212201Z:081626c2-37a5-44cc-81fe-74cad4aa365e" + "WESTUS2:20221005T230448Z:e0c3379c-0a2c-4d28-810f-1129aed4798e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,10 +117,10 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:22:00 GMT" + "Wed, 05 Oct 2022 23:04:48 GMT" ], "Content-Length": [ - "184" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -129,26 +129,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps113\",\r\n \"name\": \"RGName-ps113\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7060\",\r\n \"name\": \"RGName-ps7060\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5765/providers/Microsoft.EventGrid/topics/PSTestTopic-ps4188?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczU3NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNDE4OD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5347/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3421?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMzQyMT9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "93d0da44-1cae-4486-8e56-0db019376391" + "4fe7b9c9-4a71-4528-8b25-653cc9d34f4b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -157,6 +156,7 @@ "137" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -171,10 +171,10 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/F748681C-F368-49C9-B75F-8FEC5A9B2A4B?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/C11D9AB9-FD97-452F-8AEE-306AF2A4F501?api-version=2022-06-15" ], "x-ms-request-id": [ - "97d6a7ac-ad1c-4e68-bc8b-7491386b3a8a" + "0e2ea9cd-a5e0-4f33-b6bf-0b65e178d59a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -183,16 +183,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "f9a204cb-744f-49d4-a157-ee8c70395e85" + "28ace3fa-b99d-4ad4-a513-7e90645bcae3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212203Z:f9a204cb-744f-49d4-a157-ee8c70395e85" + "WESTUS2:20221005T230450Z:28ace3fa-b99d-4ad4-a513-7e90645bcae3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:22:02 GMT" + "Wed, 05 Oct 2022 23:04:50 GMT" ], "Content-Length": [ "392" @@ -204,25 +204,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5765/providers/Microsoft.EventGrid/topics/PSTestTopic-ps4188\",\r\n \"name\": \"PSTestTopic-ps4188\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5347/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3421\",\r\n \"name\": \"PSTestTopic-ps3421\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/F748681C-F368-49C9-B75F-8FEC5A9B2A4B?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRjc0ODY4MUMtRjM2OC00OUM5LUI3NUYtOEZFQzVBOUIyQTRCP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/C11D9AB9-FD97-452F-8AEE-306AF2A4F501?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvQzExRDlBQjktRkQ5Ny00NTJGLThBRUUtMzA2QUYyQTRGNTAxP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "93d0da44-1cae-4486-8e56-0db019376391" + "4fe7b9c9-4a71-4528-8b25-653cc9d34f4b" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -234,7 +234,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "54505c75-d05b-494c-b376-57c616223b9e" + "b1fd18ea-39f1-4a22-bfd5-dceeb0884ec8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -243,16 +243,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "4bdceb25-47ec-40cc-85c5-04897fba9ed9" + "cc38866a-07ce-4a78-b2dd-94052781e82c" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212213Z:4bdceb25-47ec-40cc-85c5-04897fba9ed9" + "WESTUS2:20221005T230500Z:cc38866a-07ce-4a78-b2dd-94052781e82c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:22:12 GMT" + "Wed, 05 Oct 2022 23:05:00 GMT" ], "Content-Length": [ "286" @@ -264,25 +264,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/F748681C-F368-49C9-B75F-8FEC5A9B2A4B?api-version=2021-12-01\",\r\n \"name\": \"f748681c-f368-49c9-b75f-8fec5a9b2a4b\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/C11D9AB9-FD97-452F-8AEE-306AF2A4F501?api-version=2022-06-15\",\r\n \"name\": \"c11d9ab9-fd97-452f-8aee-306af2a4f501\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5765/providers/Microsoft.EventGrid/topics/PSTestTopic-ps4188?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczU3NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNDE4OD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5347/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3421?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMzQyMT9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "93d0da44-1cae-4486-8e56-0db019376391" + "4fe7b9c9-4a71-4528-8b25-653cc9d34f4b" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -294,7 +294,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "698d2c72-47a3-4f38-b006-5b5955d9e0f4" + "2cbd76c2-c61e-4337-a57d-1191c10f6c0a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -303,19 +303,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "37edca34-a95b-4a0f-96d9-44cd017e37d0" + "db7dc58c-2e87-41c3-bacb-0455690c2252" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212213Z:37edca34-a95b-4a0f-96d9-44cd017e37d0" + "WESTUS2:20221005T230500Z:db7dc58c-2e87-41c3-bacb-0455690c2252" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:22:12 GMT" + "Wed, 05 Oct 2022 23:05:00 GMT" ], "Content-Length": [ - "522" + "562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -324,28 +324,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps4188.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b4cedeb6-893d-46b3-b727-6470fbab8ab3\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5765/providers/Microsoft.EventGrid/topics/PSTestTopic-ps4188\",\r\n \"name\": \"PSTestTopic-ps4188\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps3421.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6ecd7be6-5e6e-4dfa-9b31-0cfef0aa2a90\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5347/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3421\",\r\n \"name\": \"PSTestTopic-ps3421\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5765/providers/Microsoft.EventGrid/topics/PSTestTopic-ps4188?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczU3NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNDE4OD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5347/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3421?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMzQyMT9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "744d9fca-76f3-44a8-a94e-a33a7afa82a9" + "765191b9-97a2-4789-8f4b-ddc45b27c006" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -357,28 +357,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a89820f8-de3f-4c02-bf16-81a70d86346b" + "824c5664-928e-424d-a960-7b6cb203e2ee" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-correlation-request-id": [ - "c615bcb2-3a42-47cd-9204-d5449f1b60ba" + "38efa773-48e9-4675-8c5c-aa3c857fc6f5" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212213Z:c615bcb2-3a42-47cd-9204-d5449f1b60ba" + "WESTUS2:20221005T230501Z:38efa773-48e9-4675-8c5c-aa3c857fc6f5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:22:12 GMT" + "Wed, 05 Oct 2022 23:05:00 GMT" ], "Content-Length": [ - "522" + "562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -387,26 +387,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps4188.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b4cedeb6-893d-46b3-b727-6470fbab8ab3\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5765/providers/Microsoft.EventGrid/topics/PSTestTopic-ps4188\",\r\n \"name\": \"PSTestTopic-ps4188\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps3421.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6ecd7be6-5e6e-4dfa-9b31-0cfef0aa2a90\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5347/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3421\",\r\n \"name\": \"PSTestTopic-ps3421\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps113/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3601?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczExMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3MvUFNUZXN0VG9waWMtcHMzNjAxP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7060/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6132?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczcwNjAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNjEzMj9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "00a4a785-9da5-4069-8508-23aaed4d36ce" + "ce94cddf-6012-4d50-b4d2-b80c99df1215" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -415,6 +414,7 @@ "202" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -429,31 +429,31 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/89FAF1FF-03C3-443E-863F-C961E92F7ADD?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/478C419A-03A3-40D9-AEF7-39F71A7F7652?api-version=2022-06-15" ], "x-ms-request-id": [ - "ff1e4d9e-f2ef-4b09-aa1f-757df56b7d69" + "902b3fc7-1460-47bd-ade6-06570c26b68f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "f1139fd9-ae51-413c-8806-488d08277852" + "93a2ddaf-b106-4686-a762-c007a29e3c46" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212214Z:f1139fd9-ae51-413c-8806-488d08277852" + "WESTUS2:20221005T230502Z:93a2ddaf-b106-4686-a762-c007a29e3c46" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:22:13 GMT" + "Wed, 05 Oct 2022 23:05:02 GMT" ], "Content-Length": [ - "421" + "422" ], "Content-Type": [ "application/json; charset=utf-8" @@ -462,25 +462,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps113/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3601\",\r\n \"name\": \"PSTestTopic-ps3601\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7060/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6132\",\r\n \"name\": \"PSTestTopic-ps6132\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/89FAF1FF-03C3-443E-863F-C961E92F7ADD?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvODlGQUYxRkYtMDNDMy00NDNFLTg2M0YtQzk2MUU5MkY3QUREP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/478C419A-03A3-40D9-AEF7-39F71A7F7652?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNDc4QzQxOUEtMDNBMy00MEQ5LUFFRjctMzlGNzFBN0Y3NjUyP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00a4a785-9da5-4069-8508-23aaed4d36ce" + "ce94cddf-6012-4d50-b4d2-b80c99df1215" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -492,7 +492,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "80f199a2-fda5-4e83-8ec9-0d71eed4444a" + "ae7c5626-be0b-4270-9def-dac295b80044" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -501,16 +501,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "cd301cc6-3fe9-4933-b4a0-ecdcc2df7d4c" + "e75679e0-26f0-49bb-b7f8-bb8e10c106a9" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212224Z:cd301cc6-3fe9-4933-b4a0-ecdcc2df7d4c" + "WESTUS2:20221005T230513Z:e75679e0-26f0-49bb-b7f8-bb8e10c106a9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:22:23 GMT" + "Wed, 05 Oct 2022 23:05:12 GMT" ], "Content-Length": [ "286" @@ -522,25 +522,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/89FAF1FF-03C3-443E-863F-C961E92F7ADD?api-version=2021-12-01\",\r\n \"name\": \"89faf1ff-03c3-443e-863f-c961e92f7add\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/478C419A-03A3-40D9-AEF7-39F71A7F7652?api-version=2022-06-15\",\r\n \"name\": \"478c419a-03a3-40d9-aef7-39f71a7f7652\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps113/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3601?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczExMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3MvUFNUZXN0VG9waWMtcHMzNjAxP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7060/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6132?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczcwNjAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNjEzMj9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00a4a785-9da5-4069-8508-23aaed4d36ce" + "ce94cddf-6012-4d50-b4d2-b80c99df1215" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -552,7 +552,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "54af6ba8-742b-47e3-a0b4-84f34793db67" + "8165292d-4950-467a-a730-892613435ca7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -561,19 +561,19 @@ "11995" ], "x-ms-correlation-request-id": [ - "ac3fc8e5-1026-4c5c-a4cf-2a28259d8eec" + "740a0bdb-e8ce-4888-9515-939c99be7a30" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212224Z:ac3fc8e5-1026-4c5c-a4cf-2a28259d8eec" + "WESTUS2:20221005T230513Z:740a0bdb-e8ce-4888-9515-939c99be7a30" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:22:23 GMT" + "Wed, 05 Oct 2022 23:05:12 GMT" ], "Content-Length": [ - "551" + "592" ], "Content-Type": [ "application/json; charset=utf-8" @@ -582,26 +582,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps3601.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"2f431736-ed93-442d-be4a-e2244bfdfc13\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps113/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3601\",\r\n \"name\": \"PSTestTopic-ps3601\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps6132.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"83f65c3f-e5a6-4a95-b74c-4a214f6a9bd3\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7060/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6132\",\r\n \"name\": \"PSTestTopic-ps6132\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps113/providers/Microsoft.EventGrid/topics/PSTestTopic-ps4782?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczExMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3MvUFNUZXN0VG9waWMtcHM0NzgyP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7060/providers/Microsoft.EventGrid/topics/PSTestTopic-ps9114?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczcwNjAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzOTExND9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d675b5d2-87c4-4be1-b87a-ffb82db0320d" + "272c5399-a3fe-42e8-9098-0ad59e4dc028" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -610,6 +609,7 @@ "137" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -624,31 +624,31 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/42238ED0-AB89-4BD1-9219-3840B1EBC0CD?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/0A136BBD-0904-4D3D-B740-D160612157EC?api-version=2022-06-15" ], "x-ms-request-id": [ - "c3e63209-618d-4549-9cc0-0752b6df0f40" + "3be79807-46cd-4b1c-bfef-8631623d0824" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "9b5e836b-0f54-4b68-8fc0-e1340e3a6eb5" + "b2e45997-a123-4753-b51b-4697a8287c45" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212225Z:9b5e836b-0f54-4b68-8fc0-e1340e3a6eb5" + "WESTUS2:20221005T230515Z:b2e45997-a123-4753-b51b-4697a8287c45" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:22:24 GMT" + "Wed, 05 Oct 2022 23:05:15 GMT" ], "Content-Length": [ - "391" + "392" ], "Content-Type": [ "application/json; charset=utf-8" @@ -657,25 +657,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps113/providers/Microsoft.EventGrid/topics/PSTestTopic-ps4782\",\r\n \"name\": \"PSTestTopic-ps4782\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7060/providers/Microsoft.EventGrid/topics/PSTestTopic-ps9114\",\r\n \"name\": \"PSTestTopic-ps9114\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/42238ED0-AB89-4BD1-9219-3840B1EBC0CD?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNDIyMzhFRDAtQUI4OS00QkQxLTkyMTktMzg0MEIxRUJDMENEP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/0A136BBD-0904-4D3D-B740-D160612157EC?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMEExMzZCQkQtMDkwNC00RDNELUI3NDAtRDE2MDYxMjE1N0VDP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d675b5d2-87c4-4be1-b87a-ffb82db0320d" + "272c5399-a3fe-42e8-9098-0ad59e4dc028" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -687,25 +687,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d4af84ee-a148-4ed3-9d78-6e2723ecb88f" + "b0bf6f05-f45c-4002-888e-90dee737495a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11999" ], "x-ms-correlation-request-id": [ - "e2ea0ecf-4f54-4757-a349-51881b4f8488" + "5152202f-3b4f-4ed4-a1b5-2b4a22427284" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212235Z:e2ea0ecf-4f54-4757-a349-51881b4f8488" + "WESTUS2:20221005T230525Z:5152202f-3b4f-4ed4-a1b5-2b4a22427284" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:22:35 GMT" + "Wed, 05 Oct 2022 23:05:25 GMT" ], "Content-Length": [ "286" @@ -717,25 +717,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/42238ED0-AB89-4BD1-9219-3840B1EBC0CD?api-version=2021-12-01\",\r\n \"name\": \"42238ed0-ab89-4bd1-9219-3840b1ebc0cd\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/0A136BBD-0904-4D3D-B740-D160612157EC?api-version=2022-06-15\",\r\n \"name\": \"0a136bbd-0904-4d3d-b740-d160612157ec\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps113/providers/Microsoft.EventGrid/topics/PSTestTopic-ps4782?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczExMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3MvUFNUZXN0VG9waWMtcHM0NzgyP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7060/providers/Microsoft.EventGrid/topics/PSTestTopic-ps9114?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczcwNjAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzOTExND9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d675b5d2-87c4-4be1-b87a-ffb82db0320d" + "272c5399-a3fe-42e8-9098-0ad59e4dc028" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -747,28 +747,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c34a26dc-85cb-45c5-b27c-599ee0f44872" + "cce3de12-fe15-4b46-a472-1fb51029d7d3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11998" ], "x-ms-correlation-request-id": [ - "c249b5f9-5af9-4b64-918a-1aae678c8ebe" + "1cc11cd1-a917-4fe3-8617-c126688beb96" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212235Z:c249b5f9-5af9-4b64-918a-1aae678c8ebe" + "WESTUS2:20221005T230525Z:1cc11cd1-a917-4fe3-8617-c126688beb96" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:22:35 GMT" + "Wed, 05 Oct 2022 23:05:25 GMT" ], "Content-Length": [ - "521" + "562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -777,28 +777,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps4782.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"5714b7fa-820c-4775-b624-182d3eeec0c7\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps113/providers/Microsoft.EventGrid/topics/PSTestTopic-ps4782\",\r\n \"name\": \"PSTestTopic-ps4782\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps9114.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"e4bbb5a5-eeba-4eff-97c0-05d6c12be02a\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7060/providers/Microsoft.EventGrid/topics/PSTestTopic-ps9114\",\r\n \"name\": \"PSTestTopic-ps9114\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps113/providers/Microsoft.EventGrid/topics/PSTestTopic-ps4782?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczExMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3MvUFNUZXN0VG9waWMtcHM0NzgyP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7060/providers/Microsoft.EventGrid/topics/PSTestTopic-ps9114?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczcwNjAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzOTExND9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "10742f31-5c3d-4055-bc33-780376e54259" + "def5143e-b45f-4ee9-b8ed-934bbe56ceb1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -810,28 +810,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "14b1011f-6ebd-4fc0-b98f-699ed3fbebee" + "76f3a2d5-113d-4d15-b15b-a4cc97b39e1a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11999" ], "x-ms-correlation-request-id": [ - "4145b5eb-0088-4481-a83c-e1d64bfcbf31" + "c1ade1f7-f2eb-46c2-ae3e-efad340e07f7" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212235Z:4145b5eb-0088-4481-a83c-e1d64bfcbf31" + "WESTUS2:20221005T230525Z:c1ade1f7-f2eb-46c2-ae3e-efad340e07f7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:22:35 GMT" + "Wed, 05 Oct 2022 23:05:24 GMT" ], "Content-Length": [ - "521" + "562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -840,28 +840,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps4782.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"5714b7fa-820c-4775-b624-182d3eeec0c7\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps113/providers/Microsoft.EventGrid/topics/PSTestTopic-ps4782\",\r\n \"name\": \"PSTestTopic-ps4782\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps9114.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"e4bbb5a5-eeba-4eff-97c0-05d6c12be02a\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7060/providers/Microsoft.EventGrid/topics/PSTestTopic-ps9114\",\r\n \"name\": \"PSTestTopic-ps9114\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps113/providers/Microsoft.EventGrid/topics?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczExMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3M/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7060/providers/Microsoft.EventGrid/topics?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczcwNjAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "945e970b-0185-4a1a-a934-ec9e7f799e37" + "59cc2d43-d00b-4951-9515-ec8243798ac7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -873,28 +873,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cf70df38-5c9c-4896-a2c0-c16a6f2da93d" + "bcd48271-daf8-4c09-9413-045e7ff1c947" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11996" ], "x-ms-correlation-request-id": [ - "698d44ee-9fd8-4e8f-9d1b-92c0b1a3f746" + "79a82615-638d-488a-9759-035717aad80e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212235Z:698d44ee-9fd8-4e8f-9d1b-92c0b1a3f746" + "WESTUS2:20221005T230526Z:79a82615-638d-488a-9759-035717aad80e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:22:35 GMT" + "Wed, 05 Oct 2022 23:05:25 GMT" ], "Content-Length": [ - "1085" + "1167" ], "Content-Type": [ "application/json; charset=utf-8" @@ -903,28 +903,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps3601.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"2f431736-ed93-442d-be4a-e2244bfdfc13\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps113/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3601\",\r\n \"name\": \"PSTestTopic-ps3601\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps4782.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"5714b7fa-820c-4775-b624-182d3eeec0c7\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps113/providers/Microsoft.EventGrid/topics/PSTestTopic-ps4782\",\r\n \"name\": \"PSTestTopic-ps4782\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps6132.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"83f65c3f-e5a6-4a95-b74c-4a214f6a9bd3\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7060/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6132\",\r\n \"name\": \"PSTestTopic-ps6132\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps9114.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"e4bbb5a5-eeba-4eff-97c0-05d6c12be02a\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7060/providers/Microsoft.EventGrid/topics/PSTestTopic-ps9114\",\r\n \"name\": \"PSTestTopic-ps9114\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps113/providers/Microsoft.EventGrid/topics?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczExMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3M/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7060/providers/Microsoft.EventGrid/topics?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczcwNjAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f950eab9-2a82-427b-81ac-a1a984236fb9" + "8e593c27-0028-44ad-8349-b8c69f796cb6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -936,25 +936,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3fc3151a-6c11-49ec-9425-539eaa7e87fc" + "44c3658f-2f8e-42ee-9c76-b3843f98b633" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11999" ], "x-ms-correlation-request-id": [ - "5bae34af-6f39-46ee-a243-e2e158ba0cc1" + "36f207de-fcc9-46ca-96f3-36b776a92eb6" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212332Z:5bae34af-6f39-46ee-a243-e2e158ba0cc1" + "WESTUS2:20221005T230630Z:36f207de-fcc9-46ca-96f3-36b776a92eb6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:23:31 GMT" + "Wed, 05 Oct 2022 23:06:29 GMT" ], "Content-Length": [ "12" @@ -970,24 +970,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps113/providers/Microsoft.EventGrid/topics?api-version=2021-12-01&$top=1", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczExMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3M/YXBpLXZlcnNpb249MjAyMS0xMi0wMSYkdG9wPTE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7060/providers/Microsoft.EventGrid/topics?api-version=2022-06-15&$top=1", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczcwNjAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTUmJHRvcD0x", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0691f4c1-f892-4320-9681-dc8c8b132015" + "02928532-5ab7-44c6-bddf-4825825a5f5d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -999,28 +999,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "40f9f0a1-fad9-447b-921c-847dc53380b2" + "25d02c9f-5c17-42ce-a5cc-4c744b159ee4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11999" ], "x-ms-correlation-request-id": [ - "f0621f5e-8072-4569-b74f-e3b8bf303b5d" + "dc820205-e3f0-49d5-80a5-f5489d136308" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212236Z:f0621f5e-8072-4569-b74f-e3b8bf303b5d" + "WESTUS2:20221005T230526Z:dc820205-e3f0-49d5-80a5-f5489d136308" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:22:36 GMT" + "Wed, 05 Oct 2022 23:05:25 GMT" ], "Content-Length": [ - "969" + "1029" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1029,28 +1029,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps3601.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"2f431736-ed93-442d-be4a-e2244bfdfc13\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps113/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3601\",\r\n \"name\": \"PSTestTopic-ps3601\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps113/providers/Microsoft.EventGrid/topics?api-version=2021-12-01&$skiptoken=%5b%7b%22token%22%3a%22%2bRID%3a%7egx8DAOwxywECLRsAAAAAAA%3d%3d%23RT%3a1%23TRC%3a1%23ISV%3a2%23IEO%3a65551%23FPC%3aAgFsbGwEAAEtFAA%3d%22%2c%22range%22%3a%7b%22min%22%3a%22%22%2c%22max%22%3a%22FF%22%7d%7d%5d&$top=1\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps6132.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"83f65c3f-e5a6-4a95-b74c-4a214f6a9bd3\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7060/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6132\",\r\n \"name\": \"PSTestTopic-ps6132\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7060/providers/Microsoft.EventGrid/topics?api-version=2022-06-15&$skiptoken=%5b%7b%22token%22%3a%22%2bRID%3a%7egx8DAOwxywFHfB0AAAAAAA%3d%3d%23RT%3a1%23TRC%3a1%23ISV%3a2%23IEO%3a65551%23QCF%3a8%23FPC%3aAUd8HQAAAAAASHwdAAAAAAA%3d%22%2c%22range%22%3a%7b%22min%22%3a%22%22%2c%22max%22%3a%22FF%22%7d%7d%5d&$top=1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps113/providers/Microsoft.EventGrid/topics?api-version=2021-12-01&$skiptoken=%5b%7B%22token%22%3a%22%2bRID%3a~gx8DAOwxywECLRsAAAAAAA%3d%3d%23RT%3a1%23TRC%3a1%23ISV%3a2%23IEO%3a65551%23FPC%3aAgFsbGwEAAEtFAA%3d%22%2c%22range%22%3a%7B%22min%22%3a%22%22%2c%22max%22%3a%22FF%22%7D%7D%5d&$top=1", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczExMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3M/YXBpLXZlcnNpb249MjAyMS0xMi0wMSYkc2tpcHRva2VuPSU1YiU3QiUyMnRva2VuJTIyJTNhJTIyJTJiUklEJTNhfmd4OERBT3d4eXdFQ0xSc0FBQUFBQUElM2QlM2QlMjNSVCUzYTElMjNUUkMlM2ExJTIzSVNWJTNhMiUyM0lFTyUzYTY1NTUxJTIzRlBDJTNhQWdGc2JHd0VBQUV0RkFBJTNkJTIyJTJjJTIycmFuZ2UlMjIlM2ElN0IlMjJtaW4lMjIlM2ElMjIlMjIlMmMlMjJtYXglMjIlM2ElMjJGRiUyMiU3RCU3RCU1ZCYkdG9wPTE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7060/providers/Microsoft.EventGrid/topics?api-version=2022-06-15&$skiptoken=%5b%7B%22token%22%3a%22%2bRID%3a~gx8DAOwxywFHfB0AAAAAAA%3d%3d%23RT%3a1%23TRC%3a1%23ISV%3a2%23IEO%3a65551%23QCF%3a8%23FPC%3aAUd8HQAAAAAASHwdAAAAAAA%3d%22%2c%22range%22%3a%7B%22min%22%3a%22%22%2c%22max%22%3a%22FF%22%7D%7D%5d&$top=1", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczcwNjAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTUmJHNraXB0b2tlbj0lNWIlN0IlMjJ0b2tlbiUyMiUzYSUyMiUyYlJJRCUzYX5neDhEQU93eHl3RkhmQjBBQUFBQUFBJTNkJTNkJTIzUlQlM2ExJTIzVFJDJTNhMSUyM0lTViUzYTIlMjNJRU8lM2E2NTU1MSUyM1FDRiUzYTglMjNGUEMlM2FBVWQ4SFFBQUFBQUFTSHdkQUFBQUFBQSUzZCUyMiUyYyUyMnJhbmdlJTIyJTNhJTdCJTIybWluJTIyJTNhJTIyJTIyJTJjJTIybWF4JTIyJTNhJTIyRkYlMjIlN0QlN0QlNWQmJHRvcD0x", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "72bc8e11-a8d9-4087-bcbc-16737929cefa" + "fa97c464-a3e6-473c-b890-1b8bb91b79e2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1062,28 +1062,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "032d0c3e-ca43-4316-9f37-f0ce11b0d94b" + "b1a9b7e7-17a0-4e0d-8580-653d5c63207e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11999" ], "x-ms-correlation-request-id": [ - "99008460-b099-4c0e-8415-2fedd62ecbce" + "4882b531-6266-4c6e-9976-bec04fa74790" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212236Z:99008460-b099-4c0e-8415-2fedd62ecbce" + "WESTUS2:20221005T230526Z:4882b531-6266-4c6e-9976-bec04fa74790" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:22:36 GMT" + "Wed, 05 Oct 2022 23:05:25 GMT" ], "Content-Length": [ - "533" + "574" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1092,109 +1092,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps4782.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"5714b7fa-820c-4775-b624-182d3eeec0c7\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps113/providers/Microsoft.EventGrid/topics/PSTestTopic-ps4782\",\r\n \"name\": \"PSTestTopic-ps4782\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps9114.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"e4bbb5a5-eeba-4eff-97c0-05d6c12be02a\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7060/providers/Microsoft.EventGrid/topics/PSTestTopic-ps9114\",\r\n \"name\": \"PSTestTopic-ps9114\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/topics?api-version=2021-12-01&$top=1", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcz9hcGktdmVyc2lvbj0yMDIxLTEyLTAxJiR0b3A9MQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/topics?api-version=2022-06-15&$top=1", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1JiR0b3A9MQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "897e3ceb-3e35-4c5a-b5a9-f3fbd1e53cd1" + "c9ffacf2-5e26-458f-a1b1-f2213c22ee6f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-original-request-ids": [ - "f97812b6-2f4c-4c47-b0ac-5975f4676fad", - "646131ab-eb15-4f52-9888-0769a19c2eed", - "dfab96f2-3fdb-4235-90ca-64ee768e4af9", - "374062db-0a01-478a-b785-2554dd3f8313", - "348f5c03-d1fe-4109-9995-da416590358b", - "b7eb7978-cc36-4f91-9cfc-2abdacbb65fe", - "fb266a10-5b9d-478c-89c4-10b327a1b1dd", - "c4625bd0-814c-472f-bfcc-0d244fe98e2c", - "f41060b9-2a09-47e6-9942-89a68fd90a60", - "37526fb7-a2d4-4c5a-b9f8-7f033c948841", - "1cdf06d3-00dd-4528-826f-1bfb8a055af2", - "1036d54c-19be-47a3-be8b-a33bc4157842", - "ea555666-3c56-449c-a9e9-769897e4b2a4", - "b7824b90-c886-439d-a377-0d53455061e8", - "c8168448-c845-4f57-bec5-0852bb2ad925", - "00221b8c-4a2f-4f43-bc9a-c67e8ebfa22a", - "4c296dfa-0db7-4861-8ae0-668c36f434c6", - "fb91fcb1-f04a-4a49-8d4c-35e98c97cf56", - "392e5205-141a-4439-a78b-74d22e171893" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-request-id": [ - "0d7d5348-9a20-4668-ad8a-e5ab42ccccea" - ], - "x-ms-correlation-request-id": [ - "0d7d5348-9a20-4668-ad8a-e5ab42ccccea" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212238Z:0d7d5348-9a20-4668-ad8a-e5ab42ccccea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sun, 01 May 2022 21:22:38 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "12688" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egarmrunnertopic6afdede1westus2.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"10740b58-993a-46e8-8e6a-7a32a1a6943f\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventGrid/topics/egarmrunnertopic6afdede1WestUS2\",\r\n \"name\": \"egarmrunnertopic6afdede1WestUS2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopic123.eastus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c65d3bc2-ff60-4426-93f5-8b81776a3242\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testTopic123\",\r\n \"name\": \"testTopic123\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopictag1.westus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b355e557-a7f7-45b7-b559-b30db0845d93\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1153\": \"value1153\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testTopicTag1\",\r\n \"name\": \"testTopicTag1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-prod-usce-blockstorage-perf-topic.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"912ef55f-bf72-4e8b-8511-b273ed7c8600\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-prod-usce-blockstorage/providers/Microsoft.EventGrid/topics/eg-prod-usce-blockstorage-perf-topic\",\r\n \"name\": \"eg-prod-usce-blockstorage-perf-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://test-topic-rohkuma.eastus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"63c4876e-e076-446f-94a6-60fe31ff34fe\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/test-topic-rohkuma\",\r\n \"name\": \"test-topic-rohkuma\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps8442.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d3d4f815-6830-478a-9918-75bc23b7070b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7357/providers/Microsoft.EventGrid/topics/PSTestTopic-ps8442\",\r\n \"name\": \"PSTestTopic-ps8442\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopicjapaneast.japaneast-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"f104383e-e905-4a51-8d80-09b72b8de109\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/topics/testtopicjapaneast\",\r\n \"name\": \"testtopicjapaneast\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eunoinputjsoninvalidcontrolcharacters.westeurope-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9eb7b0e2-aa54-4946-ac03-f4f1d4bf48aa\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/deletemenow/providers/Microsoft.EventGrid/topics/eunoinputjsoninvalidcontrolcharacters\",\r\n \"name\": \"eunoinputjsoninvalidcontrolcharacters\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://test2deletethistopic.southcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"278b1071-0990-4964-86a7-2ef1f607fbed\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/test2deletethistopic\",\r\n \"name\": \"test2deletethistopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testsfnotopic.southafricanorth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"0629b7ca-4fe8-4124-ab12-c470ec92ee02\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"southafricanorth\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testsfnotopic\",\r\n \"name\": \"testsfnotopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://newregiontopic.westus3-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"dfdf3887-a6a9-4ce0-a9e2-e5a1a2595cb0\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"west us 3\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/NewRegionRg/providers/Microsoft.EventGrid/topics/newRegionTopic\",\r\n \"name\": \"newRegionTopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicjiowest.jioindiawest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d91b70ca-ad29-4aea-9654-0c4515ca9501\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"jio india west\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/jioRg/providers/Microsoft.EventGrid/topics/topicjiowest\",\r\n \"name\": \"topicjiowest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicjiocentral.jioindiacentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6364c055-5a4a-4273-9b3a-aafed2d9b46e\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"jio india central\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/jioRg/providers/Microsoft.EventGrid/topics/topicjiocentral\",\r\n \"name\": \"topicjiocentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicswedencentral.swedencentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c7cdbeb8-6db2-4b8c-87c4-9f52dd3abbee\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"sweden central\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/topics/topicswedencentral\",\r\n \"name\": \"topicswedencentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sampletopic34.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"55c51161-fe8c-4c42-bf9b-8097198d6802\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/SampleRg/providers/Microsoft.EventGrid/topics/SampleTopic34\",\r\n \"name\": \"SampleTopic34\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateEndpointConnections\": [\r\n {\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink/providers/Microsoft.Network/privateEndpoints/pet-a\"\r\n },\r\n \"groupIds\": [\r\n \"topic\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Auto-approved\",\r\n \"actionsRequired\": \"None\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/VKUKKE-PRIVATELINK/providers/Microsoft.EventGrid/topics/TOPICNAME/privateEndpointConnections/PET-A.505CD90E-5F91-483B-972F-D29C642D02C9\",\r\n \"name\": \"pet-a-a\",\r\n \"type\": \"Microsoft.EventGrid/topics/privateEndpointConnections\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicname.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b4511d1a-a811-47e8-93c3-f5f7559d4be7\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink/providers/Microsoft.EventGrid/topics/topicName\",\r\n \"name\": \"topicName\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testauce2kishp.australiacentral2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"417b625d-63f8-4e2b-93fa-58fdc575b79b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"australiacentral2\",\r\n \"tags\": {\r\n \"aeg-partnernamespace-version\": \"v2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete/providers/Microsoft.EventGrid/topics/testauce2kishp\",\r\n \"name\": \"testauce2kishp\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicswedensouth.swedensouth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"db797f64-c2dc-448c-8d87-a5beaf9a06d5\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"sweden south\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/topics/topicswedensouth\",\r\n \"name\": \"topicswedensouth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicqctest.qatarcentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"e29335db-a60e-4adc-8956-cb7dc0d9a29b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"qatarcentral\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/topics/topicqctest\",\r\n \"name\": \"topicqctest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/topics?api-version=2021-12-01&%24top=1&%24skiptoken=3ZZZc6JAEID%2fixXztEbEEDRVqa0GBhwvRLzfQMjIIoeAV1L579uoSXbfdmvJg0tR0Aw9PV3zTR%2bvpdA9ZF0v9NPS42tpSszR2ORLj6VVlsXpY7UaWKHF3MANszvrZZu4d8soqKZbO10mXpx5UZhWBfvefhA4t8I37GblXmxyFbtu2RXHsZ1GwxF5cXlfjZNo5zluklZ73jKJ0ug5uyM7NKslnlPNothbpt%2bt2KvsUAfNPvEcX6vU%2bApXu71JfVwr8t3wqSzYZdEu8%2fzpE9%2flupU%2feXtIlVwW3eWs78NgQPw9CXsrCuerXHfym68PR6hWQ2E0lC8SNScooZE6JTpKD4Ig5BrqINcAptIpYTLI7tFkFHy67gGT%2fXhNCShEA%2bkwAyYJmcoIdOXR89w4rYT2luhaYoXMvTh68jzwwl%2f8vmgF1uFjUFVzUXTyW3Bub3BznmqlbyWZ9EdD6I7Nq8ZjNQ8r6B%2bSzl61MkgLwEO25vFeBnXD6UaOpy0jnjTk5jK08GAo5p6CTHtfAyWPmP8DDDs0FND3h%2bNe0%2bUVKwCMymwNCFDSgZ6UYgCJsTFt9QyYArzHY%2bFRck5h9auOkcSMBWhTddL0pQsHfL1v2R%2bmsAfxM4UZ5NPMO9mzwTx3Fpum2lSnfYVCDuKqKdR%2fLHfQG1VYSIqhgPUBL3y0gLITzuJ3n8CpgpMxDK578%2btGCwZ8bw6dxefZ%2fcsQ%2bK2KE7ABZGgHoGKZiGxuCgx2ydHAxHT02ljZ0y7Z4BisfExWrSCbo966K2EMymkkaWSBOtNYjfA0jJJhp2%2fhfywwUYazpME22Mugm428eBccUh8F5uqxmpnqwgBgYmi7IfgXsv%2bEdT3xxjJ0EATRgcIiMZrAlONGacgAR9%2fAsZngSAoojJGNBIiPqWRGNIkiyP461VzTMECNRI8RnKPnzeQY0Wqb9QjBDlc1PCJ6sJ4gfilOc2eLRwxjM2%2fusFM5d3nX3YMLrPEC%2fVqM7Z02NQpp8rKuyWHqtBbI8ysQvL39BA%3d%3d\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/topics?api-version=2021-12-01&%24top=1&%24skiptoken=3ZZZc6JAEID%2fixXztEbEEDRVqa0GBhwvRLzfQMjIIoeAV1L579uoSXbfdmvJg0tR0Aw9PV3zTR%2bvpdA9ZF0v9NPS42tpSszR2ORLj6VVlsXpY7UaWKHF3MANszvrZZu4d8soqKZbO10mXpx5UZhWBfvefhA4t8I37GblXmxyFbtu2RXHsZ1GwxF5cXlfjZNo5zluklZ73jKJ0ug5uyM7NKslnlPNothbpt%2bt2KvsUAfNPvEcX6vU%2bApXu71JfVwr8t3wqSzYZdEu8%2fzpE9%2flupU%2feXtIlVwW3eWs78NgQPw9CXsrCuerXHfym68PR6hWQ2E0lC8SNScooZE6JTpKD4Ig5BrqINcAptIpYTLI7tFkFHy67gGT%2fXhNCShEA%2bkwAyYJmcoIdOXR89w4rYT2luhaYoXMvTh68jzwwl%2f8vmgF1uFjUFVzUXTyW3Bub3BznmqlbyWZ9EdD6I7Nq8ZjNQ8r6B%2bSzl61MkgLwEO25vFeBnXD6UaOpy0jnjTk5jK08GAo5p6CTHtfAyWPmP8DDDs0FND3h%2bNe0%2bUVKwCMymwNCFDSgZ6UYgCJsTFt9QyYArzHY%2bFRck5h9auOkcSMBWhTddL0pQsHfL1v2R%2bmsAfxM4UZ5NPMO9mzwTx3Fpum2lSnfYVCDuKqKdR%2fLHfQG1VYSIqhgPUBL3y0gLITzuJ3n8CpgpMxDK578%2btGCwZ8bw6dxefZ%2fcsQ%2bK2KE7ABZGgHoGKZiGxuCgx2ydHAxHT02ljZ0y7Z4BisfExWrSCbo966K2EMymkkaWSBOtNYjfA0jJJhp2%2fhfywwUYazpME22Mugm428eBccUh8F5uqxmpnqwgBgYmi7IfgXsv%2bEdT3xxjJ0EATRgcIiMZrAlONGacgAR9%2fAsZngSAoojJGNBIiPqWRGNIkiyP461VzTMECNRI8RnKPnzeQY0Wqb9QjBDlc1PCJ6sJ4gfilOc2eLRwxjM2%2fusFM5d3nX3YMLrPEC%2fVqM7Z02NQpp8rKuyWHqtBbI8ysQvL39BA%3d%3d", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcz9hcGktdmVyc2lvbj0yMDIxLTEyLTAxJiUyNHRvcD0xJiUyNHNraXB0b2tlbj0zWlpaYzZKQUVJRCUyZml4WHp0RWJFRURSVnFhMEdCaHd2Ukx6ZlFNaklJb2VBVjFMNTc5dW9TWGJmZG12SmcwdFIwQXc5UFYzelRSJTJidnBkQTlaRjB2OU5QUzQydHBTc3pSMk9STGo2VlZsc1hwWTdVYVdLSEYzTUFOc3p2clpadTRkOHNvcUtaYk8xMG1YcHg1VVpoV0JmdmVmaEE0dDhJMzdHYmxYbXh5RmJ0dTJSWEhzWjFHd3hGNWNYbGZqWk5vNXpsdWtsWjczaktKMHVnNXV5TTdOS3NsbmxQTm90aGJwdCUyYnQyS3ZzVUFmTlB2RWNYNnZVJTJiQXBYdTcxSmZWd3I4dDN3cVN6WVpkRXU4JTJmenBFOSUyZmx1cFUlMmZlWHRJbFZ3VzNlV3M3OE5nUVB3OUNYc3JDdWVyWEhmeW02OFBSNmhXUTJFMGxDOFNOU2Nvb1pFNkpUcEtENElnNUJycUlOY0FwdElwWVRMSTd0RmtGSHk2N2dHVCUyZlhoTkNTaEVBJTJia3dBeVlKbWNvSWRPWFI4OXc0cllUMmx1aGFZb1hNdlRoNjhqend3bCUyZjh2bWdGMXVGalVGVnpVWFR5VzNCdWIzQnpubXFsYnlXWjlFZEQ2STdOcThaak5ROHI2QiUyYlN6bDYxTWtnTHdFTzI1dkZlQm5YRDZVYU9weTBqbmpUazVqSzA4R0FvNXA2Q1RIdGZBeVdQbVA4REREczBGTkQzaCUyYk5lMCUyYlVWS3dDTXltd05DRkRTZ1o2VVlnQ0pzVEZ0OVF5WUFyekhZJTJiRlJjazVoOWF1T2tjU01CV2hUZGRMMHBRc0hmTDF2MlIlMmJtc0FmeE00VVo1TlBNTzltendUeDNGcHVtMmxTbmZZVkNEdUtxS2RSJTJmTEhmUUcxVllTSXFoZ1BVQkwzeTBnTElUenVKM244Q3BncE14REs1NzglMmJ0R0N3WjhidzZkeGVmWiUyZmNzUSUyYksyS0U3QUJaR2dIb0dLWmlHeHVDZ3gyeWRIQXhIVDAybGpaMHk3WjRCaXNmRXhXclNDYm85NjZLMkVNeW1ra2FXU0JPdE5ZamZBMGpKSmhwMiUyZmhmeXd3VVlhenBNRTIyTXVnbTQyOGVCY2NVaDhGNXVxeG1wbnF3Z0JnWW1pN0lmZ1hzdiUyYkVkVDN4eGpKMEVBVFJnY0lpTVpyQWxPTkdhY2dBUjklMmZBc1puZ1NBb29qSkdOQklpUHFXUkdOSWtpeVA0NjFWelRNRUNOUkk4Um5LUG56ZVFZMFdxYjlRakJEbGMxUENKNnNKNGdmaWxPYzJlTFJ3eGpNMiUyZnVzRk01ZDNuWDNZTUxyUEVDJTJmVnFNN1owMk5RcHA4ckt1eVdIcXRCYkk4eXNRdkwzOUJBJTNkJTNk", - "RequestMethod": "GET", "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6d6d3cfa-d518-4934-a6a4-26747b46fe50" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.16002", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" - ] - }, "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1203,26 +1122,37 @@ "no-cache" ], "x-ms-original-request-ids": [ - "82a80801-4f1b-40cb-93fb-352e7351c3f1", - "c1038806-68f2-4e7e-9947-d096d4ee6224", - "931c0d70-ad0a-44b9-ba87-e1e68e859905", - "017e9418-4123-4005-9e6f-4b69bd3e8470", - "65ea3ea8-44ac-4665-925b-177583519edb", - "18f13d58-df96-491b-ad5c-a7589b585702", - "ec5688f4-92d3-4379-bb0a-5491dca68af9", - "3febb0d8-10f9-42ef-bc93-5f8efd0d832c" + "3cb8fba1-fefa-421c-bc78-653bf3822a53", + "1bc5bdd4-9c67-4367-a1a8-263126fa692b", + "8a284c60-4f8e-4eab-9d5a-68c43519a3bc", + "bbcbb195-dc6c-48b4-8de2-327de92684fb", + "a94131ba-297d-4694-ad5e-5738eb6d05a3", + "0943bfac-c8bd-407c-8791-e59a0473a72f", + "045378fe-f159-4dd3-ae2c-7c9af9eb2cef", + "b6a9338f-e773-47d1-8a9c-c3e4ae192e33", + "b872c4f2-4b38-430d-87c9-f7e1022e54f1", + "4f54f02c-7ea0-4bd4-8fe9-2624d95b8508", + "13a52d38-56f0-42e9-9967-181590cb2608", + "3c41c213-7c48-4d44-aec6-dd971222dcee", + "95541133-3687-4307-8446-315b70c7eb5a", + "72390c76-e0cf-4bc4-9c45-fcf75f853f3f", + "7df0c3e2-2c8f-490e-b948-3439c987d2d1", + "625039bd-531b-4e6c-92fb-e7debd511555", + "032a4351-40e3-4379-98c7-fd0aa58372d7", + "0b518527-c1ed-4ca1-896f-1008189dae03", + "ca867683-6be5-48e8-a3ec-2c7086bb73f6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11999" ], "x-ms-request-id": [ - "b0976c54-dcbb-43d5-a777-93efb8d150b5" + "d510e31a-f1e9-4000-ac81-2843bb8685ea" ], "x-ms-correlation-request-id": [ - "b0976c54-dcbb-43d5-a777-93efb8d150b5" + "d510e31a-f1e9-4000-ac81-2843bb8685ea" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212238Z:b0976c54-dcbb-43d5-a777-93efb8d150b5" + "WESTUS2:20221005T230528Z:d510e31a-f1e9-4000-ac81-2843bb8685ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1231,7 +1161,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:22:38 GMT" + "Wed, 05 Oct 2022 23:05:28 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1240,31 +1170,31 @@ "-1" ], "Content-Length": [ - "5703" + "13570" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-name-local-test-west-us-2.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"e7fdb984-9488-4b9f-a2cc-d9dd21dd195a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-name-local-test-west-us-2\",\r\n \"name\": \"eg-latency-runner-topic-name-local-test-west-us-2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://activitylogs.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"36d200cd-283d-4125-95f2-11f76725cea1\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": true\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/diagnosticlogstestingtobedeleted/providers/Microsoft.EventGrid/topics/activitylogs\",\r\n \"name\": \"activitylogs\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps6197.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"ba5f2a9a-67fc-47e7-90be-36109d944e2e\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7357/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6197\",\r\n \"name\": \"PSTestTopic-ps6197\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://newregiondomain.westus3-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6072dc4c-9ef9-4369-b2c6-6b535482d182\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"west us 3\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/NewRegionRg/providers/Microsoft.EventGrid/topics/newRegionDomain\",\r\n \"name\": \"newRegionDomain\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testjioindiawest.jioindiawest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"7781a8ab-b24e-4386-94c4-e20080f6ed34\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"jioindiawest\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.EventGrid/topics/testjioindiawest\",\r\n \"name\": \"testjioindiawest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-use2-sla-control-topic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"736b24e4-e936-41a2-b3f2-a88ee48ae47a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2/providers/Microsoft.EventGrid/topics/eg-euap-use2-sla-control-topic\",\r\n \"name\": \"eg-euap-use2-sla-control-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-7667.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d091ae17-8f61-4e2c-8395-264c98d65167\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1829/providers/Microsoft.EventGrid/topics/sdk-Topic-7667\",\r\n \"name\": \"sdk-Topic-7667\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://kishptestauc2runner.australiacentral2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1fe806ad-445e-4f01-8144-126e10d66973\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"australiacentral2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete/providers/Microsoft.EventGrid/topics/kishptestauc2runner\",\r\n \"name\": \"kishptestauc2runner\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/topics?api-version=2021-12-01&%24top=1&%24skiptoken=3ZXbbqMwEIbfJWp6tTQJhxwqVauBGJaSphxC0uTOBupQFCBAA23Vd98hzfYJuOmikRlbYzPyxz%2fz0UujplrEaVL2bj96G%2bKtfE%2fs3fb2VZWXt4PBgaaUR4corW7o%2b2sR3QTZYVC%2bsjIo4ryKs7QcKExmY2UYCeKUzQR5MhsKTKJMCEMWTqfhRJwE8iAvslMcRkU5eIiDIiuz5%2bqGnPBYo4jDQZXlcVD%2bpnksnDAGj70Th%2bJIGInCcHR9VSb4rSyJ0ru%2bwvoT1hfF8xTffYm2o8hcc976kyh4WiZg2ySpDSd2Tfh6%2blLYmii5KwzDDdLK1S6e6a3%2feeQRvbGiKCOM0O02ArhubUimwb12vwITcmvnqQCNyiFY1yZEzN2qoNWJJJJzKgGOBU15dEnvnO8hTi%2fTNlu0NupAm%2b9FXW%2fdSdiaEl5f4ZXcjXq%2fehpZrlxY%2bN6PhkJnzR6WTWEhFIfLHUAhiveetFA0h5tQ3M8M4GpffObDUgOI59%2bX3B2KVh3%2fBw7eTOfwWDdvtWFre94BDp0zAzQwUYkWAw6vY1%2ffvxPQOZx1d%2fnju4NB4FyqiA%2f2j1aGJDl%2fwBYftmDtnx2%2fAxRkzVRfA8uY6aiMxXiaII8yi7caLLTGwjUwdwtUi1JsCCrIq3fgQGGBuzcwRj%2b6FOdkPPReNqgw%2b7iguGc1yUvg8%2bR05tmW0s6Rfmvrx0P1Kj0CG2Dt6IcldFLu5PUL18CgQ9sxYXrkWOoQ60NOUHXYOtiT49Qgm6rFHQscU3V17FAegpzvmJomCQGVPsqZaiPEU7JG8Oox97F%2f%2bdvQx7U8XyN8oG1z%2fepOXWn18%2fMv\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egarmrunnertopic6afdede1westus2.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"10740b58-993a-46e8-8e6a-7a32a1a6943f\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventGrid/topics/egarmrunnertopic6afdede1WestUS2\",\r\n \"name\": \"egarmrunnertopic6afdede1WestUS2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopic123.eastus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c65d3bc2-ff60-4426-93f5-8b81776a3242\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testTopic123\",\r\n \"name\": \"testTopic123\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopictag1.westus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b355e557-a7f7-45b7-b559-b30db0845d93\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1153\": \"value1153\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testTopicTag1\",\r\n \"name\": \"testTopicTag1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-prod-usce-blockstorage-perf-topic.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"912ef55f-bf72-4e8b-8511-b273ed7c8600\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-prod-usce-blockstorage/providers/Microsoft.EventGrid/topics/eg-prod-usce-blockstorage-perf-topic\",\r\n \"name\": \"eg-prod-usce-blockstorage-perf-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://test-topic-rohkuma.eastus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"63c4876e-e076-446f-94a6-60fe31ff34fe\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/test-topic-rohkuma\",\r\n \"name\": \"test-topic-rohkuma\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps8442.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d3d4f815-6830-478a-9918-75bc23b7070b\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7357/providers/Microsoft.EventGrid/topics/PSTestTopic-ps8442\",\r\n \"name\": \"PSTestTopic-ps8442\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopicjapaneast.japaneast-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"f104383e-e905-4a51-8d80-09b72b8de109\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/topics/testtopicjapaneast\",\r\n \"name\": \"testtopicjapaneast\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eunoinputjsoninvalidcontrolcharacters.westeurope-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9eb7b0e2-aa54-4946-ac03-f4f1d4bf48aa\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/deletemenow/providers/Microsoft.EventGrid/topics/eunoinputjsoninvalidcontrolcharacters\",\r\n \"name\": \"eunoinputjsoninvalidcontrolcharacters\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://test2deletethistopic.southcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"278b1071-0990-4964-86a7-2ef1f607fbed\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/test2deletethistopic\",\r\n \"name\": \"test2deletethistopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testsfnotopic.southafricanorth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"0629b7ca-4fe8-4124-ab12-c470ec92ee02\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"southafricanorth\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testsfnotopic\",\r\n \"name\": \"testsfnotopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://newregiontopic.westus3-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"dfdf3887-a6a9-4ce0-a9e2-e5a1a2595cb0\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"west us 3\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/NewRegionRg/providers/Microsoft.EventGrid/topics/newRegionTopic\",\r\n \"name\": \"newRegionTopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicjiowest.jioindiawest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d91b70ca-ad29-4aea-9654-0c4515ca9501\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"jio india west\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/jioRg/providers/Microsoft.EventGrid/topics/topicjiowest\",\r\n \"name\": \"topicjiowest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicjiocentral.jioindiacentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6364c055-5a4a-4273-9b3a-aafed2d9b46e\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"jio india central\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/jioRg/providers/Microsoft.EventGrid/topics/topicjiocentral\",\r\n \"name\": \"topicjiocentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicswedencentral.swedencentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c7cdbeb8-6db2-4b8c-87c4-9f52dd3abbee\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"sweden central\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/topics/topicswedencentral\",\r\n \"name\": \"topicswedencentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicqctest.qatarcentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"e29335db-a60e-4adc-8956-cb7dc0d9a29b\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"qatarcentral\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/topics/topicqctest\",\r\n \"name\": \"topicqctest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sampletopic34.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"55c51161-fe8c-4c42-bf9b-8097198d6802\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/SampleRg/providers/Microsoft.EventGrid/topics/SampleTopic34\",\r\n \"name\": \"SampleTopic34\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateEndpointConnections\": [\r\n {\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink/providers/Microsoft.Network/privateEndpoints/pet-a\"\r\n },\r\n \"groupIds\": [\r\n \"topic\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Auto-approved\",\r\n \"actionsRequired\": \"None\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/VKUKKE-PRIVATELINK/providers/Microsoft.EventGrid/topics/TOPICNAME/privateEndpointConnections/PET-A.505CD90E-5F91-483B-972F-D29C642D02C9\",\r\n \"name\": \"pet-a-a\",\r\n \"type\": \"Microsoft.EventGrid/topics/privateEndpointConnections\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicname.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b4511d1a-a811-47e8-93c3-f5f7559d4be7\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink/providers/Microsoft.EventGrid/topics/topicName\",\r\n \"name\": \"topicName\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testauce2kishp.australiacentral2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"417b625d-63f8-4e2b-93fa-58fdc575b79b\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"australiacentral2\",\r\n \"tags\": {\r\n \"aeg-partnernamespace-version\": \"v2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete/providers/Microsoft.EventGrid/topics/testauce2kishp\",\r\n \"name\": \"testauce2kishp\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicswedensouth.swedensouth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"db797f64-c2dc-448c-8d87-a5beaf9a06d5\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"sweden south\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/topics/topicswedensouth\",\r\n \"name\": \"topicswedensouth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/topics?api-version=2022-06-15&%24top=1&%24skiptoken=3ZdZb6NIEMe%2fCxrP0zjGOBg7UrQq2g3BF%2bayY79xpc1gDgPxMaP57ls4zsw%2bzEi7EnnwIkQXUFQDv66uf3%2fn0vBUTaM0LrmH79yKWrZjCdwDt62qvHzodBI3dVmYhGl15357LcI7P0s65atX%2bkWUV1GWlh3Ru%2ff6Ih%2b2hYE3bN9LQ77t9VyvHQReMBgEkiD59528yA5REBZlZxb5RVZmL9UdPWBYtYiCTpXlkV%2f%2b5eZR%2b4A%2bGPZR4AWhzffbXfHzpzLGvrI4TB9boteSvJYgXE6xbfXc%2bih4pjaqbSn0n%2bcxLBY0PtJ0ttXgbWv1gnoXeqaNbl00bJNcLc1aooVBehrV0eqLolh7GETBswFayqL2BaZobswIkPBsMQ1ibTcDRuJ8p1EYURXk0zMwWawURmFK7Je1ucf7%2bwjee8c%2bfHzdwk1ZeH35y9ckUfqPb7l6Je7p50VFqU0pqHcx%2bPwJf9hjl%2fvCETq3TZg61k0jc4enLcxPxeSouBWUjSKjrxtyT0DZ87pRIxsTRFKm%2fJrAEw6bkXXUgGg4ZBiQ7ONA1Zn1%2f4DFToMR6MfT%2bajqZMsahaWwYAUUNDqBmVzKQKTcWD15CO7syV2Zwe4gUzgCveRy49lUQ6KOqS%2foTaeTIK2HMBl8HRnUt7d%2bs4QCd8kTkM%2b6i1TSgv84Eo7Vu2kMhZWLMNaU5TCWrwyweS8F%2f7IQ9aXfFSKD%2fgr4noFvoeta2GyJGWu6Nh9pUCfHTfPoffUPMLPbLKVN88B6jxsenkBjF8TNc6Bw0WbUgcVtY%2bgZT7AQZmuYbH6N4v%2bYFn%2fQZxS8IxAYJ6Dg7JR5%2fArL%2bqE4G6jZztEYNVs5pajJALZxiQIgqdbot5vKmKGkzGSVbtBnlSsZjhC7MCfzepZDmZBV%2bJS8eE0GKCX0rBZjDafZT3Fw84CtSglhAbA01IMJ8ZVxQ4B3z8QhMEEkVAcNNoUJCOZlx6NkGO0JIDim0GeqyhoinO9KNbQMA5RMihhFeHq9VHAQqrrfOcBGeb5EJQiut0Kv3D3RuHskMNv3PwAxOFYt1lFvvqn2215niWzwDebdHOW6ujIaFu3V1OJxOnU3yPgjFMaPL5xbJMBYETK3CgO7Xl3itArmjPvxNw%3d%3d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/topics?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/topics?api-version=2022-06-15&%24top=1&%24skiptoken=3ZdZb6NIEMe%2fCxrP0zjGOBg7UrQq2g3BF%2bayY79xpc1gDgPxMaP57ls4zsw%2bzEi7EnnwIkQXUFQDv66uf3%2fn0vBUTaM0LrmH79yKWrZjCdwDt62qvHzodBI3dVmYhGl15357LcI7P0s65atX%2bkWUV1GWlh3Ru%2ff6Ih%2b2hYE3bN9LQ77t9VyvHQReMBgEkiD59528yA5REBZlZxb5RVZmL9UdPWBYtYiCTpXlkV%2f%2b5eZR%2b4A%2bGPZR4AWhzffbXfHzpzLGvrI4TB9boteSvJYgXE6xbfXc%2bih4pjaqbSn0n%2bcxLBY0PtJ0ttXgbWv1gnoXeqaNbl00bJNcLc1aooVBehrV0eqLolh7GETBswFayqL2BaZobswIkPBsMQ1ibTcDRuJ8p1EYURXk0zMwWawURmFK7Je1ucf7%2bwjee8c%2bfHzdwk1ZeH35y9ckUfqPb7l6Je7p50VFqU0pqHcx%2bPwJf9hjl%2fvCETq3TZg61k0jc4enLcxPxeSouBWUjSKjrxtyT0DZ87pRIxsTRFKm%2fJrAEw6bkXXUgGg4ZBiQ7ONA1Zn1%2f4DFToMR6MfT%2bajqZMsahaWwYAUUNDqBmVzKQKTcWD15CO7syV2Zwe4gUzgCveRy49lUQ6KOqS%2foTaeTIK2HMBl8HRnUt7d%2bs4QCd8kTkM%2b6i1TSgv84Eo7Vu2kMhZWLMNaU5TCWrwyweS8F%2f7IQ9aXfFSKD%2fgr4noFvoeta2GyJGWu6Nh9pUCfHTfPoffUPMLPbLKVN88B6jxsenkBjF8TNc6Bw0WbUgcVtY%2bgZT7AQZmuYbH6N4v%2bYFn%2fQZxS8IxAYJ6Dg7JR5%2fArL%2bqE4G6jZztEYNVs5pajJALZxiQIgqdbot5vKmKGkzGSVbtBnlSsZjhC7MCfzepZDmZBV%2bJS8eE0GKCX0rBZjDafZT3Fw84CtSglhAbA01IMJ8ZVxQ4B3z8QhMEEkVAcNNoUJCOZlx6NkGO0JIDim0GeqyhoinO9KNbQMA5RMihhFeHq9VHAQqrrfOcBGeb5EJQiut0Kv3D3RuHskMNv3PwAxOFYt1lFvvqn2215niWzwDebdHOW6ujIaFu3V1OJxOnU3yPgjFMaPL5xbJMBYETK3CgO7Xl3itArmjPvxNw%3d%3d", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1JiUyNHRvcD0xJiUyNHNraXB0b2tlbj0zWmRaYjZOSUVNZSUyZkN4clAwempHT0JnN1VyUXEyZzNCRiUyYmF5WTc5eHBjMWdEZ1B4TWFQNTdsczR6c3clMmJ6RWk3RW5ud0lrUVhVRlFEdjY2dWYzJTJmbjB2QlVUYU0wTHJtSDc5eUtXclpqQ2R3RHQ2MnF2SHpvZEJJM2RWbVloR2wxNTM1N0xjSTdQMHM2NWF0WCUyYmtXVVYxR1dsaDNSdSUyZmY2SWglMmIyaFlFM2JOOUxRNzd0OVZ5dkhRUmVNQmdFa2lENTk1Mjh5QTVSRUJabFp4YjVSVlptTDlVZFBXQll0WWlDVHBYbGtWJTJmJTJiNWVaUiUyYjRBJTJiR1BaUjRBV2h6ZmZiWGZIenB6TEd2ckk0VEI5Ym90ZVN2SllnWEU2eGJmWGMlMmJpaDRwamFxYlNuMG4lMmJjeExCWTBQdEowdHRYZ2JXdjFnbm9YZXFhTmJsMDBiSk5jTGMxYW9vVkJlaHJWMGVxTG9saDdHRVRCc3dGYXlxTDJCYVpvYnN3SWtQQnNNUTFpYlRjRFJ1SjhwMUVZVVJYazB6TXdXYXdVUm1GSzdKZTF1Y2Y3JTJid2plZThjJTJiZkh6ZHdrMVplSDM1eTlja1VmcVBiN2w2SmU3cDUwVkZxVTBwcUhjeCUyYlB3SmY5aGpsJTJmdkNFVHEzVFpnNjFrMGpjNGVuTGN4UHhlU291QldValNLanJ4dHlUMERaODdwUkl4c1RSRkttJTJmSnJBRXc2YmtYWFVnR2c0WkJpUTdPTkExWm4xJTJmNERGVG9NUjZNZlQlMmJhanFaTXNhaGFXd1lBVVVORHFCbVZ6S1FLVGNXRDE1Q083c3lWMlp3ZTRnVXpnQ3ZlUnk0OWxVUTZLT3FTJTJmb1RhZVRJSzJITUJsOEhSblV0N2QlMmJzNFFDZDhrVGtNJTJiNmkxVFNndjg0RW83VnUya01oWldMTU5hVTVUQ1dyd3l3ZVM4RiUyZjdJUTlhWGZGU0tEJTJmZ3I0bm9Gdm9ldGEyR3lKR1d1Nk5oOXBVQ2ZIVGZQb2ZmVVBNTFBiTEtWTjg4QjZqeHNlbmtCakY4VE5jNkJ3MFdiVWdjVnRZJTJiZ1pUN0FRWm11WWJINk40diUyYllGbiUyZlFaeFM4SXhBWUo2RGc3SlI1JTJmQXJMJTJicUU0RzZqWnp0RVlOVnM1cGFqSkFMWnhpUUlncWRib3Q1dkttS0drekdTVmJ0Qm5sU3NaamhDN01DZnplcFpEbVpCViUyYkpTOGVFMEdLQ1gwckJaakRhZlpUM0Z3ODRDdFNnbGhBYkEwMUlNSjhaVnhRNEIzejhRaE1FRWtWQWNOTm9VSkNPWmx4Nk5rR08wSklEaW0wR2VxeWhvaW5POUtOYlFNQTVSTWloaEZlSHE5VkhBUXFycmZPY0JHZWI1RUpRaXV0MEt2M0QzUnVIc2tNTnYzUHdBeE9GWXQxbEZ2dnFuMjIxNW5pV3p3RGViZEhPVzZ1aklhRnUzVjFPSnhPblUzeVBnakZNYVBMNXhiSk1CWUVUSzNDZ083WGwzaXRBcm1qUHZ4TnclM2QlM2Q=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55a464e1-0d7f-4c6f-8a52-39df6fb9a140" + "1eedc651-5524-4e8c-997e-6b7c4894b2e4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1273,37 +1203,27 @@ "no-cache" ], "x-ms-original-request-ids": [ - "9d72ab4b-c522-4efd-b7cb-5d0fa36604ba", - "2dff8608-10fa-4591-b21c-2efad9e46995", - "0f5e2510-0933-4a53-9295-e954199c2a55", - "d83d37c6-ee5c-452d-9441-3e2f8987f220", - "be62e231-58c7-4d63-9fcd-823e40c6ca6c", - "9e7b108b-1379-47d3-a7b8-bf0c0ecc0225", - "880e3df3-b9b7-4d69-a3b8-2c1c6a26ece2", - "98bafcc5-4581-45b4-a73e-b64c50869f40", - "886c432e-dd8c-4029-8af9-2e5796acdce1", - "1a304610-02c6-4acc-bf4b-d0566257f846", - "c2dd46db-0f80-486c-8e65-2380628ab594", - "82c8d33f-23df-4c1d-8956-8eae233277c8", - "7becf3ed-66c5-471a-ada6-7b40029c5bae", - "48d67c9d-8985-47c1-948d-ba57ae232068", - "41f4188a-3309-47e2-bbd2-2e896ac43a1c", - "e1707a96-5165-4d8a-baff-84c200c3f6e8", - "c4e2d4b7-acd8-4f4e-931f-5f75c4e7eb70", - "095a91a4-2971-424b-bba3-d05dff0d729e", - "05fc6ca2-0ec4-4831-aa79-1fad90521a6a" + "8830ae07-a894-4952-921f-289e6269f113", + "b2e06ef2-cc94-42b8-a178-7c32f74ba5a3", + "3025394e-a4c7-4681-b0ce-aaa133c7bf58", + "88419802-57fb-408a-9883-21e26291412c", + "72a21b61-4c8a-40e3-ad60-8b00911bebb6", + "e7453336-b37b-4e59-a921-7bff2b05a738", + "c5bc42a4-4af4-49cc-9ad6-dd63fef338c6", + "b5350a66-8368-48cf-a0c9-26f2d6a0bb44", + "7d0101f6-3946-4c03-b5a8-7d4f0cba9812" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11997" ], "x-ms-request-id": [ - "3e6581fc-151b-47a2-9bcf-7475a7eca78f" + "8b00e0a1-b17e-4f83-ba9e-4e2a3a4727ea" ], "x-ms-correlation-request-id": [ - "3e6581fc-151b-47a2-9bcf-7475a7eca78f" + "8b00e0a1-b17e-4f83-ba9e-4e2a3a4727ea" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212239Z:3e6581fc-151b-47a2-9bcf-7475a7eca78f" + "WESTUS2:20221005T230530Z:8b00e0a1-b17e-4f83-ba9e-4e2a3a4727ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1312,7 +1232,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:22:39 GMT" + "Wed, 05 Oct 2022 23:05:30 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1321,31 +1241,31 @@ "-1" ], "Content-Length": [ - "48605" + "6884" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egarmrunnertopic6afdede1westus2.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"10740b58-993a-46e8-8e6a-7a32a1a6943f\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventGrid/topics/egarmrunnertopic6afdede1WestUS2\",\r\n \"name\": \"egarmrunnertopic6afdede1WestUS2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-name-local-test-west-us-2.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"e7fdb984-9488-4b9f-a2cc-d9dd21dd195a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-name-local-test-west-us-2\",\r\n \"name\": \"eg-latency-runner-topic-name-local-test-west-us-2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topic20-15-preview.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b9a766f9-9c61-4757-983b-1f59a7c15a00\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/topics/topic20-15-preview\",\r\n \"name\": \"topic20-15-preview\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://ahamadeventgridtopic.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"5c37cef8-20d6-4edc-9f0a-338c14e6d116\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rg-ahamadeventgrid/providers/Microsoft.EventGrid/topics/ahamadeventgridtopic\",\r\n \"name\": \"ahamadeventgridtopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://ahamadeventgridcustomevent-topic.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"TestID\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"TestTopic\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"TestEventTime\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"TestEventType\",\r\n \"defaultValue\": \"default\"\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"TestSubject\",\r\n \"defaultValue\": \"default\"\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": \"TestVersion\",\r\n \"defaultValue\": \"default\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"8acbb9b2-cdb2-496c-8d6f-a6988cd3e9de\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rg-ahamadeventgrid/providers/Microsoft.EventGrid/topics/ahamadeventgridcustomevent-topic\",\r\n \"name\": \"ahamadeventgridcustomevent-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://ahamadeventgridcloudevent-topic.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"f0663260-2693-4638-9ed6-6c1466f06778\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rg-ahamadeventgrid/providers/Microsoft.EventGrid/topics/ahamadeventgridcloudevent-topic\",\r\n \"name\": \"ahamadeventgridcloudevent-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testidentitytopic.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9942c237-3daf-44ec-a5f8-6ad1bc8dd506\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testIdentityTopic\",\r\n \"name\": \"testIdentityTopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopicidentity.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a58278ce-6a2e-4656-9b5e-315dac8103a6\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testtopicIdentity\",\r\n \"name\": \"testtopicIdentity\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopicidentity1101.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ee6199bd-d317-4ae1-8b88-8c58fb85948a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/amh/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testIdentity4\": {\r\n \"principalId\": \"42d73154-a6aa-4906-9905-40db6cc8ac0e\",\r\n \"clientId\": \"0b58b83a-f0d8-4084-b642-a9d2c7c214ac\"\r\n },\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/amh/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ahamadtestidentity3\": {\r\n \"principalId\": \"5735d6ab-f4a2-4df6-af43-458a0988fb13\",\r\n \"clientId\": \"ae2c9bf2-72e3-4e8f-aa21-e9356d68a8c2\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testtopicIdentity1101\",\r\n \"name\": \"testtopicIdentity1101\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopic123.eastus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c65d3bc2-ff60-4426-93f5-8b81776a3242\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testTopic123\",\r\n \"name\": \"testTopic123\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopictag1.westus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b355e557-a7f7-45b7-b559-b30db0845d93\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1153\": \"value1153\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testTopicTag1\",\r\n \"name\": \"testTopicTag1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-prod-usce-blockstorage-perf-topic.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"912ef55f-bf72-4e8b-8511-b273ed7c8600\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-prod-usce-blockstorage/providers/Microsoft.EventGrid/topics/eg-prod-usce-blockstorage-perf-topic\",\r\n \"name\": \"eg-prod-usce-blockstorage-perf-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://activitylogs.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"36d200cd-283d-4125-95f2-11f76725cea1\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": true\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/diagnosticlogstestingtobedeleted/providers/Microsoft.EventGrid/topics/activitylogs\",\r\n \"name\": \"activitylogs\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtest1.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"fcd3e3b6-4db8-4e5d-a019-465f55935204\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"86d36f1d-3c51-4cd3-a5b3-8ddce35086f4\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/testtest1\",\r\n \"name\": \"testtest1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://msistoragewhitelist.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d606706b-441e-412b-b6b9-d5e9d0d3801f\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"9463fb6c-e39f-4baf-a50f-35daada83413\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/msistoragewhitelist\",\r\n \"name\": \"msistoragewhitelist\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://brandon-neff-topic.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c01403fc-7ac1-4d95-b316-1ef712e38e3a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/brandon-test/providers/Microsoft.EventGrid/topics/brandon-neff-topic\",\r\n \"name\": \"brandon-neff-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://test-topic-rohkuma.eastus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"63c4876e-e076-446f-94a6-60fe31ff34fe\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/test-topic-rohkuma\",\r\n \"name\": \"test-topic-rohkuma\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps8442.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d3d4f815-6830-478a-9918-75bc23b7070b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7357/providers/Microsoft.EventGrid/topics/PSTestTopic-ps8442\",\r\n \"name\": \"PSTestTopic-ps8442\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps6197.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"ba5f2a9a-67fc-47e7-90be-36109d944e2e\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7357/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6197\",\r\n \"name\": \"PSTestTopic-ps6197\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps2795.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"8a757d70-d863-411e-8d10-f5aaf69cf1de\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7184/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2795\",\r\n \"name\": \"PSTestTopic-ps2795\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps6442.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9b944964-7da2-420b-93c9-2e71c8da9c4f\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9014/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6442\",\r\n \"name\": \"PSTestTopic-ps6442\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps4188.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b4cedeb6-893d-46b3-b727-6470fbab8ab3\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5765/providers/Microsoft.EventGrid/topics/PSTestTopic-ps4188\",\r\n \"name\": \"PSTestTopic-ps4188\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps3601.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"2f431736-ed93-442d-be4a-e2244bfdfc13\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps113/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3601\",\r\n \"name\": \"PSTestTopic-ps3601\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps4782.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"5714b7fa-820c-4775-b624-182d3eeec0c7\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps113/providers/Microsoft.EventGrid/topics/PSTestTopic-ps4782\",\r\n \"name\": \"PSTestTopic-ps4782\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopicjapaneast.japaneast-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"f104383e-e905-4a51-8d80-09b72b8de109\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/topics/testtopicjapaneast\",\r\n \"name\": \"testtopicjapaneast\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eunoinputjsoninvalidcontrolcharacters.westeurope-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9eb7b0e2-aa54-4946-ac03-f4f1d4bf48aa\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/deletemenow/providers/Microsoft.EventGrid/topics/eunoinputjsoninvalidcontrolcharacters\",\r\n \"name\": \"eunoinputjsoninvalidcontrolcharacters\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://test2deletethistopic.southcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"278b1071-0990-4964-86a7-2ef1f607fbed\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/test2deletethistopic\",\r\n \"name\": \"test2deletethistopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testsfnotopic.southafricanorth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"0629b7ca-4fe8-4124-ab12-c470ec92ee02\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"southafricanorth\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testsfnotopic\",\r\n \"name\": \"testsfnotopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://newregiontopic.westus3-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"dfdf3887-a6a9-4ce0-a9e2-e5a1a2595cb0\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"west us 3\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/NewRegionRg/providers/Microsoft.EventGrid/topics/newRegionTopic\",\r\n \"name\": \"newRegionTopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://newregiondomain.westus3-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6072dc4c-9ef9-4369-b2c6-6b535482d182\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"west us 3\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/NewRegionRg/providers/Microsoft.EventGrid/topics/newRegionDomain\",\r\n \"name\": \"newRegionDomain\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicjiowest.jioindiawest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d91b70ca-ad29-4aea-9654-0c4515ca9501\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"jio india west\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/jioRg/providers/Microsoft.EventGrid/topics/topicjiowest\",\r\n \"name\": \"topicjiowest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testjioindiawest.jioindiawest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"7781a8ab-b24e-4386-94c4-e20080f6ed34\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"jioindiawest\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.EventGrid/topics/testjioindiawest\",\r\n \"name\": \"testjioindiawest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicjiocentral.jioindiacentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6364c055-5a4a-4273-9b3a-aafed2d9b46e\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"jio india central\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/jioRg/providers/Microsoft.EventGrid/topics/topicjiocentral\",\r\n \"name\": \"topicjiocentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicswedencentral.swedencentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c7cdbeb8-6db2-4b8c-87c4-9f52dd3abbee\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"sweden central\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/topics/topicswedencentral\",\r\n \"name\": \"topicswedencentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sampletopic34.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"55c51161-fe8c-4c42-bf9b-8097198d6802\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/SampleRg/providers/Microsoft.EventGrid/topics/SampleTopic34\",\r\n \"name\": \"SampleTopic34\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-use2-sla-control-topic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"736b24e4-e936-41a2-b3f2-a88ee48ae47a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2/providers/Microsoft.EventGrid/topics/eg-euap-use2-sla-control-topic\",\r\n \"name\": \"eg-euap-use2-sla-control-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-use2-delay-queues-topic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"30d2e26b-b11c-46bf-ace9-a8f51c7e262d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2/providers/Microsoft.EventGrid/topics/eg-euap-use2-delay-queues-topic\",\r\n \"name\": \"eg-euap-use2-delay-queues-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-use2-eventsizes-topic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"3f97e836-9d95-45af-8192-1065ead47c1b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2/providers/Microsoft.EventGrid/topics/eg-euap-use2-eventsizes-topic\",\r\n \"name\": \"eg-euap-use2-eventsizes-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-use2-batching-topic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"88fd4aff-d632-4439-830f-b340682d4f0d\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": []\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2/providers/Microsoft.EventGrid/topics/eg-euap-use2-batching-topic\",\r\n \"name\": \"eg-euap-use2-batching-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-use2-move-extents-topic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f9fdecc7-afd3-4723-b985-5fb5075230fa\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"newtag\": \"valuetag\",\r\n \"tag2\": \"tag2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2/providers/Microsoft.EventGrid/topics/eg-euap-use2-move-extents-topic\",\r\n \"name\": \"eg-euap-use2-move-extents-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://mparktopic-eastuseuap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"06d46586-b10b-448a-847c-38f50077bc4b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/mparkrg/providers/Microsoft.EventGrid/topics/mparktopic-eastuseuap\",\r\n \"name\": \"mparktopic-eastuseuap\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://msitestcheckaccess.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"bbfbd1c0-a9e0-458c-9697-661c4ce624bf\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"22fab3ca-4416-4809-8519-4893f684fb2d\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/msitestcheckaccess\",\r\n \"name\": \"msitestcheckaccess\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egltncygssn-ehmsidestwithdlqeastus2euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b9e9bc89-c16d-4d50-89c6-4f4b8f221de8\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"9f8c6140-50b9-4281-833f-c96930c4e5d1\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/topics/egltncygssn-ehmsidestwithdlqEastUS2EUAP\",\r\n \"name\": \"egltncygssn-ehmsidestwithdlqEastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://inputjsoninvalidcontrolcharacters.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"5c84f2bb-9840-4f62-bc75-15fdc72ffe09\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/deletemenow/providers/Microsoft.EventGrid/topics/inputjsoninvalidcontrolcharacters\",\r\n \"name\": \"inputjsoninvalidcontrolcharacters\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudgsehdest4f09218aeastus2euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ed5ef295-b451-40fd-aa55-3b73be0529bb\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/topics/egcrudgsehdest4f09218aEastUS2EUAP\",\r\n \"name\": \"egcrudgsehdest4f09218aEastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://dataresidencytest.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"412e4f67-a7b7-4f53-a1dd-63b72042d743\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/dataresidencytest\",\r\n \"name\": \"dataresidencytest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://dataresidencytest2.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1263af05-d00d-4e08-8d50-a6c13d23aeb4\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/dataresidencytest2\",\r\n \"name\": \"dataresidencytest2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eastustopic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9c58b457-3d1e-4546-bce3-af6284c49e1f\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/userassignedmsitest\": {\r\n \"principalId\": \"627b3605-44e9-4984-a4bf-d07d86debebd\",\r\n \"clientId\": \"75f3d6ef-091a-4f91-a196-ae827438098a\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/eastustopic\",\r\n \"name\": \"eastustopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-use2-dedicated-queues-topic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d7529586-644d-460c-ae02-70897a62813a\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2/providers/Microsoft.EventGrid/topics/eg-euap-use2-dedicated-queues-topic\",\r\n \"name\": \"eg-euap-use2-dedicated-queues-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://test.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"4535bb9f-f6b3-488f-887b-b6dccb8ba05d\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [],\r\n \"disableLocalAuth\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted/providers/Microsoft.EventGrid/topics/test\",\r\n \"name\": \"test\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateEndpointConnections\": [\r\n {\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink/providers/Microsoft.Network/privateEndpoints/pet-a\"\r\n },\r\n \"groupIds\": [\r\n \"topic\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Auto-approved\",\r\n \"actionsRequired\": \"None\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/VKUKKE-PRIVATELINK/providers/Microsoft.EventGrid/topics/TOPICNAME/privateEndpointConnections/PET-A.505CD90E-5F91-483B-972F-D29C642D02C9\",\r\n \"name\": \"pet-a-a\",\r\n \"type\": \"Microsoft.EventGrid/topics/privateEndpointConnections\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicname.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b4511d1a-a811-47e8-93c3-f5f7559d4be7\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink/providers/Microsoft.EventGrid/topics/topicName\",\r\n \"name\": \"topicName\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-7667.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d091ae17-8f61-4e2c-8395-264c98d65167\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1829/providers/Microsoft.EventGrid/topics/sdk-Topic-7667\",\r\n \"name\": \"sdk-Topic-7667\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://clibqwtzhrluvjkn3sbagbsl6shumvptj2hbjjh2.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"fcc7d2ed-a687-4105-9008-c0c7c9c2a620\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgqo6jlt4pldsfnqwcaoaxtulpcjdprpzvs3r7cndxiafbyupfi4qafuomg7uloke5q/providers/Microsoft.EventGrid/topics/clibqwtzhrluvjkn3sbagbsl6shumvptj2hbjjh2\",\r\n \"name\": \"clibqwtzhrluvjkn3sbagbsl6shumvptj2hbjjh2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://clixhxrmnxsdr3xdxeisbo7kzanythasstmtwnce.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"efef560e-8f8e-43ea-bf7b-87e9773a64c2\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgupp4yhpnutvm5dkdkkphj7e2yofi5oju2m67bhmx6ep2mrpxicmn4iffvtqgotnak/providers/Microsoft.EventGrid/topics/clixhxrmnxsdr3xdxeisbo7kzanythasstmtwnce\",\r\n \"name\": \"clixhxrmnxsdr3xdxeisbo7kzanythasstmtwnce\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://usertopic4.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"7f499083-12eb-40e7-96f2-3012206d6adf\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/userassignedmsitest1\": {\r\n \"principalId\": \"a2f990d8-2f0b-4266-a334-c57cf3bb51b7\",\r\n \"clientId\": \"4b0f3242-b99d-4632-87ae-939e9754ae24\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/usertopic4\",\r\n \"name\": \"usertopic4\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-5497.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"81bb24a4-a2a5-4728-8151-be0cd5e95c32\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-108/providers/Microsoft.EventGrid/topics/sdk-Topic-5497\",\r\n \"name\": \"sdk-Topic-5497\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-9908.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"be4f6976-844a-4f0c-80ab-2fd38dc4fd9c\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8557/providers/Microsoft.EventGrid/topics/sdk-Topic-9908\",\r\n \"name\": \"sdk-Topic-9908\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-7738.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9b872e0f-851d-416b-9668-cd3bbcd7f7d8\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-781/providers/Microsoft.EventGrid/topics/sdk-Topic-7738\",\r\n \"name\": \"sdk-Topic-7738\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-8109.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"235ef7cb-abaa-4cf8-98ce-5d54c814a403\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7222/providers/Microsoft.EventGrid/topics/sdk-Topic-8109\",\r\n \"name\": \"sdk-Topic-8109\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://usertopicupdate.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f50d8e74-f2cc-4756-90a3-d9e0613403d9\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/userassignedmsitest1\": {\r\n \"principalId\": \"a2f990d8-2f0b-4266-a334-c57cf3bb51b7\",\r\n \"clientId\": \"4b0f3242-b99d-4632-87ae-939e9754ae24\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/usertopicupdate\",\r\n \"name\": \"usertopicupdate\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://usertopicupdate1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"4682da4e-cfec-473d-b2b7-bedde9006f32\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/usertopicupdate1\",\r\n \"name\": \"usertopicupdate1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://usertopicupdate2.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"93f05da0-470f-4628-b452-7fc065ca56ae\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/userassignedmsitest1\": {\r\n \"principalId\": \"a2f990d8-2f0b-4266-a334-c57cf3bb51b7\",\r\n \"clientId\": \"4b0f3242-b99d-4632-87ae-939e9754ae24\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/usertopicupdate2\",\r\n \"name\": \"usertopicupdate2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://useridentitytopic1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ebf4a72a-a388-48f1-b7a2-8a890711d923\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/userassignedmsitest1\": {\r\n \"principalId\": \"a2f990d8-2f0b-4266-a334-c57cf3bb51b7\",\r\n \"clientId\": \"4b0f3242-b99d-4632-87ae-939e9754ae24\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/useridentitytopic1\",\r\n \"name\": \"useridentitytopic1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://systemtopics1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"28f8aac8-0a7e-46ca-8fd3-5f01bbb2380a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/userassignedmsitest1\": {\r\n \"principalId\": \"a2f990d8-2f0b-4266-a334-c57cf3bb51b7\",\r\n \"clientId\": \"4b0f3242-b99d-4632-87ae-939e9754ae24\"\r\n },\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/msi/providers/microsoft.managedidentity/userassignedidentities/userassignedmsitest2\": {\r\n \"principalId\": \"b44475fb-cb05-4023-8ce9-b470ef2e5501\",\r\n \"clientId\": \"38c40acd-ffe3-40f9-b5a9-b4bbb57f70b0\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/systemtopics1\",\r\n \"name\": \"systemtopics1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://mixedtopics1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"92b1639b-3378-4cac-a494-dd6af5026607\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"e72a5930-626e-4a87-992a-3de9834ecdd7\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/mixedtopics1\",\r\n \"name\": \"mixedtopics1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testmsitopic.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"dd94939c-e371-4da4-b050-fad3eb15b5ff\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/msi/providers/microsoft.managedidentity/userassignedidentities/userassignedmsitest1\": {\r\n \"principalId\": \"a2f990d8-2f0b-4266-a334-c57cf3bb51b7\",\r\n \"clientId\": \"4b0f3242-b99d-4632-87ae-939e9754ae24\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/testmsitopic\",\r\n \"name\": \"testmsitopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://kishptopic4.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"7e8931d3-da08-468d-842a-a12ee6d88caa\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/kishptopic4\",\r\n \"name\": \"kishptopic4\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testgroupmembership.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"5e9b351f-c8cc-4ecc-936f-849bf57ce891\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"3fe7cf75-da75-4c13-a528-af137dd7c701\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/userassignedmsitest1\": {\r\n \"principalId\": \"a2f990d8-2f0b-4266-a334-c57cf3bb51b7\",\r\n \"clientId\": \"4b0f3242-b99d-4632-87ae-939e9754ae24\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/testgroupmembership\",\r\n \"name\": \"testgroupmembership\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topictest.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"4b898cce-a626-47de-bda3-d5a2719fbbaa\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kevintest/providers/Microsoft.EventGrid/topics/topictest\",\r\n \"name\": \"topictest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://centralustopic.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"4502ac3b-1a46-4c53-a100-82d7be9ff402\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/userassignedmsitest\": {\r\n \"principalId\": \"627b3605-44e9-4984-a4bf-d07d86debebd\",\r\n \"clientId\": \"75f3d6ef-091a-4f91-a196-ae827438098a\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/centralustopic\",\r\n \"name\": \"centralustopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testauce2kishp.australiacentral2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"417b625d-63f8-4e2b-93fa-58fdc575b79b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"australiacentral2\",\r\n \"tags\": {\r\n \"aeg-partnernamespace-version\": \"v2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete/providers/Microsoft.EventGrid/topics/testauce2kishp\",\r\n \"name\": \"testauce2kishp\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://kishptestauc2runner.australiacentral2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1fe806ad-445e-4f01-8144-126e10d66973\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"australiacentral2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete/providers/Microsoft.EventGrid/topics/kishptestauc2runner\",\r\n \"name\": \"kishptestauc2runner\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicswedensouth.swedensouth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"db797f64-c2dc-448c-8d87-a5beaf9a06d5\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"sweden south\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/topics/topicswedensouth\",\r\n \"name\": \"topicswedensouth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicqctest.qatarcentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"e29335db-a60e-4adc-8956-cb7dc0d9a29b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"qatarcentral\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/topics/topicqctest\",\r\n \"name\": \"topicqctest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/topics?api-version=2021-12-01&%24skiptoken=TY9Rb8IgFIX%2fS2N9q22pWDUxC3Pt5qJTq%2b07FNYRLSWAxsz43wfOLCM33A9ycu65V0%2bwi1lycdDe9OrNs499gZblLivRxpt6X8ZIPQ3DFgvcsJYJM8DfJ8UGddeG%2bkR0rbg0vBM6hGRIRjBiARiTSTBMJ1FAEkwCSgkdj2kK0noYStWdOWVKhyteq053n2aQna3tq%2bI0NJ3ktX7Ckgdnq7G2MxCBOIhBEMX9nj7YWd2BiZkPiZ8SH4D703Y%2fwe4GpFi8OE7ZzuQMbRCqtm%2fyvSjR7%2fET6gokxd7KYgv7Ym4JRBYXu8qho2xtaQQhdJJ84ySoycvquJ2jdXusmgV6lvpuZfW1na2waNgjyT1ay8W%2fYA9Viy9%2fn3nuMKWuIO337PZ2Xe92%2bwE%3d\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-name-local-test-west-us-2.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"e7fdb984-9488-4b9f-a2cc-d9dd21dd195a\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-name-local-test-west-us-2\",\r\n \"name\": \"eg-latency-runner-topic-name-local-test-west-us-2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://activitylogs.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"36d200cd-283d-4125-95f2-11f76725cea1\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": true,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/diagnosticlogstestingtobedeleted/providers/Microsoft.EventGrid/topics/activitylogs\",\r\n \"name\": \"activitylogs\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps6197.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"ba5f2a9a-67fc-47e7-90be-36109d944e2e\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7357/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6197\",\r\n \"name\": \"PSTestTopic-ps6197\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://brandonneff-topic-chinese.westeurope-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"4c62575e-e1c5-4e2e-933c-9f19ebac2f43\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [],\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EG-RG-啊阿埃挨哎唉D2丂丄丅丆丏丒丟D3狧狪狫㑳狵狶狹繭狾D4ˉD1D5U1U2U3㐀㐁㐂㐃㐄㐅㐆㐇A012S/providers/Microsoft.EventGrid/topics/brandonneff-topic-chinese\",\r\n \"name\": \"brandonneff-topic-chinese\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://newregiondomain.westus3-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6072dc4c-9ef9-4369-b2c6-6b535482d182\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"west us 3\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/NewRegionRg/providers/Microsoft.EventGrid/topics/newRegionDomain\",\r\n \"name\": \"newRegionDomain\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testjioindiawest.jioindiawest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"7781a8ab-b24e-4386-94c4-e20080f6ed34\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"jioindiawest\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.EventGrid/topics/testjioindiawest\",\r\n \"name\": \"testjioindiawest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-use2-sla-control-topic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"736b24e4-e936-41a2-b3f2-a88ee48ae47a\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2/providers/Microsoft.EventGrid/topics/eg-euap-use2-sla-control-topic\",\r\n \"name\": \"eg-euap-use2-sla-control-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-7667.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d091ae17-8f61-4e2c-8395-264c98d65167\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1829/providers/Microsoft.EventGrid/topics/sdk-Topic-7667\",\r\n \"name\": \"sdk-Topic-7667\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://kishptestauc2runner.australiacentral2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1fe806ad-445e-4f01-8144-126e10d66973\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"australiacentral2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete/providers/Microsoft.EventGrid/topics/kishptestauc2runner\",\r\n \"name\": \"kishptestauc2runner\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/topics?api-version=2022-06-15&%24top=1&%24skiptoken=3ZZrb6JAFIb%2fC6n9tFYEQW3SbA4jsIhabmr123DpyBIuAgq7Tf%2f7Hmy32R9gP3TJBM5M3rnx8J7hhcuitl7EWVJx9y%2fcVnW9tStw99yhrovqfjBIaUZZlEZZfUd%2fn8roLsjTQXXyq6CMizrOs2og%2bSNflvioL0z8aX80nvJ9X6R%2bPwz9cDIJx8I4GA2KMj%2fHYVRWg2UclHmVP9d36hmH1cs4HNR5EQfVd1rE%2fTNqcNgHgReEPi%2f3h9LtTZXgXHkSZQ89ye%2bN%2fZ4gXKr47Im0uwu%2bY8y6eBwFT6sELEtNGt2OHQPerp4YdkUQHQ9l2EH0HPIeGe7mb6Q%2bYiRLkjREhU00rE0w0qxOC0wzaZITmJO5BwYU5t5VAFqFQbBpDIh8Z6cAaRJRUCkz4Jizy5w4W4CLLGnGovclX%2faQxtk%2fO3hXpbT9aNS0LhyHXZHC2xt8TQ9D7htH1JXnwGLtfmlQdNoeYNWWJoKy2eiqoFRpP0s6UMRGEOV8qgNTesIz4ysCEM%2f2iA%2bO8Dl4Ohf9H4hYO5nBY9P%2banSLHNhVEWks3AIBA71r%2bmDDSV5rB4EnsEyb0N7B3G8cWAJSu7p%2fVLikOXUN1pd2kCjaP8ASljswD8%2f2%2bqp41I3frgmY%2blRDBy3kSQIMqjzeEViQ1sQ2MPYLdJVUblV0mtvsEWJpgnPQUaMdHYp1Vebdn1t0onVcdCnRGxdn7OO9Wa9LyFeH%2b%2bG8L4%2fXrbUILICNraUruHKCHD3NGAGd8jamwicpVAgDmTETbENxNDzTXMQ32%2ftKliQqKPRxlCsWsNk52SBu5VhssJ9MN1v8LPR0iBpzWznzVYAa83Q5%2bD4B7%2bs3jpYpMFZGjNZR6HV%2fBehhcJbc6x8%3d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/topics?api-version=2021-12-01&%24skiptoken=TY9Rb8IgFIX%2fS2N9q22pWDUxC3Pt5qJTq%2b07FNYRLSWAxsz43wfOLCM33A9ycu65V0%2bwi1lycdDe9OrNs499gZblLivRxpt6X8ZIPQ3DFgvcsJYJM8DfJ8UGddeG%2bkR0rbg0vBM6hGRIRjBiARiTSTBMJ1FAEkwCSgkdj2kK0noYStWdOWVKhyteq053n2aQna3tq%2bI0NJ3ktX7Ckgdnq7G2MxCBOIhBEMX9nj7YWd2BiZkPiZ8SH4D703Y%2fwe4GpFi8OE7ZzuQMbRCqtm%2fyvSjR7%2fET6gokxd7KYgv7Ym4JRBYXu8qho2xtaQQhdJJ84ySoycvquJ2jdXusmgV6lvpuZfW1na2waNgjyT1ay8W%2fYA9Viy9%2fn3nuMKWuIO337PZ2Xe92%2bwE%3d", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcz9hcGktdmVyc2lvbj0yMDIxLTEyLTAxJiUyNHNraXB0b2tlbj1UWTlSYjhJZ0ZJWCUyZlMyTjlxMjJwV0RVeEMzUHQ1cUpUcSUyYjA3Rk5ZUkxTV0F4c3o0M3dmT0xDTTMzQTl5Y3U2NVYwJTJid2kxbHljZERlOU9yTnM0OTlnWmJsTGl2UnhwdDZYOFpJUFEzREZndmNzSllKTThEZko4VUdkZGVHJTJia1IwcmJnMHZCTTZoR1JJUmpCaUFSaVRTVEJNSjFGQUVrd0NTZ2tkajJrSzBub1lTdFdkT1dWS2h5dGVxMDUzbjJhUW5hM3RxJTJiSTBOSjNrdFg3Q2tnZG5xN0cyTXhDQk9JaEJFTVg5bmo3WVdkMkJpWmtQaVo4U0g0RDcwM1klMmZ3ZTRHcEZpOE9FN1p6dVFNYlJDcXRtJTJmeXZTalI3JTJmRVQ2Z29reGQ3S1lndjdZbTRKUkJZWHU4cWhvMnh0YVFRaGRKSjg0eVNveWN2cXVKMmpkWHVzbWdWNmx2cHVaZlcxbmEyd2FOZ2p5VDFheThXJTJmWUE5Vml5OSUyZm4zbnVNS1d1SU8zMzdQWjJYZTkyJTJid0UlM2Q=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/topics?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55a464e1-0d7f-4c6f-8a52-39df6fb9a140" + "9c98734a-3f3c-42bd-b223-ffe9a8bf59bc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1354,19 +1274,37 @@ "no-cache" ], "x-ms-original-request-ids": [ - "19b817f7-863b-4371-8f63-f2d9efef951a" + "19f77091-99ca-4ae1-89c1-db6c37885a21", + "6608507f-d33a-40b2-b95f-6c18ce212949", + "6b0b82d8-07a8-43fd-a51a-57efcd9347bb", + "87d563ce-90d3-4004-9596-2084ed7fe97f", + "11e27f66-f5ec-4690-be18-9d183de87c98", + "4cc8e66c-3970-4628-bc8c-f0f1344847f3", + "879e7ebd-a923-417b-b184-4d26b7527c72", + "99e6cd09-c498-40ba-a4aa-5885f2ec423d", + "45fee726-4ddb-415f-9d4f-fa8ad847d254", + "8ac0dd30-7bf6-4643-bf24-3771bf2e4028", + "7662c2df-d3ae-4fc0-9d3e-2ea63a4b8d3a", + "77734f7c-4737-496f-9ea8-4284b5bcc47c", + "d31d83c8-2d71-4a13-96b4-8d8c889d0d8f", + "e21c126c-21bb-4d78-a60f-6edbbb851008", + "34d8d58c-8585-42c4-a77f-80de7eef2fe6", + "b252c5de-7f7f-4870-b174-29fb6bc600d3", + "250eb775-8cb2-475e-b225-0bfe160bfbe1", + "7970499a-b463-4c6c-ba31-2cdf6be4b57a", + "8c72b580-5599-4965-9bdd-f0bb59fc727e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11999" ], "x-ms-request-id": [ - "fa0fadc0-9528-40ab-b8e3-b28190311624" + "ec9022a2-3948-4002-b62c-1c1a9b3c397e" ], "x-ms-correlation-request-id": [ - "fa0fadc0-9528-40ab-b8e3-b28190311624" + "ec9022a2-3948-4002-b62c-1c1a9b3c397e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212239Z:fa0fadc0-9528-40ab-b8e3-b28190311624" + "WESTUS2:20221005T230532Z:ec9022a2-3948-4002-b62c-1c1a9b3c397e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1375,7 +1313,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:22:39 GMT" + "Wed, 05 Oct 2022 23:05:32 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1384,31 +1322,31 @@ "-1" ], "Content-Length": [ - "699" + "54709" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-usce-dedicated-queues-topic.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"afd36bdf-cac2-4cd5-b13c-ccd283045855\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-usce/providers/Microsoft.EventGrid/topics/eg-euap-usce-dedicated-queues-topic\",\r\n \"name\": \"eg-euap-usce-dedicated-queues-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egarmrunnertopic6afdede1westus2.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"10740b58-993a-46e8-8e6a-7a32a1a6943f\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventGrid/topics/egarmrunnertopic6afdede1WestUS2\",\r\n \"name\": \"egarmrunnertopic6afdede1WestUS2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-name-local-test-west-us-2.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"e7fdb984-9488-4b9f-a2cc-d9dd21dd195a\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-name-local-test-west-us-2\",\r\n \"name\": \"eg-latency-runner-topic-name-local-test-west-us-2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topic20-15-preview.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b9a766f9-9c61-4757-983b-1f59a7c15a00\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/topics/topic20-15-preview\",\r\n \"name\": \"topic20-15-preview\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://ahamadeventgridtopic.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"5c37cef8-20d6-4edc-9f0a-338c14e6d116\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rg-ahamadeventgrid/providers/Microsoft.EventGrid/topics/ahamadeventgridtopic\",\r\n \"name\": \"ahamadeventgridtopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://ahamadeventgridcustomevent-topic.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"TestID\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"TestTopic\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"TestEventTime\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"TestEventType\",\r\n \"defaultValue\": \"default\"\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"TestSubject\",\r\n \"defaultValue\": \"default\"\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": \"TestVersion\",\r\n \"defaultValue\": \"default\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"8acbb9b2-cdb2-496c-8d6f-a6988cd3e9de\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rg-ahamadeventgrid/providers/Microsoft.EventGrid/topics/ahamadeventgridcustomevent-topic\",\r\n \"name\": \"ahamadeventgridcustomevent-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://ahamadeventgridcloudevent-topic.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"f0663260-2693-4638-9ed6-6c1466f06778\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rg-ahamadeventgrid/providers/Microsoft.EventGrid/topics/ahamadeventgridcloudevent-topic\",\r\n \"name\": \"ahamadeventgridcloudevent-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testidentitytopic.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9942c237-3daf-44ec-a5f8-6ad1bc8dd506\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testIdentityTopic\",\r\n \"name\": \"testIdentityTopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopicidentity.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a58278ce-6a2e-4656-9b5e-315dac8103a6\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testtopicIdentity\",\r\n \"name\": \"testtopicIdentity\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopicidentity1101.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ee6199bd-d317-4ae1-8b88-8c58fb85948a\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/amh/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testIdentity4\": {\r\n \"principalId\": \"42d73154-a6aa-4906-9905-40db6cc8ac0e\",\r\n \"clientId\": \"0b58b83a-f0d8-4084-b642-a9d2c7c214ac\"\r\n },\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/amh/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ahamadtestidentity3\": {\r\n \"principalId\": \"5735d6ab-f4a2-4df6-af43-458a0988fb13\",\r\n \"clientId\": \"ae2c9bf2-72e3-4e8f-aa21-e9356d68a8c2\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testtopicIdentity1101\",\r\n \"name\": \"testtopicIdentity1101\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://brandonneff-topic.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"017b514e-2cd9-438a-93ee-8caea2b364e4\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [],\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/brandonneff/providers/Microsoft.EventGrid/topics/brandonneff-topic\",\r\n \"name\": \"brandonneff-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopic123.eastus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c65d3bc2-ff60-4426-93f5-8b81776a3242\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testTopic123\",\r\n \"name\": \"testTopic123\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopictag1.westus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b355e557-a7f7-45b7-b559-b30db0845d93\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1153\": \"value1153\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testTopicTag1\",\r\n \"name\": \"testTopicTag1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-prod-usce-blockstorage-perf-topic.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"912ef55f-bf72-4e8b-8511-b273ed7c8600\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-prod-usce-blockstorage/providers/Microsoft.EventGrid/topics/eg-prod-usce-blockstorage-perf-topic\",\r\n \"name\": \"eg-prod-usce-blockstorage-perf-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://activitylogs.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"36d200cd-283d-4125-95f2-11f76725cea1\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": true,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/diagnosticlogstestingtobedeleted/providers/Microsoft.EventGrid/topics/activitylogs\",\r\n \"name\": \"activitylogs\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtest1.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"fcd3e3b6-4db8-4e5d-a019-465f55935204\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"86d36f1d-3c51-4cd3-a5b3-8ddce35086f4\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/testtest1\",\r\n \"name\": \"testtest1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://msistoragewhitelist.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d606706b-441e-412b-b6b9-d5e9d0d3801f\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"9463fb6c-e39f-4baf-a50f-35daada83413\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/msistoragewhitelist\",\r\n \"name\": \"msistoragewhitelist\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://brandon-neff-topic.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c01403fc-7ac1-4d95-b316-1ef712e38e3a\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/brandon-test/providers/Microsoft.EventGrid/topics/brandon-neff-topic\",\r\n \"name\": \"brandon-neff-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://securedwebhooktopic.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"8d05815b-aa3d-4d0b-9015-cd3a0c248bee\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [],\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.EventGrid/topics/securedwebhooktopic\",\r\n \"name\": \"securedwebhooktopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://test-topic-rohkuma.eastus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"63c4876e-e076-446f-94a6-60fe31ff34fe\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/test-topic-rohkuma\",\r\n \"name\": \"test-topic-rohkuma\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps8442.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d3d4f815-6830-478a-9918-75bc23b7070b\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7357/providers/Microsoft.EventGrid/topics/PSTestTopic-ps8442\",\r\n \"name\": \"PSTestTopic-ps8442\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps6197.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"ba5f2a9a-67fc-47e7-90be-36109d944e2e\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7357/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6197\",\r\n \"name\": \"PSTestTopic-ps6197\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps2795.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"8a757d70-d863-411e-8d10-f5aaf69cf1de\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7184/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2795\",\r\n \"name\": \"PSTestTopic-ps2795\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps6442.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9b944964-7da2-420b-93c9-2e71c8da9c4f\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9014/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6442\",\r\n \"name\": \"PSTestTopic-ps6442\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtagsfix.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"0d0e53c3-69d2-4a94-afb8-2f53b0173010\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [],\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"testValue\": \"2022-05-20T02:05:15.165Z\",\r\n \"testValue2\": \"2025-02-21T12:15:22.365Z\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testTagsFix\",\r\n \"name\": \"testTagsFix\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps307.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f703752d-36ea-4480-b3d3-653d205b1717\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5181/providers/Microsoft.EventGrid/topics/PSTestTopic-ps307\",\r\n \"name\": \"PSTestTopic-ps307\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps3421.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6ecd7be6-5e6e-4dfa-9b31-0cfef0aa2a90\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5347/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3421\",\r\n \"name\": \"PSTestTopic-ps3421\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps6132.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"83f65c3f-e5a6-4a95-b74c-4a214f6a9bd3\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7060/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6132\",\r\n \"name\": \"PSTestTopic-ps6132\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps9114.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"e4bbb5a5-eeba-4eff-97c0-05d6c12be02a\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7060/providers/Microsoft.EventGrid/topics/PSTestTopic-ps9114\",\r\n \"name\": \"PSTestTopic-ps9114\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopicjapaneast.japaneast-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"f104383e-e905-4a51-8d80-09b72b8de109\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/topics/testtopicjapaneast\",\r\n \"name\": \"testtopicjapaneast\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eunoinputjsoninvalidcontrolcharacters.westeurope-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9eb7b0e2-aa54-4946-ac03-f4f1d4bf48aa\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/deletemenow/providers/Microsoft.EventGrid/topics/eunoinputjsoninvalidcontrolcharacters\",\r\n \"name\": \"eunoinputjsoninvalidcontrolcharacters\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://brandonneff-topic-chinese.westeurope-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"4c62575e-e1c5-4e2e-933c-9f19ebac2f43\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [],\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EG-RG-啊阿埃挨哎唉D2丂丄丅丆丏丒丟D3狧狪狫㑳狵狶狹繭狾D4ˉD1D5U1U2U3㐀㐁㐂㐃㐄㐅㐆㐇A012S/providers/Microsoft.EventGrid/topics/brandonneff-topic-chinese\",\r\n \"name\": \"brandonneff-topic-chinese\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://test2deletethistopic.southcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"278b1071-0990-4964-86a7-2ef1f607fbed\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/test2deletethistopic\",\r\n \"name\": \"test2deletethistopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testsfnotopic.southafricanorth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"0629b7ca-4fe8-4124-ab12-c470ec92ee02\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"southafricanorth\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testsfnotopic\",\r\n \"name\": \"testsfnotopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://newregiontopic.westus3-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"dfdf3887-a6a9-4ce0-a9e2-e5a1a2595cb0\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"west us 3\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/NewRegionRg/providers/Microsoft.EventGrid/topics/newRegionTopic\",\r\n \"name\": \"newRegionTopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://newregiondomain.westus3-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6072dc4c-9ef9-4369-b2c6-6b535482d182\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"west us 3\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/NewRegionRg/providers/Microsoft.EventGrid/topics/newRegionDomain\",\r\n \"name\": \"newRegionDomain\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicjiowest.jioindiawest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d91b70ca-ad29-4aea-9654-0c4515ca9501\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"jio india west\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/jioRg/providers/Microsoft.EventGrid/topics/topicjiowest\",\r\n \"name\": \"topicjiowest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testjioindiawest.jioindiawest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"7781a8ab-b24e-4386-94c4-e20080f6ed34\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"jioindiawest\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.EventGrid/topics/testjioindiawest\",\r\n \"name\": \"testjioindiawest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicjiocentral.jioindiacentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6364c055-5a4a-4273-9b3a-aafed2d9b46e\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"jio india central\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/jioRg/providers/Microsoft.EventGrid/topics/topicjiocentral\",\r\n \"name\": \"topicjiocentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicswedencentral.swedencentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c7cdbeb8-6db2-4b8c-87c4-9f52dd3abbee\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"sweden central\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/topics/topicswedencentral\",\r\n \"name\": \"topicswedencentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicqctest.qatarcentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"e29335db-a60e-4adc-8956-cb7dc0d9a29b\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"qatarcentral\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/topics/topicqctest\",\r\n \"name\": \"topicqctest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sampletopic34.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"55c51161-fe8c-4c42-bf9b-8097198d6802\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/SampleRg/providers/Microsoft.EventGrid/topics/SampleTopic34\",\r\n \"name\": \"SampleTopic34\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-use2-sla-control-topic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"736b24e4-e936-41a2-b3f2-a88ee48ae47a\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2/providers/Microsoft.EventGrid/topics/eg-euap-use2-sla-control-topic\",\r\n \"name\": \"eg-euap-use2-sla-control-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-use2-delay-queues-topic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"30d2e26b-b11c-46bf-ace9-a8f51c7e262d\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2/providers/Microsoft.EventGrid/topics/eg-euap-use2-delay-queues-topic\",\r\n \"name\": \"eg-euap-use2-delay-queues-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-use2-eventsizes-topic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"3f97e836-9d95-45af-8192-1065ead47c1b\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2/providers/Microsoft.EventGrid/topics/eg-euap-use2-eventsizes-topic\",\r\n \"name\": \"eg-euap-use2-eventsizes-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-use2-batching-topic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"88fd4aff-d632-4439-830f-b340682d4f0d\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [],\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2/providers/Microsoft.EventGrid/topics/eg-euap-use2-batching-topic\",\r\n \"name\": \"eg-euap-use2-batching-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-use2-move-extents-topic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f9fdecc7-afd3-4723-b985-5fb5075230fa\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"newtag\": \"valuetag\",\r\n \"tag2\": \"tag2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2/providers/Microsoft.EventGrid/topics/eg-euap-use2-move-extents-topic\",\r\n \"name\": \"eg-euap-use2-move-extents-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://mparktopic-eastuseuap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"06d46586-b10b-448a-847c-38f50077bc4b\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/mparkrg/providers/Microsoft.EventGrid/topics/mparktopic-eastuseuap\",\r\n \"name\": \"mparktopic-eastuseuap\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://msitestcheckaccess.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"bbfbd1c0-a9e0-458c-9697-661c4ce624bf\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"22fab3ca-4416-4809-8519-4893f684fb2d\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/msitestcheckaccess\",\r\n \"name\": \"msitestcheckaccess\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egltncygssn-ehmsidestwithdlqeastus2euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b9e9bc89-c16d-4d50-89c6-4f4b8f221de8\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"9f8c6140-50b9-4281-833f-c96930c4e5d1\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/topics/egltncygssn-ehmsidestwithdlqEastUS2EUAP\",\r\n \"name\": \"egltncygssn-ehmsidestwithdlqEastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://inputjsoninvalidcontrolcharacters.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"5c84f2bb-9840-4f62-bc75-15fdc72ffe09\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/deletemenow/providers/Microsoft.EventGrid/topics/inputjsoninvalidcontrolcharacters\",\r\n \"name\": \"inputjsoninvalidcontrolcharacters\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudgsehdest4f09218aeastus2euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ed5ef295-b451-40fd-aa55-3b73be0529bb\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/topics/egcrudgsehdest4f09218aEastUS2EUAP\",\r\n \"name\": \"egcrudgsehdest4f09218aEastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://dataresidencytest.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"412e4f67-a7b7-4f53-a1dd-63b72042d743\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinRegion\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/dataresidencytest\",\r\n \"name\": \"dataresidencytest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://dataresidencytest2.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1263af05-d00d-4e08-8d50-a6c13d23aeb4\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/dataresidencytest2\",\r\n \"name\": \"dataresidencytest2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eastustopic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9c58b457-3d1e-4546-bce3-af6284c49e1f\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/userassignedmsitest\": {\r\n \"principalId\": \"627b3605-44e9-4984-a4bf-d07d86debebd\",\r\n \"clientId\": \"75f3d6ef-091a-4f91-a196-ae827438098a\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/eastustopic\",\r\n \"name\": \"eastustopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-use2-dedicated-queues-topic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d7529586-644d-460c-ae02-70897a62813a\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2/providers/Microsoft.EventGrid/topics/eg-euap-use2-dedicated-queues-topic\",\r\n \"name\": \"eg-euap-use2-dedicated-queues-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://msitestcheckaccess2.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"bffd112b-a23b-4074-901a-279a023a8dd8\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"9173bde0-fa2f-4e89-9fb8-842e423b6746\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/msitestcheckaccess2\",\r\n \"name\": \"msitestcheckaccess2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateEndpointConnections\": [\r\n {\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink/providers/Microsoft.Network/privateEndpoints/pet-a\"\r\n },\r\n \"groupIds\": [\r\n \"topic\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Auto-approved\",\r\n \"actionsRequired\": \"None\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/VKUKKE-PRIVATELINK/providers/Microsoft.EventGrid/topics/TOPICNAME/privateEndpointConnections/PET-A.505CD90E-5F91-483B-972F-D29C642D02C9\",\r\n \"name\": \"pet-a-a\",\r\n \"type\": \"Microsoft.EventGrid/topics/privateEndpointConnections\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicname.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b4511d1a-a811-47e8-93c3-f5f7559d4be7\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink/providers/Microsoft.EventGrid/topics/topicName\",\r\n \"name\": \"topicName\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-7667.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d091ae17-8f61-4e2c-8395-264c98d65167\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1829/providers/Microsoft.EventGrid/topics/sdk-Topic-7667\",\r\n \"name\": \"sdk-Topic-7667\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://usertopic4.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"7f499083-12eb-40e7-96f2-3012206d6adf\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/userassignedmsitest1\": {\r\n \"principalId\": \"a2f990d8-2f0b-4266-a334-c57cf3bb51b7\",\r\n \"clientId\": \"4b0f3242-b99d-4632-87ae-939e9754ae24\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/usertopic4\",\r\n \"name\": \"usertopic4\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-9908.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"be4f6976-844a-4f0c-80ab-2fd38dc4fd9c\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8557/providers/Microsoft.EventGrid/topics/sdk-Topic-9908\",\r\n \"name\": \"sdk-Topic-9908\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-7738.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9b872e0f-851d-416b-9668-cd3bbcd7f7d8\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-781/providers/Microsoft.EventGrid/topics/sdk-Topic-7738\",\r\n \"name\": \"sdk-Topic-7738\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-8109.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"235ef7cb-abaa-4cf8-98ce-5d54c814a403\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7222/providers/Microsoft.EventGrid/topics/sdk-Topic-8109\",\r\n \"name\": \"sdk-Topic-8109\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://usertopicupdate.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f50d8e74-f2cc-4756-90a3-d9e0613403d9\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/userassignedmsitest1\": {\r\n \"principalId\": \"a2f990d8-2f0b-4266-a334-c57cf3bb51b7\",\r\n \"clientId\": \"4b0f3242-b99d-4632-87ae-939e9754ae24\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/usertopicupdate\",\r\n \"name\": \"usertopicupdate\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://usertopicupdate1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"4682da4e-cfec-473d-b2b7-bedde9006f32\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/usertopicupdate1\",\r\n \"name\": \"usertopicupdate1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://usertopicupdate2.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"93f05da0-470f-4628-b452-7fc065ca56ae\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/userassignedmsitest1\": {\r\n \"principalId\": \"a2f990d8-2f0b-4266-a334-c57cf3bb51b7\",\r\n \"clientId\": \"4b0f3242-b99d-4632-87ae-939e9754ae24\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/usertopicupdate2\",\r\n \"name\": \"usertopicupdate2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://useridentitytopic1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ebf4a72a-a388-48f1-b7a2-8a890711d923\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/userassignedmsitest1\": {\r\n \"principalId\": \"a2f990d8-2f0b-4266-a334-c57cf3bb51b7\",\r\n \"clientId\": \"4b0f3242-b99d-4632-87ae-939e9754ae24\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/useridentitytopic1\",\r\n \"name\": \"useridentitytopic1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://systemtopics1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"28f8aac8-0a7e-46ca-8fd3-5f01bbb2380a\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/userassignedmsitest1\": {\r\n \"principalId\": \"a2f990d8-2f0b-4266-a334-c57cf3bb51b7\",\r\n \"clientId\": \"4b0f3242-b99d-4632-87ae-939e9754ae24\"\r\n },\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/msi/providers/microsoft.managedidentity/userassignedidentities/userassignedmsitest2\": {\r\n \"principalId\": \"b44475fb-cb05-4023-8ce9-b470ef2e5501\",\r\n \"clientId\": \"38c40acd-ffe3-40f9-b5a9-b4bbb57f70b0\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/systemtopics1\",\r\n \"name\": \"systemtopics1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://mixedtopics1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"92b1639b-3378-4cac-a494-dd6af5026607\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"e72a5930-626e-4a87-992a-3de9834ecdd7\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/mixedtopics1\",\r\n \"name\": \"mixedtopics1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testmsitopic.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"dd94939c-e371-4da4-b050-fad3eb15b5ff\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/msi/providers/microsoft.managedidentity/userassignedidentities/userassignedmsitest1\": {\r\n \"principalId\": \"a2f990d8-2f0b-4266-a334-c57cf3bb51b7\",\r\n \"clientId\": \"4b0f3242-b99d-4632-87ae-939e9754ae24\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/testmsitopic\",\r\n \"name\": \"testmsitopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://kishptopic4.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"7e8931d3-da08-468d-842a-a12ee6d88caa\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/kishptopic4\",\r\n \"name\": \"kishptopic4\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testgroupmembership.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"5e9b351f-c8cc-4ecc-936f-849bf57ce891\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"3fe7cf75-da75-4c13-a528-af137dd7c701\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/userassignedmsitest1\": {\r\n \"principalId\": \"a2f990d8-2f0b-4266-a334-c57cf3bb51b7\",\r\n \"clientId\": \"4b0f3242-b99d-4632-87ae-939e9754ae24\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/testgroupmembership\",\r\n \"name\": \"testgroupmembership\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://centralustopic.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"4502ac3b-1a46-4c53-a100-82d7be9ff402\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/userassignedmsitest\": {\r\n \"principalId\": \"627b3605-44e9-4984-a4bf-d07d86debebd\",\r\n \"clientId\": \"75f3d6ef-091a-4f91-a196-ae827438098a\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/centralustopic\",\r\n \"name\": \"centralustopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-usce-dedicated-queues-topic.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"afd36bdf-cac2-4cd5-b13c-ccd283045855\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-usce/providers/Microsoft.EventGrid/topics/eg-euap-usce-dedicated-queues-topic\",\r\n \"name\": \"eg-euap-usce-dedicated-queues-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtag1fix.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"eeb20af6-5222-402b-abbe-6e620d81ee44\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [],\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"test1\": \"value1\",\r\n \"time1\": \"Donnerstag, 19. Mai 2022 00:02\",\r\n \"time3\": \"2022-05-21T02:05:15.165Z\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testTag1Fix\",\r\n \"name\": \"testTag1Fix\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtagswithtopic1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"e3d92508-9fef-4f3c-8c7b-3fff4f4a54a0\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [],\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"key1\": \"2022-05-24T18:14:22.242Z\",\r\n \"key2\": \"2023-04-24T18:14:22.2Z\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.EventGrid/topics/testTagsWithTopic1\",\r\n \"name\": \"testTagsWithTopic1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicwithnoidentity2.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c09e86f5-dbfe-4e6a-9fa1-090c2553e667\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [],\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.EventGrid/topics/topicWithNoIdentity2\",\r\n \"name\": \"topicWithNoIdentity2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testauce2kishp.australiacentral2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"417b625d-63f8-4e2b-93fa-58fdc575b79b\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"australiacentral2\",\r\n \"tags\": {\r\n \"aeg-partnernamespace-version\": \"v2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete/providers/Microsoft.EventGrid/topics/testauce2kishp\",\r\n \"name\": \"testauce2kishp\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://kishptestauc2runner.australiacentral2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1fe806ad-445e-4f01-8144-126e10d66973\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"australiacentral2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete/providers/Microsoft.EventGrid/topics/kishptestauc2runner\",\r\n \"name\": \"kishptestauc2runner\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicswedensouth.swedensouth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"db797f64-c2dc-448c-8d87-a5beaf9a06d5\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"sweden south\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/topics/topicswedensouth\",\r\n \"name\": \"topicswedensouth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5765/providers/Microsoft.EventGrid/topics/PSTestTopic-ps4188?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczU3NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNDE4OD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5347/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3421?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMzQyMT9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "60f60d24-a00e-41d1-90b0-1418076ae93c" + "803bc792-4a64-44bd-bed0-19f994c029d6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1417,7 +1355,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/E55E83BE-B5D0-4B52-9D04-6B61EDB2C96D?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/610CCE79-7A38-47E2-922A-13E4C4039EC6?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -1426,7 +1364,7 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E55E83BE-B5D0-4B52-9D04-6B61EDB2C96D?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/610CCE79-7A38-47E2-922A-13E4C4039EC6?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1435,19 +1373,19 @@ "14999" ], "x-ms-request-id": [ - "0c77ab71-a76d-43d2-acc0-ffa3adb063e9" + "58574fa1-1869-46dd-8d41-1a66c6628861" ], "x-ms-correlation-request-id": [ - "0c77ab71-a76d-43d2-acc0-ffa3adb063e9" + "58574fa1-1869-46dd-8d41-1a66c6628861" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212240Z:0c77ab71-a76d-43d2-acc0-ffa3adb063e9" + "WESTUS2:20221005T230533Z:58574fa1-1869-46dd-8d41-1a66c6628861" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:22:39 GMT" + "Wed, 05 Oct 2022 23:05:32 GMT" ], "Expires": [ "-1" @@ -1460,21 +1398,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E55E83BE-B5D0-4B52-9D04-6B61EDB2C96D?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRTU1RTgzQkUtQjVEMC00QjUyLTlEMDQtNkI2MUVEQjJDOTZEP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/610CCE79-7A38-47E2-922A-13E4C4039EC6?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNjEwQ0NFNzktN0EzOC00N0UyLTkyMkEtMTNFNEM0MDM5RUM2P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "60f60d24-a00e-41d1-90b0-1418076ae93c" + "803bc792-4a64-44bd-bed0-19f994c029d6" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1486,25 +1424,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "aaa64a64-ab78-4fcd-a10a-d3827eacd081" + "872bd641-ddae-479b-a8dd-c2855645350d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11998" ], "x-ms-correlation-request-id": [ - "d496e80c-38e7-4d55-a983-bda9ffb23b7d" + "5e13469f-0a33-42a7-b0f3-6f26d579aa6e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212250Z:d496e80c-38e7-4d55-a983-bda9ffb23b7d" + "WESTUS2:20221005T230543Z:5e13469f-0a33-42a7-b0f3-6f26d579aa6e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:22:49 GMT" + "Wed, 05 Oct 2022 23:05:43 GMT" ], "Content-Length": [ "286" @@ -1516,25 +1454,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E55E83BE-B5D0-4B52-9D04-6B61EDB2C96D?api-version=2021-12-01\",\r\n \"name\": \"e55e83be-b5d0-4b52-9d04-6b61edb2c96d\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/610CCE79-7A38-47E2-922A-13E4C4039EC6?api-version=2022-06-15\",\r\n \"name\": \"610cce79-7a38-47e2-922a-13e4c4039ec6\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/E55E83BE-B5D0-4B52-9D04-6B61EDB2C96D?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvRTU1RTgzQkUtQjVEMC00QjUyLTlEMDQtNkI2MUVEQjJDOTZEP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/610CCE79-7A38-47E2-922A-13E4C4039EC6?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNjEwQ0NFNzktN0EzOC00N0UyLTkyMkEtMTNFNEM0MDM5RUM2P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "60f60d24-a00e-41d1-90b0-1418076ae93c" + "803bc792-4a64-44bd-bed0-19f994c029d6" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1546,25 +1484,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "72a23aba-c257-4672-8e47-4bac02e26c47" + "3e11922b-9961-4cd8-9566-74b77401bddb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11997" ], "x-ms-correlation-request-id": [ - "4c1710b7-2138-48a5-b3b1-b08960451663" + "a7b2b2ef-194e-4ecc-aadd-4c465f476629" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212250Z:4c1710b7-2138-48a5-b3b1-b08960451663" + "WESTUS2:20221005T230543Z:a7b2b2ef-194e-4ecc-aadd-4c465f476629" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:22:49 GMT" + "Wed, 05 Oct 2022 23:05:43 GMT" ], "Expires": [ "-1" @@ -1577,22 +1515,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5765/providers/Microsoft.EventGrid/topics/PSTestTopic-ps5871?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczU3NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNTg3MT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5347/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6789?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNjc4OT9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ad21cbfa-8a7e-4d8e-96de-0d1f8a61554e" + "1e296957-fa28-435a-ab6e-be91c1cb30ee" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1601,6 +1538,7 @@ "137" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1615,28 +1553,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4FE2575F-5768-49A5-B323-C3A2AB9BD2FB?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/03A57CF3-5834-4030-9093-D43313BBB3B5?api-version=2022-06-15" ], "x-ms-request-id": [ - "aef0ad1c-3275-4fd6-b788-e0dec5606cd8" + "cd750291-9952-4463-bb3b-fb366bca4083" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "737fa953-3631-4c56-a8f2-5b39adbcc1e0" + "7ee6e16c-061e-4bdf-8281-60b8e1fc9b49" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212250Z:737fa953-3631-4c56-a8f2-5b39adbcc1e0" + "WESTUS2:20221005T230545Z:7ee6e16c-061e-4bdf-8281-60b8e1fc9b49" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:22:50 GMT" + "Wed, 05 Oct 2022 23:05:45 GMT" ], "Content-Length": [ "392" @@ -1648,25 +1586,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5765/providers/Microsoft.EventGrid/topics/PSTestTopic-ps5871\",\r\n \"name\": \"PSTestTopic-ps5871\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5347/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6789\",\r\n \"name\": \"PSTestTopic-ps6789\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4FE2575F-5768-49A5-B323-C3A2AB9BD2FB?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNEZFMjU3NUYtNTc2OC00OUE1LUIzMjMtQzNBMkFCOUJEMkZCP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/03A57CF3-5834-4030-9093-D43313BBB3B5?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMDNBNTdDRjMtNTgzNC00MDMwLTkwOTMtRDQzMzEzQkJCM0I1P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad21cbfa-8a7e-4d8e-96de-0d1f8a61554e" + "1e296957-fa28-435a-ab6e-be91c1cb30ee" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1678,25 +1616,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b2188106-5455-4a70-b9e6-65ccfa37c41f" + "2772a2c5-ada4-4945-848c-64d4c07b30ce" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11999" ], "x-ms-correlation-request-id": [ - "2e037971-21cf-45ac-b2b5-fb3171d53a3e" + "17ef1bba-7f0e-46a5-8254-a6d935b98bd2" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212300Z:2e037971-21cf-45ac-b2b5-fb3171d53a3e" + "WESTUS2:20221005T230555Z:17ef1bba-7f0e-46a5-8254-a6d935b98bd2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:23:00 GMT" + "Wed, 05 Oct 2022 23:05:55 GMT" ], "Content-Length": [ "286" @@ -1708,25 +1646,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4FE2575F-5768-49A5-B323-C3A2AB9BD2FB?api-version=2021-12-01\",\r\n \"name\": \"4fe2575f-5768-49a5-b323-c3a2ab9bd2fb\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/03A57CF3-5834-4030-9093-D43313BBB3B5?api-version=2022-06-15\",\r\n \"name\": \"03a57cf3-5834-4030-9093-d43313bbb3b5\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5765/providers/Microsoft.EventGrid/topics/PSTestTopic-ps5871?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczU3NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNTg3MT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5347/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6789?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNjc4OT9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad21cbfa-8a7e-4d8e-96de-0d1f8a61554e" + "1e296957-fa28-435a-ab6e-be91c1cb30ee" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1738,28 +1676,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b5f37566-baf5-40b1-8e81-9ca9df0b074b" + "f56fc654-3b6d-4af6-b007-e5f6448e8fd6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11998" ], "x-ms-correlation-request-id": [ - "b8caebd0-e298-40a6-8697-52ffcca4b916" + "13bd33ec-4832-43b7-8229-2ca91d809249" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212301Z:b8caebd0-e298-40a6-8697-52ffcca4b916" + "WESTUS2:20221005T230555Z:13bd33ec-4832-43b7-8229-2ca91d809249" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:23:00 GMT" + "Wed, 05 Oct 2022 23:05:55 GMT" ], "Content-Length": [ - "522" + "562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1768,28 +1706,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps5871.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"28f390e4-530d-456d-a298-374950d1eb2f\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5765/providers/Microsoft.EventGrid/topics/PSTestTopic-ps5871\",\r\n \"name\": \"PSTestTopic-ps5871\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps6789.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"cb768da8-3222-45fe-93eb-0ad28a5620a4\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5347/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6789\",\r\n \"name\": \"PSTestTopic-ps6789\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5765/providers/Microsoft.EventGrid/topics/PSTestTopic-ps5871?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczU3NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNTg3MT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5347/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6789?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNjc4OT9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0078a77e-ed9e-4cc4-b197-6a6d659e2270" + "f9aac534-836f-4d7f-9ee9-66a6fd1a76f2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1801,28 +1739,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2bf99661-c1e2-41de-8491-3717ce9f8bcc" + "9a2dd0bc-b663-47a2-855f-f19bd5ed8785" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11998" ], "x-ms-correlation-request-id": [ - "9bd8d326-ba3d-4470-a8c0-786d09898133" + "9fea7596-8b09-418c-a257-1a2db0ad78ce" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212301Z:9bd8d326-ba3d-4470-a8c0-786d09898133" + "WESTUS2:20221005T230556Z:9fea7596-8b09-418c-a257-1a2db0ad78ce" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:23:00 GMT" + "Wed, 05 Oct 2022 23:05:55 GMT" ], "Content-Length": [ - "522" + "562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1831,28 +1769,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps5871.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"28f390e4-530d-456d-a298-374950d1eb2f\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5765/providers/Microsoft.EventGrid/topics/PSTestTopic-ps5871\",\r\n \"name\": \"PSTestTopic-ps5871\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps6789.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"cb768da8-3222-45fe-93eb-0ad28a5620a4\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5347/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6789\",\r\n \"name\": \"PSTestTopic-ps6789\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5765/providers/Microsoft.EventGrid/topics/PSTestTopic-ps5871?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczU3NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNTg3MT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5347/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6789?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNjc4OT9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0078a77e-ed9e-4cc4-b197-6a6d659e2270" + "f9aac534-836f-4d7f-9ee9-66a6fd1a76f2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1861,7 +1799,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/A575D537-0F39-4BBE-BB33-D5D65DD06028?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/9B68B5A4-8E2D-4C29-85A4-9FF73932CA24?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -1870,28 +1808,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/A575D537-0F39-4BBE-BB33-D5D65DD06028?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/9B68B5A4-8E2D-4C29-85A4-9FF73932CA24?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-request-id": [ - "d3a04627-b29c-4822-8e06-155edbf21f0a" + "5f6cf5ba-688a-4a03-bfd1-fd8d88697317" ], "x-ms-correlation-request-id": [ - "d3a04627-b29c-4822-8e06-155edbf21f0a" + "5f6cf5ba-688a-4a03-bfd1-fd8d88697317" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212301Z:d3a04627-b29c-4822-8e06-155edbf21f0a" + "WESTUS2:20221005T230557Z:5f6cf5ba-688a-4a03-bfd1-fd8d88697317" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:23:01 GMT" + "Wed, 05 Oct 2022 23:05:56 GMT" ], "Expires": [ "-1" @@ -1904,21 +1842,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/A575D537-0F39-4BBE-BB33-D5D65DD06028?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvQTU3NUQ1MzctMEYzOS00QkJFLUJCMzMtRDVENjVERDA2MDI4P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/9B68B5A4-8E2D-4C29-85A4-9FF73932CA24?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvOUI2OEI1QTQtOEUyRC00QzI5LTg1QTQtOUZGNzM5MzJDQTI0P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0078a77e-ed9e-4cc4-b197-6a6d659e2270" + "f9aac534-836f-4d7f-9ee9-66a6fd1a76f2" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1930,25 +1868,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fe8e8487-beaf-4207-b9bd-82404ccd12ab" + "800d9e3c-a553-49bf-8bcc-23b2614ecd04" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11997" ], "x-ms-correlation-request-id": [ - "e8d90f3a-f9d0-4580-9c1f-aafa454ad6a7" + "d9c4fb81-5bb8-4c0c-8377-bdd1de9ce47b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212311Z:e8d90f3a-f9d0-4580-9c1f-aafa454ad6a7" + "WESTUS2:20221005T230607Z:d9c4fb81-5bb8-4c0c-8377-bdd1de9ce47b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:23:10 GMT" + "Wed, 05 Oct 2022 23:06:06 GMT" ], "Content-Length": [ "286" @@ -1960,25 +1898,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/A575D537-0F39-4BBE-BB33-D5D65DD06028?api-version=2021-12-01\",\r\n \"name\": \"a575d537-0f39-4bbe-bb33-d5d65dd06028\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/9B68B5A4-8E2D-4C29-85A4-9FF73932CA24?api-version=2022-06-15\",\r\n \"name\": \"9b68b5a4-8e2d-4c29-85a4-9ff73932ca24\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/A575D537-0F39-4BBE-BB33-D5D65DD06028?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvQTU3NUQ1MzctMEYzOS00QkJFLUJCMzMtRDVENjVERDA2MDI4P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/9B68B5A4-8E2D-4C29-85A4-9FF73932CA24?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvOUI2OEI1QTQtOEUyRC00QzI5LTg1QTQtOUZGNzM5MzJDQTI0P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0078a77e-ed9e-4cc4-b197-6a6d659e2270" + "f9aac534-836f-4d7f-9ee9-66a6fd1a76f2" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1990,25 +1928,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "53bfb0e0-0a97-4dc8-a72a-6fb610051dfa" + "bcbb76a3-0b08-403e-9244-0a27a72e5d26" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11996" ], "x-ms-correlation-request-id": [ - "85764197-7d19-4ffb-84f4-b55f963ea9d2" + "0ba27a2b-7a90-4623-ba1f-56b6c74209a7" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212311Z:85764197-7d19-4ffb-84f4-b55f963ea9d2" + "WESTUS2:20221005T230607Z:0ba27a2b-7a90-4623-ba1f-56b6c74209a7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:23:11 GMT" + "Wed, 05 Oct 2022 23:06:06 GMT" ], "Expires": [ "-1" @@ -2021,24 +1959,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps113/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3601?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczExMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3MvUFNUZXN0VG9waWMtcHMzNjAxP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7060/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6132?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczcwNjAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNjEzMj9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a5f06ec9-0e7a-4c74-8528-aa82ee2b0ea7" + "097c4535-a131-4d02-b17b-d0268c670478" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2047,7 +1985,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/ABA6A712-C710-4BCF-8B33-5E13B983325B?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/E658BEFD-B004-4BE0-8D6F-A2DF3D127F79?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -2056,28 +1994,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/ABA6A712-C710-4BCF-8B33-5E13B983325B?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E658BEFD-B004-4BE0-8D6F-A2DF3D127F79?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-request-id": [ - "87530b7a-884e-4fd6-ba05-d36481305ec1" + "54f9c99a-0ec0-4e4c-8324-6bdd7c075e09" ], "x-ms-correlation-request-id": [ - "87530b7a-884e-4fd6-ba05-d36481305ec1" + "54f9c99a-0ec0-4e4c-8324-6bdd7c075e09" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212311Z:87530b7a-884e-4fd6-ba05-d36481305ec1" + "WESTUS2:20221005T230608Z:54f9c99a-0ec0-4e4c-8324-6bdd7c075e09" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:23:11 GMT" + "Wed, 05 Oct 2022 23:06:07 GMT" ], "Expires": [ "-1" @@ -2090,21 +2028,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/ABA6A712-C710-4BCF-8B33-5E13B983325B?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvQUJBNkE3MTItQzcxMC00QkNGLThCMzMtNUUxM0I5ODMzMjVCP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E658BEFD-B004-4BE0-8D6F-A2DF3D127F79?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRTY1OEJFRkQtQjAwNC00QkUwLThENkYtQTJERjNEMTI3Rjc5P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a5f06ec9-0e7a-4c74-8528-aa82ee2b0ea7" + "097c4535-a131-4d02-b17b-d0268c670478" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2116,25 +2054,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "81901614-7227-4fb5-aad3-9914da6026da" + "2d4889d7-c1a2-42a8-9b37-05c374f48895" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11999" ], "x-ms-correlation-request-id": [ - "9811717b-7e86-4ffa-a413-1d912f278f57" + "72078837-a516-4d03-bced-f6b317e929f8" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212322Z:9811717b-7e86-4ffa-a413-1d912f278f57" + "WESTUS2:20221005T230618Z:72078837-a516-4d03-bced-f6b317e929f8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:23:21 GMT" + "Wed, 05 Oct 2022 23:06:17 GMT" ], "Content-Length": [ "286" @@ -2146,25 +2084,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/ABA6A712-C710-4BCF-8B33-5E13B983325B?api-version=2021-12-01\",\r\n \"name\": \"aba6a712-c710-4bcf-8b33-5e13b983325b\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E658BEFD-B004-4BE0-8D6F-A2DF3D127F79?api-version=2022-06-15\",\r\n \"name\": \"e658befd-b004-4be0-8d6f-a2df3d127f79\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/ABA6A712-C710-4BCF-8B33-5E13B983325B?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvQUJBNkE3MTItQzcxMC00QkNGLThCMzMtNUUxM0I5ODMzMjVCP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/E658BEFD-B004-4BE0-8D6F-A2DF3D127F79?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvRTY1OEJFRkQtQjAwNC00QkUwLThENkYtQTJERjNEMTI3Rjc5P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a5f06ec9-0e7a-4c74-8528-aa82ee2b0ea7" + "097c4535-a131-4d02-b17b-d0268c670478" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2176,25 +2114,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4748bc34-6d24-48cc-a9c2-0bdc0148543a" + "0e9d1f63-2dec-495b-9964-952223b7ee36" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11998" ], "x-ms-correlation-request-id": [ - "ebf5edb5-c46a-46c4-ad10-1c5740076cc4" + "b45ebb78-9c29-4f4e-af56-6a604a09b409" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212322Z:ebf5edb5-c46a-46c4-ad10-1c5740076cc4" + "WESTUS2:20221005T230618Z:b45ebb78-9c29-4f4e-af56-6a604a09b409" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:23:21 GMT" + "Wed, 05 Oct 2022 23:06:18 GMT" ], "Expires": [ "-1" @@ -2207,24 +2145,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps113/providers/Microsoft.EventGrid/topics/PSTestTopic-ps4782?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczExMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3MvUFNUZXN0VG9waWMtcHM0NzgyP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7060/providers/Microsoft.EventGrid/topics/PSTestTopic-ps9114?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczcwNjAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzOTExND9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8026fb43-5881-4177-889a-07d1a91da99a" + "03bcde8c-610f-4346-835f-7c2b9d889a34" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2233,7 +2171,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/F8EA7056-1B0E-40DD-B953-1BFFA5F823B5?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/3B273A06-7125-480D-8B05-D54057D06F5A?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -2242,28 +2180,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/F8EA7056-1B0E-40DD-B953-1BFFA5F823B5?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/3B273A06-7125-480D-8B05-D54057D06F5A?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14998" ], "x-ms-request-id": [ - "f0afc0dd-cbe0-4cce-aaae-a8192903156c" + "609150aa-603c-4395-8a2c-12aae91f87cd" ], "x-ms-correlation-request-id": [ - "f0afc0dd-cbe0-4cce-aaae-a8192903156c" + "609150aa-603c-4395-8a2c-12aae91f87cd" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212322Z:f0afc0dd-cbe0-4cce-aaae-a8192903156c" + "WESTUS2:20221005T230620Z:609150aa-603c-4395-8a2c-12aae91f87cd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:23:21 GMT" + "Wed, 05 Oct 2022 23:06:19 GMT" ], "Expires": [ "-1" @@ -2276,21 +2214,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/F8EA7056-1B0E-40DD-B953-1BFFA5F823B5?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRjhFQTcwNTYtMUIwRS00MERELUI5NTMtMUJGRkE1RjgyM0I1P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/3B273A06-7125-480D-8B05-D54057D06F5A?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvM0IyNzNBMDYtNzEyNS00ODBELThCMDUtRDU0MDU3RDA2RjVBP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8026fb43-5881-4177-889a-07d1a91da99a" + "03bcde8c-610f-4346-835f-7c2b9d889a34" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2302,25 +2240,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7d8d7307-3f06-452e-8740-0bd23387c12b" + "ad4269e5-b116-4a93-a03e-6d2cf200479a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11997" ], "x-ms-correlation-request-id": [ - "0e651bd7-5a1c-4879-a0bd-72e14e203319" + "2e904e58-e7b4-46bf-8425-6a1f7a942167" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212332Z:0e651bd7-5a1c-4879-a0bd-72e14e203319" + "WESTUS2:20221005T230630Z:2e904e58-e7b4-46bf-8425-6a1f7a942167" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:23:31 GMT" + "Wed, 05 Oct 2022 23:06:30 GMT" ], "Content-Length": [ "286" @@ -2332,25 +2270,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/F8EA7056-1B0E-40DD-B953-1BFFA5F823B5?api-version=2021-12-01\",\r\n \"name\": \"f8ea7056-1b0e-40dd-b953-1bffa5f823b5\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/3B273A06-7125-480D-8B05-D54057D06F5A?api-version=2022-06-15\",\r\n \"name\": \"3b273a06-7125-480d-8b05-d54057d06f5a\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/F8EA7056-1B0E-40DD-B953-1BFFA5F823B5?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvRjhFQTcwNTYtMUIwRS00MERELUI5NTMtMUJGRkE1RjgyM0I1P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/3B273A06-7125-480D-8B05-D54057D06F5A?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvM0IyNzNBMDYtNzEyNS00ODBELThCMDUtRDU0MDU3RDA2RjVBP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8026fb43-5881-4177-889a-07d1a91da99a" + "03bcde8c-610f-4346-835f-7c2b9d889a34" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2362,25 +2300,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "739e437e-9d69-4245-a7d4-facf8ea04860" + "f112ece3-f30f-4605-9cac-eee59eb137b4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11996" ], "x-ms-correlation-request-id": [ - "dc90688e-f2ac-4b4e-8d79-bda5156bcf07" + "b7c4526a-6411-4382-8c58-0325da5561db" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212332Z:dc90688e-f2ac-4b4e-8d79-bda5156bcf07" + "WESTUS2:20221005T230630Z:b7c4526a-6411-4382-8c58-0325da5561db" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:23:31 GMT" + "Wed, 05 Oct 2022 23:06:30 GMT" ], "Expires": [ "-1" @@ -2393,24 +2331,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5765/providers/Microsoft.EventGrid/topics?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczU3NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5347/providers/Microsoft.EventGrid/topics?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40401c17-82bb-4b16-a837-f6f47bce8e76" + "8534c3f8-be03-4022-bc95-82b25ffc9e84" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2419,16 +2357,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11999" ], "x-ms-request-id": [ - "3cb167ce-fa7f-49e8-90de-97ba51cfa988" + "73bf7e26-341e-4d4d-94ad-5d2143a5672c" ], "x-ms-correlation-request-id": [ - "3cb167ce-fa7f-49e8-90de-97ba51cfa988" + "73bf7e26-341e-4d4d-94ad-5d2143a5672c" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212332Z:3cb167ce-fa7f-49e8-90de-97ba51cfa988" + "WESTUS2:20221005T230630Z:73bf7e26-341e-4d4d-94ad-5d2143a5672c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2437,7 +2375,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:23:31 GMT" + "Wed, 05 Oct 2022 23:06:29 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2453,24 +2391,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps5765?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczU3NjU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps5347?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczUzNDc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "037afecd-1a1e-4d14-b604-da468bcb45d5" + "80456dc0-6954-4bb9-90fa-b7c3f8e88d75" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2479,22 +2417,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzU3NjUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzUzNDctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-request-id": [ - "335e5a15-13ca-422c-b086-e98e5180bfa1" + "20056267-e67e-43d5-9950-12184b78cdfe" ], "x-ms-correlation-request-id": [ - "335e5a15-13ca-422c-b086-e98e5180bfa1" + "20056267-e67e-43d5-9950-12184b78cdfe" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212332Z:335e5a15-13ca-422c-b086-e98e5180bfa1" + "WESTUS2:20221005T230631Z:20056267-e67e-43d5-9950-12184b78cdfe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2503,7 +2441,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:23:32 GMT" + "Wed, 05 Oct 2022 23:06:30 GMT" ], "Expires": [ "-1" @@ -2516,18 +2454,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzU3NjUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpVM05qVXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzUzNDctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpVek5EY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2539,13 +2477,13 @@ "11999" ], "x-ms-request-id": [ - "d22c529b-dc4d-44a6-ba3f-3d84edc0f982" + "b7093135-4fe1-4b79-a242-5130601e0d76" ], "x-ms-correlation-request-id": [ - "d22c529b-dc4d-44a6-ba3f-3d84edc0f982" + "b7093135-4fe1-4b79-a242-5130601e0d76" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212347Z:d22c529b-dc4d-44a6-ba3f-3d84edc0f982" + "WESTUS2:20221005T230646Z:b7093135-4fe1-4b79-a242-5130601e0d76" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2554,7 +2492,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:23:47 GMT" + "Wed, 05 Oct 2022 23:06:46 GMT" ], "Expires": [ "-1" @@ -2567,18 +2505,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzU3NjUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpVM05qVXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzUzNDctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpVek5EY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2590,13 +2528,13 @@ "11998" ], "x-ms-request-id": [ - "c1a236e6-cea8-4ea8-bb31-ec5d8e8ff594" + "3667e937-66bb-4915-85e3-43e13f953385" ], "x-ms-correlation-request-id": [ - "c1a236e6-cea8-4ea8-bb31-ec5d8e8ff594" + "3667e937-66bb-4915-85e3-43e13f953385" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212348Z:c1a236e6-cea8-4ea8-bb31-ec5d8e8ff594" + "WESTUS2:20221005T230646Z:3667e937-66bb-4915-85e3-43e13f953385" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2605,7 +2543,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:23:47 GMT" + "Wed, 05 Oct 2022 23:06:46 GMT" ], "Expires": [ "-1" @@ -2618,24 +2556,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps113?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczExMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps7060?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczcwNjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b15e01d0-5bc5-4681-acf3-5068c14dea06" + "af70be52-1891-4140-8500-26c323db1abe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2644,22 +2582,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzExMy1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzcwNjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-request-id": [ - "60c870b0-acfe-4956-b979-4c49ff476d4e" + "3f358fca-93d9-46a2-a97f-6a2ffda3863a" ], "x-ms-correlation-request-id": [ - "60c870b0-acfe-4956-b979-4c49ff476d4e" + "3f358fca-93d9-46a2-a97f-6a2ffda3863a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212348Z:60c870b0-acfe-4956-b979-4c49ff476d4e" + "WESTUS2:20221005T230648Z:3f358fca-93d9-46a2-a97f-6a2ffda3863a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2668,7 +2606,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:23:48 GMT" + "Wed, 05 Oct 2022 23:06:47 GMT" ], "Expires": [ "-1" @@ -2681,18 +2619,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzExMy1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpFeE15MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzcwNjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpjd05qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2701,16 +2639,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-request-id": [ - "658fe114-1344-4d6c-8efc-5fe1420e9f66" + "b7e33229-27b0-48f8-b949-1c84b970f1bb" ], "x-ms-correlation-request-id": [ - "658fe114-1344-4d6c-8efc-5fe1420e9f66" + "b7e33229-27b0-48f8-b949-1c84b970f1bb" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212403Z:658fe114-1344-4d6c-8efc-5fe1420e9f66" + "WESTUS2:20221005T230703Z:b7e33229-27b0-48f8-b949-1c84b970f1bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2719,7 +2657,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:24:02 GMT" + "Wed, 05 Oct 2022 23:07:02 GMT" ], "Expires": [ "-1" @@ -2732,18 +2670,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzExMy1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpFeE15MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzcwNjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpjd05qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2752,16 +2690,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-request-id": [ - "b0255663-0082-4a2d-8363-738ff27c7715" + "71584464-f8fe-47d2-91a4-762a3363d2bc" ], "x-ms-correlation-request-id": [ - "b0255663-0082-4a2d-8363-738ff27c7715" + "71584464-f8fe-47d2-91a4-762a3363d2bc" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212403Z:b0255663-0082-4a2d-8363-738ff27c7715" + "WESTUS2:20221005T230703Z:71584464-f8fe-47d2-91a4-762a3363d2bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2770,7 +2708,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:24:02 GMT" + "Wed, 05 Oct 2022 23:07:02 GMT" ], "Expires": [ "-1" @@ -2785,12 +2723,12 @@ ], "Names": { "": [ - "ps4188", - "ps3601", - "ps4782", - "ps5871", - "ps5765", - "ps113" + "ps3421", + "ps6132", + "ps9114", + "ps6789", + "ps5347", + "ps7060" ] }, "Variables": { diff --git a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.TopicTests/EventGrid_TopicsGetKey.json b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.TopicTests/EventGrid_TopicsGetKey.json index 32ac7677b4e0..8a939278dbec 100644 --- a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.TopicTests/EventGrid_TopicsGetKey.json +++ b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.TopicTests/EventGrid_TopicsGetKey.json @@ -1,22 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps2340?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczIzNDA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps5323?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczUzMjM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "83c3e3b8-eb89-42e8-aa31-7c3ab145e175" + "2c9b6808-ceca-4d2c-a907-c4335e6f5fe1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,6 +24,7 @@ "35" ] }, + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "3b6ff1a0-9fb7-465c-90ba-a682fecfb930" + "28be2005-6b47-4a67-ae95-8abbdc407d4d" ], "x-ms-correlation-request-id": [ - "3b6ff1a0-9fb7-465c-90ba-a682fecfb930" + "28be2005-6b47-4a67-ae95-8abbdc407d4d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212115Z:3b6ff1a0-9fb7-465c-90ba-a682fecfb930" + "WESTUS2:20221005T230403Z:28be2005-6b47-4a67-ae95-8abbdc407d4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:21:15 GMT" + "Wed, 05 Oct 2022 23:04:02 GMT" ], "Content-Length": [ "186" @@ -63,26 +63,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2340\",\r\n \"name\": \"RGName-ps2340\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5323\",\r\n \"name\": \"RGName-ps5323\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2514?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczIzNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMjUxND9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5323/providers/Microsoft.EventGrid/topics/PSTestTopic-ps4051?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzMjMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNDA1MT9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4cd830eb-851a-4e42-b5e7-dc6a87562e0d" + "1b91b99a-bc63-4fad-a06b-bfb9899f21c2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -91,6 +90,7 @@ "137" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -105,10 +105,10 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/0E9F00E2-CE70-49BE-A4DE-765D02EBA449?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4B0EB214-6775-4F72-8397-EF45A265602C?api-version=2022-06-15" ], "x-ms-request-id": [ - "2294a54f-07a3-4d19-b1f8-93197b906308" + "92d107dd-9a26-450c-8ff6-1621a26f76bb" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -117,16 +117,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "f9ed3057-f8a4-471f-b816-bdcb3501666c" + "d487a2bd-1090-4b6f-99ed-e15c1accb4c5" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212117Z:f9ed3057-f8a4-471f-b816-bdcb3501666c" + "WESTUS2:20221005T230404Z:d487a2bd-1090-4b6f-99ed-e15c1accb4c5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:21:16 GMT" + "Wed, 05 Oct 2022 23:04:04 GMT" ], "Content-Length": [ "392" @@ -138,25 +138,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2514\",\r\n \"name\": \"PSTestTopic-ps2514\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5323/providers/Microsoft.EventGrid/topics/PSTestTopic-ps4051\",\r\n \"name\": \"PSTestTopic-ps4051\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/0E9F00E2-CE70-49BE-A4DE-765D02EBA449?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMEU5RjAwRTItQ0U3MC00OUJFLUE0REUtNzY1RDAyRUJBNDQ5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4B0EB214-6775-4F72-8397-EF45A265602C?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNEIwRUIyMTQtNjc3NS00RjcyLTgzOTctRUY0NUEyNjU2MDJDP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4cd830eb-851a-4e42-b5e7-dc6a87562e0d" + "1b91b99a-bc63-4fad-a06b-bfb9899f21c2" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -168,7 +168,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "87460e5f-78ca-4504-ac8a-d00f4b86dca7" + "80c93c3f-716a-4b71-9c3e-6e8f743f6742" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -177,16 +177,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "d5ef2da8-efae-4b8c-b41a-23f043184001" + "360550ca-90fa-436f-b207-cb848694af3e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212127Z:d5ef2da8-efae-4b8c-b41a-23f043184001" + "WESTUS2:20221005T230414Z:360550ca-90fa-436f-b207-cb848694af3e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:21:27 GMT" + "Wed, 05 Oct 2022 23:04:14 GMT" ], "Content-Length": [ "286" @@ -198,25 +198,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/0E9F00E2-CE70-49BE-A4DE-765D02EBA449?api-version=2021-12-01\",\r\n \"name\": \"0e9f00e2-ce70-49be-a4de-765d02eba449\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4B0EB214-6775-4F72-8397-EF45A265602C?api-version=2022-06-15\",\r\n \"name\": \"4b0eb214-6775-4f72-8397-ef45a265602c\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2514?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczIzNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMjUxND9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5323/providers/Microsoft.EventGrid/topics/PSTestTopic-ps4051?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzMjMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNDA1MT9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4cd830eb-851a-4e42-b5e7-dc6a87562e0d" + "1b91b99a-bc63-4fad-a06b-bfb9899f21c2" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -228,7 +228,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "68e8e6c7-21f1-49e9-ba20-7481ff76e31d" + "df77598a-0bdb-4d99-aa45-ded84a774ee8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -237,19 +237,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "2cc58c1d-f226-40c1-bc34-59334757b038" + "d64fe7d8-1bd1-4707-9ed7-369c7229f1b4" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212127Z:2cc58c1d-f226-40c1-bc34-59334757b038" + "WESTUS2:20221005T230415Z:d64fe7d8-1bd1-4707-9ed7-369c7229f1b4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:21:27 GMT" + "Wed, 05 Oct 2022 23:04:14 GMT" ], "Content-Length": [ - "522" + "562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -258,28 +258,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps2514.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"fdd2dfd8-e8fd-44d8-8554-d7b6c2b02d42\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2514\",\r\n \"name\": \"PSTestTopic-ps2514\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps4051.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"28ebdee5-f964-47f0-9598-90907d06f23f\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5323/providers/Microsoft.EventGrid/topics/PSTestTopic-ps4051\",\r\n \"name\": \"PSTestTopic-ps4051\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2514?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczIzNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMjUxND9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5323/providers/Microsoft.EventGrid/topics/PSTestTopic-ps4051?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzMjMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNDA1MT9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9aff2c82-24fa-4f26-8b17-d44a00401e9b" + "e955073d-ede9-489a-b1a0-49fe16c03760" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -291,28 +291,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "43b9c20b-d42e-4257-97c0-1203c17044b4" + "4460411c-583e-4de3-ba50-7f7321496e41" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-correlation-request-id": [ - "263be839-c58d-44cc-9ce3-42b43f58b255" + "c51fb3b8-ae09-4c6d-87d6-942daa0771e9" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212128Z:263be839-c58d-44cc-9ce3-42b43f58b255" + "WESTUS2:20221005T230416Z:c51fb3b8-ae09-4c6d-87d6-942daa0771e9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:21:28 GMT" + "Wed, 05 Oct 2022 23:04:15 GMT" ], "Content-Length": [ - "522" + "562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -321,28 +321,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps2514.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"fdd2dfd8-e8fd-44d8-8554-d7b6c2b02d42\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2514\",\r\n \"name\": \"PSTestTopic-ps2514\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps4051.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"28ebdee5-f964-47f0-9598-90907d06f23f\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5323/providers/Microsoft.EventGrid/topics/PSTestTopic-ps4051\",\r\n \"name\": \"PSTestTopic-ps4051\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2514/listKeys?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczIzNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMjUxNC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5323/providers/Microsoft.EventGrid/topics/PSTestTopic-ps4051/listKeys?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzMjMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNDA1MS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b1b4e2d4-7529-4835-8e3b-ba13097fbb43" + "ba6729de-d524-422e-8ac3-f1f164ed12ab" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -354,7 +354,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "072c4f8e-10ce-4ef8-9add-53f9a92dc7d1" + "f1c0ae09-3f39-418b-b5bd-818086e1c953" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -363,16 +363,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "20e9534f-165b-46d0-82c9-f43b4e95f236" + "c9c2c12c-7f7c-4ad5-a9fe-476fed74a649" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212127Z:20e9534f-165b-46d0-82c9-f43b4e95f236" + "WESTUS2:20221005T230415Z:c9c2c12c-7f7c-4ad5-a9fe-476fed74a649" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:21:27 GMT" + "Wed, 05 Oct 2022 23:04:15 GMT" ], "Content-Length": [ "109" @@ -384,28 +384,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"key1\": \"5MSxUKe4gCzruzMeeLvvn5vA+l+INZLQc/HDEzhlKmw=\",\r\n \"key2\": \"1k66HQO62gZYBU+4ACllrSi4OtpdbSsSW3fl9zgzr1k=\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"bmik3O7pKVgCyAwG8NDgkgnjtgGjtsweM9pYKGw+KDo=\",\r\n \"key2\": \"JYm0iCOL/Mcu2ZNCD6VPGnWDL2bL96A4Oz9WL9HvBX8=\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2514/listKeys?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczIzNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMjUxNC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5323/providers/Microsoft.EventGrid/topics/PSTestTopic-ps4051/listKeys?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzMjMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNDA1MS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ecd90ea9-58b5-48ba-99df-b61b86a217f4" + "88cd865f-7d59-4948-9e4a-1b157d7fa4f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -417,25 +417,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fc656e0d-7001-4804-9827-535c6e7fd62a" + "21bf5d21-55d9-4905-ab07-aeecc7b32209" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "f8109109-282c-48eb-8619-eecd3e2729e2" + "c17233cf-f395-4397-bb16-117df1039e12" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212128Z:f8109109-282c-48eb-8619-eecd3e2729e2" + "WESTUS2:20221005T230416Z:c17233cf-f395-4397-bb16-117df1039e12" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:21:28 GMT" + "Wed, 05 Oct 2022 23:04:15 GMT" ], "Content-Length": [ "109" @@ -447,28 +447,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"key1\": \"5MSxUKe4gCzruzMeeLvvn5vA+l+INZLQc/HDEzhlKmw=\",\r\n \"key2\": \"1k66HQO62gZYBU+4ACllrSi4OtpdbSsSW3fl9zgzr1k=\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"bmik3O7pKVgCyAwG8NDgkgnjtgGjtsweM9pYKGw+KDo=\",\r\n \"key2\": \"JYm0iCOL/Mcu2ZNCD6VPGnWDL2bL96A4Oz9WL9HvBX8=\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2514/listKeys?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczIzNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMjUxNC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5323/providers/Microsoft.EventGrid/topics/PSTestTopic-ps4051/listKeys?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzMjMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNDA1MS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9aff2c82-24fa-4f26-8b17-d44a00401e9b" + "e955073d-ede9-489a-b1a0-49fe16c03760" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -480,25 +480,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fef278ca-e771-46c0-93e7-3a80f6fa89b2" + "7302f9fe-a4b0-4f58-94e1-a991b7b2f225" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "6a6f732e-9e16-49c1-b51d-7d19a2858bf3" + "7ac3fb4f-b929-428b-85e3-43f9bc7cc3be" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212128Z:6a6f732e-9e16-49c1-b51d-7d19a2858bf3" + "WESTUS2:20221005T230417Z:7ac3fb4f-b929-428b-85e3-43f9bc7cc3be" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:21:28 GMT" + "Wed, 05 Oct 2022 23:04:16 GMT" ], "Content-Length": [ "109" @@ -510,28 +510,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"key1\": \"5MSxUKe4gCzruzMeeLvvn5vA+l+INZLQc/HDEzhlKmw=\",\r\n \"key2\": \"1k66HQO62gZYBU+4ACllrSi4OtpdbSsSW3fl9zgzr1k=\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"bmik3O7pKVgCyAwG8NDgkgnjtgGjtsweM9pYKGw+KDo=\",\r\n \"key2\": \"JYm0iCOL/Mcu2ZNCD6VPGnWDL2bL96A4Oz9WL9HvBX8=\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2514?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczIzNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMjUxND9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5323/providers/Microsoft.EventGrid/topics/PSTestTopic-ps4051?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzMjMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNDA1MT9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "237bef3c-dd57-4709-b22a-2f2994395d58" + "9c223876-447b-490b-ac7c-3150164f64e8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -540,7 +540,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/0804A334-B77C-4645-B03F-AE70F22376F3?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/70660E1A-D899-49EF-AF16-FFBC0102CC9D?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -549,28 +549,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/0804A334-B77C-4645-B03F-AE70F22376F3?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/70660E1A-D899-49EF-AF16-FFBC0102CC9D?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-request-id": [ - "8c01697c-611d-410f-998a-85ceb10133b4" + "82ebe7ec-3539-452a-a351-97891fc93dda" ], "x-ms-correlation-request-id": [ - "8c01697c-611d-410f-998a-85ceb10133b4" + "82ebe7ec-3539-452a-a351-97891fc93dda" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212128Z:8c01697c-611d-410f-998a-85ceb10133b4" + "WESTUS2:20221005T230417Z:82ebe7ec-3539-452a-a351-97891fc93dda" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:21:28 GMT" + "Wed, 05 Oct 2022 23:04:17 GMT" ], "Expires": [ "-1" @@ -583,21 +583,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/0804A334-B77C-4645-B03F-AE70F22376F3?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMDgwNEEzMzQtQjc3Qy00NjQ1LUIwM0YtQUU3MEYyMjM3NkYzP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/70660E1A-D899-49EF-AF16-FFBC0102CC9D?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNzA2NjBFMUEtRDg5OS00OUVGLUFGMTYtRkZCQzAxMDJDQzlEP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "237bef3c-dd57-4709-b22a-2f2994395d58" + "9c223876-447b-490b-ac7c-3150164f64e8" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -609,25 +609,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "76d83820-7c7f-44b5-852e-ab84300e6a17" + "c029aba6-bf86-4314-9d45-2f55c51bc3e1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-correlation-request-id": [ - "08466744-372d-4b28-93aa-0b4fe3c191da" + "200aa0a6-4cba-452f-bf22-e536a42a7f16" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212138Z:08466744-372d-4b28-93aa-0b4fe3c191da" + "WESTUS2:20221005T230427Z:200aa0a6-4cba-452f-bf22-e536a42a7f16" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:21:38 GMT" + "Wed, 05 Oct 2022 23:04:27 GMT" ], "Content-Length": [ "286" @@ -639,25 +639,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/0804A334-B77C-4645-B03F-AE70F22376F3?api-version=2021-12-01\",\r\n \"name\": \"0804a334-b77c-4645-b03f-ae70f22376f3\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/70660E1A-D899-49EF-AF16-FFBC0102CC9D?api-version=2022-06-15\",\r\n \"name\": \"70660e1a-d899-49ef-af16-ffbc0102cc9d\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/0804A334-B77C-4645-B03F-AE70F22376F3?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMDgwNEEzMzQtQjc3Qy00NjQ1LUIwM0YtQUU3MEYyMjM3NkYzP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/70660E1A-D899-49EF-AF16-FFBC0102CC9D?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNzA2NjBFMUEtRDg5OS00OUVGLUFGMTYtRkZCQzAxMDJDQzlEP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "237bef3c-dd57-4709-b22a-2f2994395d58" + "9c223876-447b-490b-ac7c-3150164f64e8" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -669,25 +669,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4df8f694-c395-43cf-a017-32b4a90c2678" + "bd9b5136-4144-4978-a431-b19962a080bd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-correlation-request-id": [ - "75b54c27-0378-4855-9dfc-55345902abc0" + "a0045936-0c78-4513-a1d1-95e24840d576" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212138Z:75b54c27-0378-4855-9dfc-55345902abc0" + "WESTUS2:20221005T230427Z:a0045936-0c78-4513-a1d1-95e24840d576" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:21:38 GMT" + "Wed, 05 Oct 2022 23:04:27 GMT" ], "Expires": [ "-1" @@ -700,24 +700,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps2340?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczIzNDA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps5323?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczUzMjM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "23434039-2f86-4476-a8c5-8fa00c15a7c7" + "7bc73a22-9724-4a57-ad65-49192a2c5258" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -726,7 +726,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzIzNDAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzUzMjMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -735,13 +735,13 @@ "14999" ], "x-ms-request-id": [ - "63a375f7-4687-4e68-a7aa-d9f4b909849f" + "44886811-1f96-4359-a99d-f8d19753be0b" ], "x-ms-correlation-request-id": [ - "63a375f7-4687-4e68-a7aa-d9f4b909849f" + "44886811-1f96-4359-a99d-f8d19753be0b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212139Z:63a375f7-4687-4e68-a7aa-d9f4b909849f" + "WESTUS2:20221005T230429Z:44886811-1f96-4359-a99d-f8d19753be0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -750,7 +750,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:21:38 GMT" + "Wed, 05 Oct 2022 23:04:29 GMT" ], "Expires": [ "-1" @@ -763,18 +763,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzIzNDAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpJek5EQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzUzMjMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpVek1qTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -786,13 +786,13 @@ "11999" ], "x-ms-request-id": [ - "1350d56e-a207-4630-8fe6-b13ba6104a23" + "5e4d3fb5-bb15-4e17-8103-e6a334357f6a" ], "x-ms-correlation-request-id": [ - "1350d56e-a207-4630-8fe6-b13ba6104a23" + "5e4d3fb5-bb15-4e17-8103-e6a334357f6a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212154Z:1350d56e-a207-4630-8fe6-b13ba6104a23" + "WESTUS2:20221005T230444Z:5e4d3fb5-bb15-4e17-8103-e6a334357f6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -801,7 +801,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:21:53 GMT" + "Wed, 05 Oct 2022 23:04:44 GMT" ], "Expires": [ "-1" @@ -814,18 +814,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzIzNDAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpJek5EQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzUzMjMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpVek1qTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -837,13 +837,13 @@ "11998" ], "x-ms-request-id": [ - "3a527c37-f321-4c43-b2eb-8dcc5bb82efe" + "8962cfa6-8e43-44ff-923d-1f5ffef35a9a" ], "x-ms-correlation-request-id": [ - "3a527c37-f321-4c43-b2eb-8dcc5bb82efe" + "8962cfa6-8e43-44ff-923d-1f5ffef35a9a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212154Z:3a527c37-f321-4c43-b2eb-8dcc5bb82efe" + "WESTUS2:20221005T230444Z:8962cfa6-8e43-44ff-923d-1f5ffef35a9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -852,7 +852,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:21:53 GMT" + "Wed, 05 Oct 2022 23:04:44 GMT" ], "Expires": [ "-1" @@ -867,8 +867,8 @@ ], "Names": { "": [ - "ps2514", - "ps2340" + "ps4051", + "ps5323" ] }, "Variables": { diff --git a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.TopicTests/EventGrid_TopicsIdentityTests.json b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.TopicTests/EventGrid_TopicsIdentityTests.json index db947583e0f0..b128b5c6fba3 100644 --- a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.TopicTests/EventGrid_TopicsIdentityTests.json +++ b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.TopicTests/EventGrid_TopicsIdentityTests.json @@ -1,22 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps3363?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczMzNjM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps1822?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczE4MjI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8fff1c22-edb8-4e04-8ede-cc133e577a6b" + "e97bc7db-4afb-4aab-8840-d4593f363069" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,6 +24,7 @@ "35" ] }, + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "e81ca4df-747e-4ea7-9e29-ba5d3ab59148" + "c6bc2c16-7b09-4896-a61f-48ad5a9b1e46" ], "x-ms-correlation-request-id": [ - "e81ca4df-747e-4ea7-9e29-ba5d3ab59148" + "c6bc2c16-7b09-4896-a61f-48ad5a9b1e46" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T030504Z:e81ca4df-747e-4ea7-9e29-ba5d3ab59148" + "WESTUS2:20221005T230242Z:c6bc2c16-7b09-4896-a61f-48ad5a9b1e46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:05:04 GMT" + "Wed, 05 Oct 2022 23:02:42 GMT" ], "Content-Length": [ "186" @@ -63,26 +63,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3363\",\r\n \"name\": \"RGName-ps3363\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1822\",\r\n \"name\": \"RGName-ps1822\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3363/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6007?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczMzNjMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNjAwNz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1822/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2814?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE4MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMjgxND9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bd0d3fc4-cc0e-475c-b6d8-3546a2d9229e" + "17c0325f-7c4e-4ebb-b79a-d5b899e27229" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -91,6 +90,7 @@ "190" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -105,28 +105,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/D86E0EBD-2E40-43B2-96D1-2A13C00044F4?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/44EB99BA-3E8C-4A93-8D7D-95D51AB91613?api-version=2022-06-15" ], "x-ms-request-id": [ - "137eb5b6-a5da-4635-b647-aaf58276de43" + "63a698f9-1e04-4956-b09d-aaf3f96c7f22" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "3d9d5d13-61de-4b73-aeac-9812def83a0d" + "4ec6e47c-4dd3-4df4-a728-09a97e9ecd8f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T030507Z:3d9d5d13-61de-4b73-aeac-9812def83a0d" + "WESTUS2:20221005T230244Z:4ec6e47c-4dd3-4df4-a728-09a97e9ecd8f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:05:07 GMT" + "Wed, 05 Oct 2022 23:02:44 GMT" ], "Content-Length": [ "562" @@ -138,25 +138,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"d7bbdbdf-2294-4106-8644-412ed4b6bf5f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3363/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6007\",\r\n \"name\": \"PSTestTopic-ps6007\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"58dd7276-3a08-4996-af47-1544e70f67d1\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1822/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2814\",\r\n \"name\": \"PSTestTopic-ps2814\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/D86E0EBD-2E40-43B2-96D1-2A13C00044F4?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRDg2RTBFQkQtMkU0MC00M0IyLTk2RDEtMkExM0MwMDA0NEY0P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/44EB99BA-3E8C-4A93-8D7D-95D51AB91613?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNDRFQjk5QkEtM0U4Qy00QTkzLThEN0QtOTVENTFBQjkxNjEzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bd0d3fc4-cc0e-475c-b6d8-3546a2d9229e" + "17c0325f-7c4e-4ebb-b79a-d5b899e27229" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -168,25 +168,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "aa6d702d-0c7a-4c24-b8d5-a5180ea46125" + "fb3bbbfd-d2db-4697-aafb-c2154c06fd63" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11999" ], "x-ms-correlation-request-id": [ - "4700e30a-ee6c-4926-8851-77aabce28c2a" + "a0f96ed0-6e9c-4469-8e3c-8654930abf72" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T030517Z:4700e30a-ee6c-4926-8851-77aabce28c2a" + "WESTUS2:20221005T230254Z:a0f96ed0-6e9c-4469-8e3c-8654930abf72" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:05:17 GMT" + "Wed, 05 Oct 2022 23:02:54 GMT" ], "Content-Length": [ "286" @@ -198,25 +198,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/D86E0EBD-2E40-43B2-96D1-2A13C00044F4?api-version=2021-12-01\",\r\n \"name\": \"d86e0ebd-2e40-43b2-96d1-2a13c00044f4\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/44EB99BA-3E8C-4A93-8D7D-95D51AB91613?api-version=2022-06-15\",\r\n \"name\": \"44eb99ba-3e8c-4a93-8d7d-95d51ab91613\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3363/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6007?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczMzNjMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNjAwNz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1822/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2814?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE4MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMjgxND9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bd0d3fc4-cc0e-475c-b6d8-3546a2d9229e" + "17c0325f-7c4e-4ebb-b79a-d5b899e27229" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -228,28 +228,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4f905cd5-ed89-4781-93eb-549ba24ccb52" + "925f1e93-d53b-433c-b7a9-ee80f843e8af" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11998" ], "x-ms-correlation-request-id": [ - "b5a94f4d-0e78-4715-a5fa-2d0204d19f2b" + "6e806a94-4a2d-4bb2-83df-ea74ce5c32ae" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T030517Z:b5a94f4d-0e78-4715-a5fa-2d0204d19f2b" + "WESTUS2:20221005T230254Z:6e806a94-4a2d-4bb2-83df-ea74ce5c32ae" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:05:17 GMT" + "Wed, 05 Oct 2022 23:02:54 GMT" ], "Content-Length": [ - "692" + "732" ], "Content-Type": [ "application/json; charset=utf-8" @@ -258,26 +258,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps6007.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"0434b28d-d5a5-4c54-a114-f056eeadb64c\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"d7bbdbdf-2294-4106-8644-412ed4b6bf5f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3363/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6007\",\r\n \"name\": \"PSTestTopic-ps6007\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps2814.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ee567463-c1c9-4712-b6df-518a2faebc51\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"58dd7276-3a08-4996-af47-1544e70f67d1\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1822/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2814\",\r\n \"name\": \"PSTestTopic-ps2814\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3363/providers/Microsoft.EventGrid/topics/PSTestTopic-ps7311?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczMzNjMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNzMxMT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1822/providers/Microsoft.EventGrid/topics/PSTestTopic-ps9090?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE4MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzOTA5MD9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1583c2ef-0b6e-4302-ba92-86261d6cb826" + "b9f73384-c656-4839-a848-4a31da24aa51" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -286,6 +285,7 @@ "180" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -300,28 +300,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/35781802-AC90-4919-B5E9-E07EB96AD314?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/48E4E51B-6DF4-49A4-BCE1-68923CB416D3?api-version=2022-06-15" ], "x-ms-request-id": [ - "0b6c316a-1d59-4eb9-84b7-992e601164ef" + "c7087a3c-f795-4a6c-8f8b-3f2022d0cfe5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "59666d8f-7b6b-43e5-b3f1-91ce75756264" + "1f844a31-53c0-4376-9599-fcbf405af732" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T030518Z:59666d8f-7b6b-43e5-b3f1-91ce75756264" + "WESTUS2:20221005T230257Z:1f844a31-53c0-4376-9599-fcbf405af732" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:05:18 GMT" + "Wed, 05 Oct 2022 23:02:56 GMT" ], "Content-Length": [ "484" @@ -333,26 +333,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3363/providers/Microsoft.EventGrid/topics/PSTestTopic-ps7311\",\r\n \"name\": \"PSTestTopic-ps7311\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1822/providers/Microsoft.EventGrid/topics/PSTestTopic-ps9090\",\r\n \"name\": \"PSTestTopic-ps9090\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3363/providers/Microsoft.EventGrid/topics/PSTestTopic-ps7311?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczMzNjMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNzMxMT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1822/providers/Microsoft.EventGrid/topics/PSTestTopic-ps9090?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE4MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzOTA5MD9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testIdentity1\": {}\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d4befbfd-49b8-4d66-8a76-7e21656eda35" + "47333fbf-085a-4c80-ae1d-2ff45ab64527" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -361,6 +360,7 @@ "607" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testIdentity1\": {}\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -375,28 +375,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/499A1D81-29D2-4A3B-AB6D-48C31B2BDC37?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/7E9DA663-C481-459A-91FE-192C82CE8411?api-version=2022-06-15" ], "x-ms-request-id": [ - "af311cfa-4a72-4414-8ea1-3b36f378229d" + "2593a9e6-e91e-485a-8b55-8bc07c5259f7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "7dca756d-c708-4197-8753-54f150d240cd" + "a2995f0f-9432-4040-8e04-31c83846bbac" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T030530Z:7dca756d-c708-4197-8753-54f150d240cd" + "WESTUS2:20221005T230310Z:a2995f0f-9432-4040-8e04-31c83846bbac" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:05:29 GMT" + "Wed, 05 Oct 2022 23:03:09 GMT" ], "Content-Length": [ "776" @@ -408,25 +408,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"endpoint\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testIdentity1\": {\r\n \"principalId\": null,\r\n \"clientId\": null\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3363/providers/Microsoft.EventGrid/topics/PSTestTopic-ps7311\",\r\n \"name\": \"PSTestTopic-ps7311\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"endpoint\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testIdentity1\": {\r\n \"principalId\": null,\r\n \"clientId\": null\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1822/providers/Microsoft.EventGrid/topics/PSTestTopic-ps9090\",\r\n \"name\": \"PSTestTopic-ps9090\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/35781802-AC90-4919-B5E9-E07EB96AD314?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMzU3ODE4MDItQUM5MC00OTE5LUI1RTktRTA3RUI5NkFEMzE0P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/48E4E51B-6DF4-49A4-BCE1-68923CB416D3?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNDhFNEU1MUItNkRGNC00OUE0LUJDRTEtNjg5MjNDQjQxNkQzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1583c2ef-0b6e-4302-ba92-86261d6cb826" + "b9f73384-c656-4839-a848-4a31da24aa51" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -438,25 +438,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "323e15f5-eacb-4d5d-8ca9-f0d205642aef" + "ba325498-dcc1-4d61-ab33-87119d48d3e1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11999" ], "x-ms-correlation-request-id": [ - "a6bbb46e-7000-41a9-b63b-90c8a28575d1" + "32cbcab0-9839-40c4-a97e-1367333527d7" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T030528Z:a6bbb46e-7000-41a9-b63b-90c8a28575d1" + "WESTUS2:20221005T230307Z:32cbcab0-9839-40c4-a97e-1367333527d7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:05:28 GMT" + "Wed, 05 Oct 2022 23:03:06 GMT" ], "Content-Length": [ "286" @@ -468,25 +468,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/35781802-AC90-4919-B5E9-E07EB96AD314?api-version=2021-12-01\",\r\n \"name\": \"35781802-ac90-4919-b5e9-e07eb96ad314\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/48E4E51B-6DF4-49A4-BCE1-68923CB416D3?api-version=2022-06-15\",\r\n \"name\": \"48e4e51b-6df4-49a4-bce1-68923cb416d3\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3363/providers/Microsoft.EventGrid/topics/PSTestTopic-ps7311?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczMzNjMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNzMxMT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1822/providers/Microsoft.EventGrid/topics/PSTestTopic-ps9090?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE4MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzOTA5MD9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1583c2ef-0b6e-4302-ba92-86261d6cb826" + "b9f73384-c656-4839-a848-4a31da24aa51" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -498,28 +498,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "01e4a75f-f35e-4cec-89ce-c77a4b908630" + "a01e60bf-7d58-4b0d-88f6-66d2f5a1ced8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11998" ], "x-ms-correlation-request-id": [ - "7d8310e7-63cd-4985-b1d1-662bbb0f71de" + "7b6da7e3-7688-4d81-9ba7-1e0f5032e317" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T030529Z:7d8310e7-63cd-4985-b1d1-662bbb0f71de" + "WESTUS2:20221005T230307Z:7b6da7e3-7688-4d81-9ba7-1e0f5032e317" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:05:28 GMT" + "Wed, 05 Oct 2022 23:03:06 GMT" ], "Content-Length": [ - "614" + "654" ], "Content-Type": [ "application/json; charset=utf-8" @@ -528,28 +528,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps7311.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"09d32c65-dd0c-4eeb-9328-4e5433b5b53b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3363/providers/Microsoft.EventGrid/topics/PSTestTopic-ps7311\",\r\n \"name\": \"PSTestTopic-ps7311\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps9090.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"dbbfcb83-30d3-4dfe-8cab-b92dddc8738f\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1822/providers/Microsoft.EventGrid/topics/PSTestTopic-ps9090\",\r\n \"name\": \"PSTestTopic-ps9090\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3363/providers/Microsoft.EventGrid/topics/PSTestTopic-ps7311?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczMzNjMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNzMxMT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1822/providers/Microsoft.EventGrid/topics/PSTestTopic-ps9090?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE4MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzOTA5MD9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d4befbfd-49b8-4d66-8a76-7e21656eda35" + "47333fbf-085a-4c80-ae1d-2ff45ab64527" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -561,28 +561,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "62e43f7d-c12a-479a-b88d-f0e9354f0363" + "1e1623e8-e7a9-4fc1-9f72-f4abcf961ebd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11997" ], "x-ms-correlation-request-id": [ - "87abdef0-7da0-4228-bfbe-526fa32e0033" + "49f939d7-9465-430f-8b22-c025594953d4" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T030529Z:87abdef0-7da0-4228-bfbe-526fa32e0033" + "WESTUS2:20221005T230308Z:49f939d7-9465-430f-8b22-c025594953d4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:05:28 GMT" + "Wed, 05 Oct 2022 23:03:07 GMT" ], "Content-Length": [ - "614" + "654" ], "Content-Type": [ "application/json; charset=utf-8" @@ -591,25 +591,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps7311.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"09d32c65-dd0c-4eeb-9328-4e5433b5b53b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3363/providers/Microsoft.EventGrid/topics/PSTestTopic-ps7311\",\r\n \"name\": \"PSTestTopic-ps7311\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps9090.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"dbbfcb83-30d3-4dfe-8cab-b92dddc8738f\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1822/providers/Microsoft.EventGrid/topics/PSTestTopic-ps9090\",\r\n \"name\": \"PSTestTopic-ps9090\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3363/providers/Microsoft.EventGrid/topics/PSTestTopic-ps7311?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczMzNjMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNzMxMT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1822/providers/Microsoft.EventGrid/topics/PSTestTopic-ps9090?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE4MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzOTA5MD9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d4befbfd-49b8-4d66-8a76-7e21656eda35" + "47333fbf-085a-4c80-ae1d-2ff45ab64527" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -621,28 +621,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6e5d8c0f-850b-420d-ac10-a2576403b354" + "6a08f91d-e64f-4d3d-9578-b1c3a1c10525" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11995" ], "x-ms-correlation-request-id": [ - "14adbf27-52c7-4660-bb9d-95ee76722a61" + "a8feebdc-599a-4ffb-bbfd-fe9da32fe032" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T030540Z:14adbf27-52c7-4660-bb9d-95ee76722a61" + "WESTUS2:20221005T230320Z:a8feebdc-599a-4ffb-bbfd-fe9da32fe032" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:05:39 GMT" + "Wed, 05 Oct 2022 23:03:19 GMT" ], "Content-Length": [ - "1006" + "1046" ], "Content-Type": [ "application/json; charset=utf-8" @@ -651,25 +651,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps7311.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"09d32c65-dd0c-4eeb-9328-4e5433b5b53b\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testIdentity1\": {\r\n \"principalId\": \"0558243c-d498-44a2-a8f9-92cb66e8bd68\",\r\n \"clientId\": \"2ecf32a2-baf0-493c-b3b7-eec5556c5327\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3363/providers/Microsoft.EventGrid/topics/PSTestTopic-ps7311\",\r\n \"name\": \"PSTestTopic-ps7311\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps9090.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"dbbfcb83-30d3-4dfe-8cab-b92dddc8738f\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testIdentity1\": {\r\n \"principalId\": \"0558243c-d498-44a2-a8f9-92cb66e8bd68\",\r\n \"clientId\": \"2ecf32a2-baf0-493c-b3b7-eec5556c5327\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1822/providers/Microsoft.EventGrid/topics/PSTestTopic-ps9090\",\r\n \"name\": \"PSTestTopic-ps9090\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/499A1D81-29D2-4A3B-AB6D-48C31B2BDC37?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNDk5QTFEODEtMjlEMi00QTNCLUFCNkQtNDhDMzFCMkJEQzM3P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/7E9DA663-C481-459A-91FE-192C82CE8411?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvN0U5REE2NjMtQzQ4MS00NTlBLTkxRkUtMTkyQzgyQ0U4NDExP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d4befbfd-49b8-4d66-8a76-7e21656eda35" + "47333fbf-085a-4c80-ae1d-2ff45ab64527" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -681,25 +681,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b9148800-49d1-4854-a64e-209a6f558ea4" + "52f9c19f-325f-4377-aa99-0d2c359fa9af" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11996" ], "x-ms-correlation-request-id": [ - "58f7af54-70f2-4594-b046-f08a63fc88b6" + "9dbbe0b5-24c8-42fa-ac24-949cac8202ec" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T030540Z:58f7af54-70f2-4594-b046-f08a63fc88b6" + "WESTUS2:20221005T230320Z:9dbbe0b5-24c8-42fa-ac24-949cac8202ec" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:05:39 GMT" + "Wed, 05 Oct 2022 23:03:19 GMT" ], "Content-Length": [ "286" @@ -711,28 +711,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/499A1D81-29D2-4A3B-AB6D-48C31B2BDC37?api-version=2021-12-01\",\r\n \"name\": \"499a1d81-29d2-4a3b-ab6d-48c31b2bdc37\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/7E9DA663-C481-459A-91FE-192C82CE8411?api-version=2022-06-15\",\r\n \"name\": \"7e9da663-c481-459a-91fe-192c82ce8411\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3363/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6007?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczMzNjMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNjAwNz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1822/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2814?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE4MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMjgxND9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f1830def-619a-4dd8-bbf8-6e5f474f6678" + "89dac15e-1eb2-48f2-a07b-48a7491118ea" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -741,7 +741,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/E16816B4-3132-432B-8BB8-E70EE734837C?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/F2A865B3-34DA-4D02-B304-06CEF7AB7E82?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -750,28 +750,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E16816B4-3132-432B-8BB8-E70EE734837C?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/F2A865B3-34DA-4D02-B304-06CEF7AB7E82?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-request-id": [ - "fdb767ea-0d94-482b-a8cf-785c524d3a08" + "1d4f03df-8399-4064-970d-5e9181e7cb6b" ], "x-ms-correlation-request-id": [ - "fdb767ea-0d94-482b-a8cf-785c524d3a08" + "1d4f03df-8399-4064-970d-5e9181e7cb6b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T030540Z:fdb767ea-0d94-482b-a8cf-785c524d3a08" + "WESTUS2:20221005T230321Z:1d4f03df-8399-4064-970d-5e9181e7cb6b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:05:40 GMT" + "Wed, 05 Oct 2022 23:03:21 GMT" ], "Expires": [ "-1" @@ -784,21 +784,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E16816B4-3132-432B-8BB8-E70EE734837C?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRTE2ODE2QjQtMzEzMi00MzJCLThCQjgtRTcwRUU3MzQ4MzdDP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/F2A865B3-34DA-4D02-B304-06CEF7AB7E82?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRjJBODY1QjMtMzREQS00RDAyLUIzMDQtMDZDRUY3QUI3RTgyP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f1830def-619a-4dd8-bbf8-6e5f474f6678" + "89dac15e-1eb2-48f2-a07b-48a7491118ea" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -810,25 +810,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d31bd0a8-f709-464a-8af5-4f33f8268e5e" + "1842ef0b-262f-4840-bc8c-338955955779" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11998" ], "x-ms-correlation-request-id": [ - "94e1b5b3-6633-4803-ab29-b9b4df986ca2" + "043b8f4b-fd94-4cfe-9c3c-13c6d2d63072" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T030550Z:94e1b5b3-6633-4803-ab29-b9b4df986ca2" + "WESTUS2:20221005T230331Z:043b8f4b-fd94-4cfe-9c3c-13c6d2d63072" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:05:50 GMT" + "Wed, 05 Oct 2022 23:03:31 GMT" ], "Content-Length": [ "286" @@ -840,25 +840,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E16816B4-3132-432B-8BB8-E70EE734837C?api-version=2021-12-01\",\r\n \"name\": \"e16816b4-3132-432b-8bb8-e70ee734837c\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/F2A865B3-34DA-4D02-B304-06CEF7AB7E82?api-version=2022-06-15\",\r\n \"name\": \"f2a865b3-34da-4d02-b304-06cef7ab7e82\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/E16816B4-3132-432B-8BB8-E70EE734837C?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvRTE2ODE2QjQtMzEzMi00MzJCLThCQjgtRTcwRUU3MzQ4MzdDP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/F2A865B3-34DA-4D02-B304-06CEF7AB7E82?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvRjJBODY1QjMtMzREQS00RDAyLUIzMDQtMDZDRUY3QUI3RTgyP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f1830def-619a-4dd8-bbf8-6e5f474f6678" + "89dac15e-1eb2-48f2-a07b-48a7491118ea" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -870,25 +870,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5f2ba7cb-a33b-4c06-83f3-ebdf08ebc9ed" + "917b4d3b-fb22-4e31-8d3d-d732fe96091d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11997" ], "x-ms-correlation-request-id": [ - "06915c40-7d47-42a8-b953-4ddfddf4e169" + "401525c9-d53a-4438-99d1-ab91dcf7b5e1" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T030550Z:06915c40-7d47-42a8-b953-4ddfddf4e169" + "WESTUS2:20221005T230331Z:401525c9-d53a-4438-99d1-ab91dcf7b5e1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:05:50 GMT" + "Wed, 05 Oct 2022 23:03:31 GMT" ], "Expires": [ "-1" @@ -901,24 +901,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3363/providers/Microsoft.EventGrid/topics/PSTestTopic-ps7311?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczMzNjMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNzMxMT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1822/providers/Microsoft.EventGrid/topics/PSTestTopic-ps9090?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE4MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzOTA5MD9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb38254b-556d-42ee-8206-b9f54b1cf5d2" + "ea3839d0-08e1-426f-8256-2751ac121d66" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -927,7 +927,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/99A1AB57-8ECE-490D-9961-0B2F5CE43939?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/FA7B9806-C96C-4123-A20C-B6D632722AB1?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -936,28 +936,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/99A1AB57-8ECE-490D-9961-0B2F5CE43939?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/FA7B9806-C96C-4123-A20C-B6D632722AB1?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-request-id": [ - "317757d6-ab10-45ef-99b1-435105d85151" + "c59d919d-9fd7-407a-94cf-1f3ac7019ce8" ], "x-ms-correlation-request-id": [ - "317757d6-ab10-45ef-99b1-435105d85151" + "c59d919d-9fd7-407a-94cf-1f3ac7019ce8" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T030551Z:317757d6-ab10-45ef-99b1-435105d85151" + "WESTUS2:20221005T230332Z:c59d919d-9fd7-407a-94cf-1f3ac7019ce8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:05:50 GMT" + "Wed, 05 Oct 2022 23:03:32 GMT" ], "Expires": [ "-1" @@ -970,21 +970,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/99A1AB57-8ECE-490D-9961-0B2F5CE43939?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvOTlBMUFCNTctOEVDRS00OTBELTk5NjEtMEIyRjVDRTQzOTM5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/FA7B9806-C96C-4123-A20C-B6D632722AB1?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRkE3Qjk4MDYtQzk2Qy00MTIzLUEyMEMtQjZENjMyNzIyQUIxP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb38254b-556d-42ee-8206-b9f54b1cf5d2" + "ea3839d0-08e1-426f-8256-2751ac121d66" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -996,25 +996,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dbf894f5-da40-4efb-a3bc-16e3ca36d5f3" + "282a975f-efc6-4000-9fe7-f101a7ed41a9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11998" ], "x-ms-correlation-request-id": [ - "ec4ace12-edd8-4cb6-b7cf-0c22826ea895" + "1c28465a-bbc9-43a4-a0c0-a2c416237baf" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T030601Z:ec4ace12-edd8-4cb6-b7cf-0c22826ea895" + "WESTUS2:20221005T230342Z:1c28465a-bbc9-43a4-a0c0-a2c416237baf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:06:00 GMT" + "Wed, 05 Oct 2022 23:03:42 GMT" ], "Content-Length": [ "286" @@ -1026,25 +1026,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/99A1AB57-8ECE-490D-9961-0B2F5CE43939?api-version=2021-12-01\",\r\n \"name\": \"99a1ab57-8ece-490d-9961-0b2f5ce43939\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/FA7B9806-C96C-4123-A20C-B6D632722AB1?api-version=2022-06-15\",\r\n \"name\": \"fa7b9806-c96c-4123-a20c-b6d632722ab1\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/99A1AB57-8ECE-490D-9961-0B2F5CE43939?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvOTlBMUFCNTctOEVDRS00OTBELTk5NjEtMEIyRjVDRTQzOTM5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/FA7B9806-C96C-4123-A20C-B6D632722AB1?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvRkE3Qjk4MDYtQzk2Qy00MTIzLUEyMEMtQjZENjMyNzIyQUIxP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb38254b-556d-42ee-8206-b9f54b1cf5d2" + "ea3839d0-08e1-426f-8256-2751ac121d66" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1056,25 +1056,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4dda62a5-5d24-4d87-b263-2d53c4cbea11" + "546f9bf2-a9e5-4feb-9556-b4b59fba3c2b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11997" ], "x-ms-correlation-request-id": [ - "33cc3d5c-033d-4395-a2a3-7f0835d86b76" + "3cebef2c-2d8e-4028-b671-dd96977420d4" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T030601Z:33cc3d5c-033d-4395-a2a3-7f0835d86b76" + "WESTUS2:20221005T230342Z:3cebef2c-2d8e-4028-b671-dd96977420d4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:06:00 GMT" + "Wed, 05 Oct 2022 23:03:42 GMT" ], "Expires": [ "-1" @@ -1087,24 +1087,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps3363?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczMzNjM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps1822?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczE4MjI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "db185bf8-45a7-4dec-83a6-c94f76b0982a" + "fce30a1b-9993-4d20-a75f-3155c368de0e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1113,7 +1113,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzMzNjMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzE4MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1122,13 +1122,13 @@ "14999" ], "x-ms-request-id": [ - "a3682790-6fd0-46d8-bab9-1409ef8ebd26" + "b59bf63b-c987-4d9c-b88d-80442e6b1f53" ], "x-ms-correlation-request-id": [ - "a3682790-6fd0-46d8-bab9-1409ef8ebd26" + "b59bf63b-c987-4d9c-b88d-80442e6b1f53" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T030601Z:a3682790-6fd0-46d8-bab9-1409ef8ebd26" + "WESTUS2:20221005T230344Z:b59bf63b-c987-4d9c-b88d-80442e6b1f53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1137,7 +1137,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:06:01 GMT" + "Wed, 05 Oct 2022 23:03:43 GMT" ], "Expires": [ "-1" @@ -1150,18 +1150,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzMzNjMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpNek5qTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzE4MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpFNE1qSXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1170,16 +1170,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "38cae15f-ee75-479d-8c6d-1967898081b1" + "f1fc9f98-99ee-4f64-a8a0-bcfa23c44f81" ], "x-ms-correlation-request-id": [ - "38cae15f-ee75-479d-8c6d-1967898081b1" + "f1fc9f98-99ee-4f64-a8a0-bcfa23c44f81" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T030616Z:38cae15f-ee75-479d-8c6d-1967898081b1" + "WESTUS2:20221005T230359Z:f1fc9f98-99ee-4f64-a8a0-bcfa23c44f81" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1188,7 +1188,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:06:16 GMT" + "Wed, 05 Oct 2022 23:03:59 GMT" ], "Expires": [ "-1" @@ -1201,18 +1201,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzMzNjMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpNek5qTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzE4MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpFNE1qSXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1221,16 +1221,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-request-id": [ - "2868fa4f-b259-4c98-bebf-caee4c953877" + "a77c1e85-8de1-4953-8a98-289469ff4115" ], "x-ms-correlation-request-id": [ - "2868fa4f-b259-4c98-bebf-caee4c953877" + "a77c1e85-8de1-4953-8a98-289469ff4115" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220502T030616Z:2868fa4f-b259-4c98-bebf-caee4c953877" + "WESTUS2:20221005T230359Z:a77c1e85-8de1-4953-8a98-289469ff4115" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1239,7 +1239,7 @@ "nosniff" ], "Date": [ - "Mon, 02 May 2022 03:06:16 GMT" + "Wed, 05 Oct 2022 23:03:59 GMT" ], "Expires": [ "-1" @@ -1254,9 +1254,9 @@ ], "Names": { "": [ - "ps6007", - "ps7311", - "ps3363" + "ps2814", + "ps9090", + "ps1822" ] }, "Variables": { diff --git a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.TopicTests/EventGrid_TopicsInputMappingCreateGetAndDelete.json b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.TopicTests/EventGrid_TopicsInputMappingCreateGetAndDelete.json index 703857280fcc..9ffac17c3c80 100644 --- a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.TopicTests/EventGrid_TopicsInputMappingCreateGetAndDelete.json +++ b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.TopicTests/EventGrid_TopicsInputMappingCreateGetAndDelete.json @@ -1,22 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps5340?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczUzNDA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps1486?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczE0ODY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bb7654f2-dd02-4cea-a9ce-dbad01d215b7" + "6cd292ee-094e-452e-b9f1-c4abdd93d12b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,6 +24,7 @@ "35" ] }, + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -36,13 +36,13 @@ "1198" ], "x-ms-request-id": [ - "2429a3ec-ae8f-4137-997d-64094d422150" + "2a50cbfc-bf95-46cb-a4ff-77c938572f87" ], "x-ms-correlation-request-id": [ - "2429a3ec-ae8f-4137-997d-64094d422150" + "2a50cbfc-bf95-46cb-a4ff-77c938572f87" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T211836Z:2429a3ec-ae8f-4137-997d-64094d422150" + "WESTUS2:20221005T225956Z:2a50cbfc-bf95-46cb-a4ff-77c938572f87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:18:36 GMT" + "Wed, 05 Oct 2022 22:59:55 GMT" ], "Content-Length": [ "186" @@ -63,26 +63,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340\",\r\n \"name\": \"RGName-ps5340\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486\",\r\n \"name\": \"RGName-ps1486\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2000?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMjAwMD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6957?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE0ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNjk1Nz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"eventgriDSChemA\",\r\n \"publicNetworkAccess\": \"enabled\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5cca8670-360d-458c-b0ab-d96d910c254a" + "69e865cc-db6b-48eb-bdb6-da5eeb27244a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -91,6 +90,7 @@ "137" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"eventgriDSChemA\",\r\n \"publicNetworkAccess\": \"enabled\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -105,10 +105,10 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/639033DF-649F-45F7-853D-CBAEBC7D4CB0?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4F7B045E-FAC3-4D5D-BDCA-E98222193608?api-version=2022-06-15" ], "x-ms-request-id": [ - "610eb458-13ee-4cfb-b1ca-94d16988d4bb" + "937c3865-b558-4163-8e7f-a4f27081907e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -117,16 +117,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "6788062b-ad5a-4e7d-ba91-353c8f99fb8e" + "943e2123-8d9b-4ba3-bf86-17fc11ce9ff7" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T211838Z:6788062b-ad5a-4e7d-ba91-353c8f99fb8e" + "WESTUS2:20221005T225958Z:943e2123-8d9b-4ba3-bf86-17fc11ce9ff7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:18:37 GMT" + "Wed, 05 Oct 2022 22:59:58 GMT" ], "Content-Length": [ "392" @@ -138,25 +138,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2000\",\r\n \"name\": \"PSTestTopic-ps2000\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6957\",\r\n \"name\": \"PSTestTopic-ps6957\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/639033DF-649F-45F7-853D-CBAEBC7D4CB0?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNjM5MDMzREYtNjQ5Ri00NUY3LTg1M0QtQ0JBRUJDN0Q0Q0IwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4F7B045E-FAC3-4D5D-BDCA-E98222193608?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNEY3QjA0NUUtRkFDMy00RDVELUJEQ0EtRTk4MjIyMTkzNjA4P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5cca8670-360d-458c-b0ab-d96d910c254a" + "69e865cc-db6b-48eb-bdb6-da5eeb27244a" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -168,7 +168,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f0057dda-d8f4-4308-923a-227b551020aa" + "a41d112b-e3ff-436a-8f7d-75002aa2e9d3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -177,16 +177,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "2bcf4587-e6aa-4add-91a6-fd287174b7f6" + "f3ff209f-b2e8-4948-adda-7a0909540bec" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T211848Z:2bcf4587-e6aa-4add-91a6-fd287174b7f6" + "WESTUS2:20221005T230008Z:f3ff209f-b2e8-4948-adda-7a0909540bec" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:18:47 GMT" + "Wed, 05 Oct 2022 23:00:08 GMT" ], "Content-Length": [ "286" @@ -198,25 +198,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/639033DF-649F-45F7-853D-CBAEBC7D4CB0?api-version=2021-12-01\",\r\n \"name\": \"639033df-649f-45f7-853d-cbaebc7d4cb0\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4F7B045E-FAC3-4D5D-BDCA-E98222193608?api-version=2022-06-15\",\r\n \"name\": \"4f7b045e-fac3-4d5d-bdca-e98222193608\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2000?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMjAwMD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6957?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE0ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNjk1Nz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5cca8670-360d-458c-b0ab-d96d910c254a" + "69e865cc-db6b-48eb-bdb6-da5eeb27244a" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -228,7 +228,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "61a31b92-9553-478c-a1e9-27b23b95b688" + "a29af373-953f-48c6-a4ad-ba9afdfe8724" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -237,19 +237,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "761c0006-33de-4ff5-a194-b051fbf69ed7" + "151510a4-b5d1-4a62-92bd-2b304a64ff2a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T211849Z:761c0006-33de-4ff5-a194-b051fbf69ed7" + "WESTUS2:20221005T230009Z:151510a4-b5d1-4a62-92bd-2b304a64ff2a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:18:48 GMT" + "Wed, 05 Oct 2022 23:00:08 GMT" ], "Content-Length": [ - "522" + "562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -258,28 +258,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps2000.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d9232591-3f4e-49bc-a0d2-42fa8876aaad\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2000\",\r\n \"name\": \"PSTestTopic-ps2000\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps6957.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"60157a5e-6002-4d6f-aff8-33c400726406\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6957\",\r\n \"name\": \"PSTestTopic-ps6957\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2000?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMjAwMD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6957?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE0ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNjk1Nz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7488d4b1-6b42-4b0f-89cd-24eaabbeb22d" + "9294c264-670d-4597-82ad-6b5eb8a5f3eb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -291,28 +291,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e107b1dd-dafe-4737-9098-519a0a663856" + "9bdc4a2a-e404-4abf-984c-47b9db2cd5d2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-correlation-request-id": [ - "ece6119a-164c-42c5-b167-5c4a6628a6db" + "2313067a-8614-4cc5-a1d0-586fa0840de6" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T211849Z:ece6119a-164c-42c5-b167-5c4a6628a6db" + "WESTUS2:20221005T230009Z:2313067a-8614-4cc5-a1d0-586fa0840de6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:18:48 GMT" + "Wed, 05 Oct 2022 23:00:09 GMT" ], "Content-Length": [ - "522" + "562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -321,26 +321,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps2000.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d9232591-3f4e-49bc-a0d2-42fa8876aaad\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2000\",\r\n \"name\": \"PSTestTopic-ps2000\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps6957.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"60157a5e-6002-4d6f-aff8-33c400726406\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6957\",\r\n \"name\": \"PSTestTopic-ps6957\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps9975?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzOTk3NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1279?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE0ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMTI3OT9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"eventgridschema\",\r\n \"publicNetworkAccess\": \"enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a2fa7e59-62cc-4f1a-a6bd-8f2953c5859d" + "67d384ee-e36c-40da-ab59-396870a9ad11" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -349,6 +348,7 @@ "202" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"eventgridschema\",\r\n \"publicNetworkAccess\": \"enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -363,28 +363,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/5E2F0890-1438-4DCC-AB40-DAEF55B984B6?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/346830C3-0AD7-4CF5-BDF0-19EF3A501FB7?api-version=2022-06-15" ], "x-ms-request-id": [ - "ef5449f1-479f-4214-9ad8-65afca8af256" + "cdf95bc3-0f7a-48b5-bafd-d171b75b2823" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "74466464-f5f9-436a-9aa8-4ff68e60335c" + "b4e37788-6dd3-4ef6-94dc-47127db0c8ea" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T211850Z:74466464-f5f9-436a-9aa8-4ff68e60335c" + "WESTUS2:20221005T230011Z:b4e37788-6dd3-4ef6-94dc-47127db0c8ea" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:18:49 GMT" + "Wed, 05 Oct 2022 23:00:10 GMT" ], "Content-Length": [ "422" @@ -396,25 +396,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps9975\",\r\n \"name\": \"PSTestTopic-ps9975\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1279\",\r\n \"name\": \"PSTestTopic-ps1279\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/5E2F0890-1438-4DCC-AB40-DAEF55B984B6?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNUUyRjA4OTAtMTQzOC00RENDLUFCNDAtREFFRjU1Qjk4NEI2P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/346830C3-0AD7-4CF5-BDF0-19EF3A501FB7?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMzQ2ODMwQzMtMEFENy00Q0Y1LUJERjAtMTlFRjNBNTAxRkI3P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2fa7e59-62cc-4f1a-a6bd-8f2953c5859d" + "67d384ee-e36c-40da-ab59-396870a9ad11" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -426,25 +426,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8dae808f-776e-4975-8e0a-853e2286b563" + "2990fd7d-ad67-4f7d-b77f-be9a065569ea" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11999" ], "x-ms-correlation-request-id": [ - "97174171-861c-42a5-8e65-be189d1c5415" + "770c624b-c2f0-4153-ae84-f2255fb4576d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T211900Z:97174171-861c-42a5-8e65-be189d1c5415" + "WESTUS2:20221005T230021Z:770c624b-c2f0-4153-ae84-f2255fb4576d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:19:00 GMT" + "Wed, 05 Oct 2022 23:00:20 GMT" ], "Content-Length": [ "286" @@ -456,25 +456,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/5E2F0890-1438-4DCC-AB40-DAEF55B984B6?api-version=2021-12-01\",\r\n \"name\": \"5e2f0890-1438-4dcc-ab40-daef55b984b6\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/346830C3-0AD7-4CF5-BDF0-19EF3A501FB7?api-version=2022-06-15\",\r\n \"name\": \"346830c3-0ad7-4cf5-bdf0-19ef3a501fb7\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps9975?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzOTk3NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1279?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE0ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMTI3OT9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2fa7e59-62cc-4f1a-a6bd-8f2953c5859d" + "67d384ee-e36c-40da-ab59-396870a9ad11" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -486,28 +486,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5bfcf808-2772-45a2-8a2c-5b8da70078ce" + "b05c2eb7-7887-445f-b5b1-9d89ea12791f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11998" ], "x-ms-correlation-request-id": [ - "a0fef00a-62b8-4903-a850-048b7ee92af4" + "c3ccc6f7-7481-4802-8ca2-3d321bc8d2f2" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T211900Z:a0fef00a-62b8-4903-a850-048b7ee92af4" + "WESTUS2:20221005T230021Z:c3ccc6f7-7481-4802-8ca2-3d321bc8d2f2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:19:00 GMT" + "Wed, 05 Oct 2022 23:00:20 GMT" ], "Content-Length": [ - "552" + "592" ], "Content-Type": [ "application/json; charset=utf-8" @@ -516,26 +516,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps9975.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b585de46-c07c-4f7b-a5f0-8d0cf7ae23c1\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps9975\",\r\n \"name\": \"PSTestTopic-ps9975\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps1279.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"0f6451b2-0154-42d0-86bd-c11036d2806b\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1279\",\r\n \"name\": \"PSTestTopic-ps1279\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2519?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMjUxOT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3458?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE0ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMzQ1OD9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"CloUdEvENtSchemaV1_0\",\r\n \"publicNetworkAccess\": \"enabled\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e6fd01e6-86df-46b8-aa57-29768a69671c" + "5aeb9747-3815-41ec-bb59-e9dbe8f96f86" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -544,6 +543,7 @@ "142" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"CloUdEvENtSchemaV1_0\",\r\n \"publicNetworkAccess\": \"enabled\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -558,28 +558,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/2C96154F-13D9-44A1-AF01-2F5390A574F9?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/906EA77F-73F5-4B34-9619-FE55288DCF23?api-version=2022-06-15" ], "x-ms-request-id": [ - "3d15dfae-e0e0-4467-8491-335cd0c00ebe" + "44b621bc-4603-46b6-b35d-5ff9b27827b1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "28860ca5-2acc-4947-af7b-24822f10f7b3" + "f6f4165f-4199-4c88-9e67-554e4e73480a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T211901Z:28860ca5-2acc-4947-af7b-24822f10f7b3" + "WESTUS2:20221005T230023Z:f6f4165f-4199-4c88-9e67-554e4e73480a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:19:01 GMT" + "Wed, 05 Oct 2022 23:00:23 GMT" ], "Content-Length": [ "397" @@ -591,25 +591,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2519\",\r\n \"name\": \"PSTestTopic-ps2519\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3458\",\r\n \"name\": \"PSTestTopic-ps3458\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/2C96154F-13D9-44A1-AF01-2F5390A574F9?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMkM5NjE1NEYtMTNEOS00NEExLUFGMDEtMkY1MzkwQTU3NEY5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/906EA77F-73F5-4B34-9619-FE55288DCF23?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvOTA2RUE3N0YtNzNGNS00QjM0LTk2MTktRkU1NTI4OERDRjIzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6fd01e6-86df-46b8-aa57-29768a69671c" + "5aeb9747-3815-41ec-bb59-e9dbe8f96f86" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -621,25 +621,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "42d7f9b1-26bd-4403-8d25-1f033de213c9" + "5d2ba817-0549-461d-b1f3-5a69146d0ac8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11999" ], "x-ms-correlation-request-id": [ - "d59e6fb7-ee35-4e3e-b303-21693dad078e" + "7ae6056a-5a9e-4ee5-80c0-d693ae835039" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T211911Z:d59e6fb7-ee35-4e3e-b303-21693dad078e" + "WESTUS2:20221005T230033Z:7ae6056a-5a9e-4ee5-80c0-d693ae835039" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:19:11 GMT" + "Wed, 05 Oct 2022 23:00:33 GMT" ], "Content-Length": [ "286" @@ -651,25 +651,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/2C96154F-13D9-44A1-AF01-2F5390A574F9?api-version=2021-12-01\",\r\n \"name\": \"2c96154f-13d9-44a1-af01-2f5390a574f9\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/906EA77F-73F5-4B34-9619-FE55288DCF23?api-version=2022-06-15\",\r\n \"name\": \"906ea77f-73f5-4b34-9619-fe55288dcf23\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2519?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMjUxOT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3458?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE0ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMzQ1OD9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6fd01e6-86df-46b8-aa57-29768a69671c" + "5aeb9747-3815-41ec-bb59-e9dbe8f96f86" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -681,28 +681,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8231a84b-1465-47bd-8214-529f23cce9d0" + "22e8e683-1e95-4d67-bec7-5869170d8b2b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11998" ], "x-ms-correlation-request-id": [ - "77024180-55fe-4da7-8aa8-c10a6b9d1500" + "76773458-6043-4842-b51c-313cf8a2154d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T211911Z:77024180-55fe-4da7-8aa8-c10a6b9d1500" + "WESTUS2:20221005T230033Z:76773458-6043-4842-b51c-313cf8a2154d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:19:11 GMT" + "Wed, 05 Oct 2022 23:00:33 GMT" ], "Content-Length": [ - "527" + "567" ], "Content-Type": [ "application/json; charset=utf-8" @@ -711,28 +711,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps2519.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"3804d155-4a70-4e8c-9d25-e8b438b5eb7a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2519\",\r\n \"name\": \"PSTestTopic-ps2519\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps3458.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"841c8c79-80a3-4446-a7c0-682c9f00e7de\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3458\",\r\n \"name\": \"PSTestTopic-ps3458\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2519?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMjUxOT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3458?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE0ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMzQ1OD9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3de12421-19c4-4a81-bfbd-78ad3569fb11" + "32436b1c-ac88-4e49-9311-4c854f9db287" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -744,28 +744,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9b9eeac9-e392-48e9-ac82-dd09fee21103" + "2cf28c32-e040-4622-9dc8-3fbb809c8098" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11982" ], "x-ms-correlation-request-id": [ - "73a07539-b7d5-4194-b48c-9d389183b487" + "5942f964-ec5f-452d-8f33-63ad733cbc3e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T211922Z:73a07539-b7d5-4194-b48c-9d389183b487" + "WESTUS2:20221005T230046Z:5942f964-ec5f-452d-8f33-63ad733cbc3e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:19:22 GMT" + "Wed, 05 Oct 2022 23:00:45 GMT" ], "Content-Length": [ - "527" + "567" ], "Content-Type": [ "application/json; charset=utf-8" @@ -774,26 +774,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps2519.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"3804d155-4a70-4e8c-9d25-e8b438b5eb7a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2519\",\r\n \"name\": \"PSTestTopic-ps2519\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps3458.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"841c8c79-80a3-4446-a7c0-682c9f00e7de\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3458\",\r\n \"name\": \"PSTestTopic-ps3458\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps8560?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzODU2MD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2103?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE0ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMjEwMz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"ClOUdEVentSchEMAv1_0\",\r\n \"publicNetworkAccess\": \"enabled\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c0e2aa95-f8fe-4755-856e-eead96f94fb0" + "c2173680-7c2a-455c-a801-71434f762f9c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -802,6 +801,7 @@ "142" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"ClOUdEVentSchEMAv1_0\",\r\n \"publicNetworkAccess\": \"enabled\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -816,28 +816,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/75FE147E-AD26-45AA-A105-D028F5F756B4?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/7526083D-F456-4884-BF79-69228876B8E5?api-version=2022-06-15" ], "x-ms-request-id": [ - "62b2552c-6efd-4d82-90cf-3d80f289c09e" + "4fd11d99-b88f-41b4-85cf-33b8696ea102" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "13c0181e-a4d8-456f-a71f-ad962c5394e5" + "c76b703a-ae5f-4f7f-882d-f723bde9496d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T211912Z:13c0181e-a4d8-456f-a71f-ad962c5394e5" + "WESTUS2:20221005T230035Z:c76b703a-ae5f-4f7f-882d-f723bde9496d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:19:11 GMT" + "Wed, 05 Oct 2022 23:00:34 GMT" ], "Content-Length": [ "397" @@ -849,25 +849,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps8560\",\r\n \"name\": \"PSTestTopic-ps8560\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2103\",\r\n \"name\": \"PSTestTopic-ps2103\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/75FE147E-AD26-45AA-A105-D028F5F756B4?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNzVGRTE0N0UtQUQyNi00NUFBLUExMDUtRDAyOEY1Rjc1NkI0P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/7526083D-F456-4884-BF79-69228876B8E5?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNzUyNjA4M0QtRjQ1Ni00ODg0LUJGNzktNjkyMjg4NzZCOEU1P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0e2aa95-f8fe-4755-856e-eead96f94fb0" + "c2173680-7c2a-455c-a801-71434f762f9c" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -879,25 +879,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c8dda1ae-f213-448d-8e95-464693a222c4" + "5573aac2-6c78-4d9f-8112-fcec3d41596b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11998" ], "x-ms-correlation-request-id": [ - "16533357-a481-4939-8823-4b05257a07a1" + "f3974ca2-7979-465a-8319-dc0649c5bb68" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T211922Z:16533357-a481-4939-8823-4b05257a07a1" + "WESTUS2:20221005T230045Z:f3974ca2-7979-465a-8319-dc0649c5bb68" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:19:21 GMT" + "Wed, 05 Oct 2022 23:00:44 GMT" ], "Content-Length": [ "286" @@ -909,25 +909,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/75FE147E-AD26-45AA-A105-D028F5F756B4?api-version=2021-12-01\",\r\n \"name\": \"75fe147e-ad26-45aa-a105-d028f5f756b4\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/7526083D-F456-4884-BF79-69228876B8E5?api-version=2022-06-15\",\r\n \"name\": \"7526083d-f456-4884-bf79-69228876b8e5\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps8560?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzODU2MD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2103?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE0ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMjEwMz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0e2aa95-f8fe-4755-856e-eead96f94fb0" + "c2173680-7c2a-455c-a801-71434f762f9c" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -939,28 +939,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7cc47c4f-d92a-4f2d-a67d-3e42dd798dec" + "31d48c2a-db73-4fc2-827f-5500ea07f47d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11997" ], "x-ms-correlation-request-id": [ - "f373c6bb-a355-4432-967c-2cf320b7a72f" + "5248ae63-9905-488e-9c4a-1aedc3a28f44" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T211922Z:f373c6bb-a355-4432-967c-2cf320b7a72f" + "WESTUS2:20221005T230045Z:5248ae63-9905-488e-9c4a-1aedc3a28f44" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:19:22 GMT" + "Wed, 05 Oct 2022 23:00:44 GMT" ], "Content-Length": [ - "527" + "567" ], "Content-Type": [ "application/json; charset=utf-8" @@ -969,28 +969,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps8560.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"be1437b3-c6f5-496a-862e-3e5f4857738d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps8560\",\r\n \"name\": \"PSTestTopic-ps8560\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps2103.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"92904ec8-dc62-4075-a85e-29c1b68bffe4\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2103\",\r\n \"name\": \"PSTestTopic-ps2103\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE0ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "667b0650-a7f2-4ab3-b63a-db08c8810432" + "42cb2507-8c45-4106-bafb-28478d6203a4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1002,28 +1002,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6a577206-abb8-4e20-893f-1ae43fda0dc8" + "74ab67a2-a482-4976-9c0f-7bacd5786e5e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11995" ], "x-ms-correlation-request-id": [ - "e189b2bf-ac63-49b7-9b05-730f713f6742" + "29a6b96a-8d2a-4ebe-aaca-b61dc2a24e76" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T211922Z:e189b2bf-ac63-49b7-9b05-730f713f6742" + "WESTUS2:20221005T230046Z:29a6b96a-8d2a-4ebe-aaca-b61dc2a24e76" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:19:22 GMT" + "Wed, 05 Oct 2022 23:00:45 GMT" ], "Content-Length": [ - "2143" + "2303" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1032,28 +1032,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps2000.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d9232591-3f4e-49bc-a0d2-42fa8876aaad\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2000\",\r\n \"name\": \"PSTestTopic-ps2000\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps9975.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b585de46-c07c-4f7b-a5f0-8d0cf7ae23c1\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps9975\",\r\n \"name\": \"PSTestTopic-ps9975\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps2519.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"3804d155-4a70-4e8c-9d25-e8b438b5eb7a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2519\",\r\n \"name\": \"PSTestTopic-ps2519\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps8560.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"be1437b3-c6f5-496a-862e-3e5f4857738d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps8560\",\r\n \"name\": \"PSTestTopic-ps8560\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps6957.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"60157a5e-6002-4d6f-aff8-33c400726406\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6957\",\r\n \"name\": \"PSTestTopic-ps6957\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps1279.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"0f6451b2-0154-42d0-86bd-c11036d2806b\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1279\",\r\n \"name\": \"PSTestTopic-ps1279\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps3458.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"841c8c79-80a3-4446-a7c0-682c9f00e7de\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3458\",\r\n \"name\": \"PSTestTopic-ps3458\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps2103.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"92904ec8-dc62-4075-a85e-29c1b68bffe4\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2103\",\r\n \"name\": \"PSTestTopic-ps2103\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE0ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f756a589-07eb-42d5-9765-d9dc975be388" + "d077e626-898d-433d-861f-a6488c824882" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1065,25 +1065,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "12b26d17-9530-4948-923e-0a4dc215c350" + "506cc57c-1533-4993-9529-34d6aaf5c9b8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11993" ], "x-ms-correlation-request-id": [ - "42fb8dcd-4464-4eb1-a363-7a63e03683b6" + "0874f6d8-1657-479a-bd30-4fccc89b74be" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212050Z:42fb8dcd-4464-4eb1-a363-7a63e03683b6" + "WESTUS2:20221005T230221Z:0874f6d8-1657-479a-bd30-4fccc89b74be" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:20:50 GMT" + "Wed, 05 Oct 2022 23:02:20 GMT" ], "Content-Length": [ "12" @@ -1099,24 +1099,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE0ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "80bd3470-a7db-4883-b653-44b5ae4ac891" + "2e77d25d-73bb-4607-bfb3-d46eb3e994b0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1128,25 +1128,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "89c34343-9aca-4e1c-b09b-bd598423a130" + "9657ceed-d92d-4731-85e6-e19529f89346" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11997" ], "x-ms-correlation-request-id": [ - "e74ea87f-51a8-4980-9b36-27ca8d9317c9" + "7b1d837e-c650-4f32-8e18-862c15e03072" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212050Z:e74ea87f-51a8-4980-9b36-27ca8d9317c9" + "WESTUS2:20221005T230221Z:7b1d837e-c650-4f32-8e18-862c15e03072" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:20:50 GMT" + "Wed, 05 Oct 2022 23:02:21 GMT" ], "Content-Length": [ "12" @@ -1162,105 +1162,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/topics?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/topics?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "53016d4b-5a52-4832-b67c-05965a383768" + "189f0c49-edfa-4591-88ac-6bec03810723" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-original-request-ids": [ - "0b9087ab-1c81-4879-871a-bfdb582e4013", - "ba35a408-693a-4091-ad3f-7aaef484dae3", - "656db39c-3646-4870-8222-5a97022c60ce", - "4ba4e807-ea7f-414e-801a-5e15c399ffce", - "5bdde387-9581-4e6a-9575-819a2a9a3238", - "48c536ac-b095-4275-8dc0-fadb564c27dd", - "d6ff7f68-744a-4686-85ec-53e63b5a4b71", - "ee417640-7d55-45ec-9ae5-5e59d2aa2b5f", - "f802d12a-16c6-4749-b250-f945def0b46f", - "d8951d94-1ec9-4c0f-923f-f99d0ad52b9a", - "b670f89f-df19-4a22-9691-29c4274731f9", - "a1f39d77-b7d9-4ac7-a1df-4af4988967c8", - "3d30670f-1aa4-4a6c-adb5-7f0c853eaac9", - "f0d2e999-49e4-4c2f-b162-95cfa45e2b6e", - "335f8d18-d633-4da7-86fd-a5e855fa3321", - "cd406a4c-d965-4d4d-a63d-292b4cab61ae", - "15b9e7ca-4e77-4e8c-a17a-b68e803858e0", - "316b96d7-6f96-4010-8536-b816c5a46f9b", - "09fba029-0d18-417a-8ad3-262b3be16e84" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-request-id": [ - "745ea1a0-b943-4f5f-a555-3be58ed5cb94" - ], - "x-ms-correlation-request-id": [ - "745ea1a0-b943-4f5f-a555-3be58ed5cb94" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T211924Z:745ea1a0-b943-4f5f-a555-3be58ed5cb94" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sun, 01 May 2022 21:19:24 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "49140" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egarmrunnertopic6afdede1westus2.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"10740b58-993a-46e8-8e6a-7a32a1a6943f\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventGrid/topics/egarmrunnertopic6afdede1WestUS2\",\r\n \"name\": \"egarmrunnertopic6afdede1WestUS2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-name-local-test-west-us-2.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"e7fdb984-9488-4b9f-a2cc-d9dd21dd195a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-name-local-test-west-us-2\",\r\n \"name\": \"eg-latency-runner-topic-name-local-test-west-us-2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topic20-15-preview.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b9a766f9-9c61-4757-983b-1f59a7c15a00\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/topics/topic20-15-preview\",\r\n \"name\": \"topic20-15-preview\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://ahamadeventgridtopic.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"5c37cef8-20d6-4edc-9f0a-338c14e6d116\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rg-ahamadeventgrid/providers/Microsoft.EventGrid/topics/ahamadeventgridtopic\",\r\n \"name\": \"ahamadeventgridtopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://ahamadeventgridcustomevent-topic.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"TestID\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"TestTopic\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"TestEventTime\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"TestEventType\",\r\n \"defaultValue\": \"default\"\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"TestSubject\",\r\n \"defaultValue\": \"default\"\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": \"TestVersion\",\r\n \"defaultValue\": \"default\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"8acbb9b2-cdb2-496c-8d6f-a6988cd3e9de\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rg-ahamadeventgrid/providers/Microsoft.EventGrid/topics/ahamadeventgridcustomevent-topic\",\r\n \"name\": \"ahamadeventgridcustomevent-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://ahamadeventgridcloudevent-topic.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"f0663260-2693-4638-9ed6-6c1466f06778\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rg-ahamadeventgrid/providers/Microsoft.EventGrid/topics/ahamadeventgridcloudevent-topic\",\r\n \"name\": \"ahamadeventgridcloudevent-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testidentitytopic.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9942c237-3daf-44ec-a5f8-6ad1bc8dd506\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testIdentityTopic\",\r\n \"name\": \"testIdentityTopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopicidentity.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a58278ce-6a2e-4656-9b5e-315dac8103a6\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testtopicIdentity\",\r\n \"name\": \"testtopicIdentity\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopicidentity1101.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ee6199bd-d317-4ae1-8b88-8c58fb85948a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/amh/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testIdentity4\": {\r\n \"principalId\": \"42d73154-a6aa-4906-9905-40db6cc8ac0e\",\r\n \"clientId\": \"0b58b83a-f0d8-4084-b642-a9d2c7c214ac\"\r\n },\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/amh/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ahamadtestidentity3\": {\r\n \"principalId\": \"5735d6ab-f4a2-4df6-af43-458a0988fb13\",\r\n \"clientId\": \"ae2c9bf2-72e3-4e8f-aa21-e9356d68a8c2\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testtopicIdentity1101\",\r\n \"name\": \"testtopicIdentity1101\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopic123.eastus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c65d3bc2-ff60-4426-93f5-8b81776a3242\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testTopic123\",\r\n \"name\": \"testTopic123\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopictag1.westus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b355e557-a7f7-45b7-b559-b30db0845d93\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1153\": \"value1153\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testTopicTag1\",\r\n \"name\": \"testTopicTag1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-prod-usce-blockstorage-perf-topic.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"912ef55f-bf72-4e8b-8511-b273ed7c8600\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-prod-usce-blockstorage/providers/Microsoft.EventGrid/topics/eg-prod-usce-blockstorage-perf-topic\",\r\n \"name\": \"eg-prod-usce-blockstorage-perf-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://activitylogs.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"36d200cd-283d-4125-95f2-11f76725cea1\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": true\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/diagnosticlogstestingtobedeleted/providers/Microsoft.EventGrid/topics/activitylogs\",\r\n \"name\": \"activitylogs\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtest1.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"fcd3e3b6-4db8-4e5d-a019-465f55935204\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"86d36f1d-3c51-4cd3-a5b3-8ddce35086f4\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/testtest1\",\r\n \"name\": \"testtest1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://msistoragewhitelist.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d606706b-441e-412b-b6b9-d5e9d0d3801f\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"9463fb6c-e39f-4baf-a50f-35daada83413\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/msistoragewhitelist\",\r\n \"name\": \"msistoragewhitelist\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://brandon-neff-topic.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c01403fc-7ac1-4d95-b316-1ef712e38e3a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/brandon-test/providers/Microsoft.EventGrid/topics/brandon-neff-topic\",\r\n \"name\": \"brandon-neff-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://test-topic-rohkuma.eastus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"63c4876e-e076-446f-94a6-60fe31ff34fe\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/test-topic-rohkuma\",\r\n \"name\": \"test-topic-rohkuma\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps8442.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d3d4f815-6830-478a-9918-75bc23b7070b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7357/providers/Microsoft.EventGrid/topics/PSTestTopic-ps8442\",\r\n \"name\": \"PSTestTopic-ps8442\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps6197.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"ba5f2a9a-67fc-47e7-90be-36109d944e2e\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7357/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6197\",\r\n \"name\": \"PSTestTopic-ps6197\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps2795.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"8a757d70-d863-411e-8d10-f5aaf69cf1de\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7184/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2795\",\r\n \"name\": \"PSTestTopic-ps2795\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps6442.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9b944964-7da2-420b-93c9-2e71c8da9c4f\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9014/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6442\",\r\n \"name\": \"PSTestTopic-ps6442\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps2000.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d9232591-3f4e-49bc-a0d2-42fa8876aaad\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2000\",\r\n \"name\": \"PSTestTopic-ps2000\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps9975.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b585de46-c07c-4f7b-a5f0-8d0cf7ae23c1\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps9975\",\r\n \"name\": \"PSTestTopic-ps9975\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps2519.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"3804d155-4a70-4e8c-9d25-e8b438b5eb7a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2519\",\r\n \"name\": \"PSTestTopic-ps2519\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps8560.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"be1437b3-c6f5-496a-862e-3e5f4857738d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps8560\",\r\n \"name\": \"PSTestTopic-ps8560\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopicjapaneast.japaneast-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"f104383e-e905-4a51-8d80-09b72b8de109\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/topics/testtopicjapaneast\",\r\n \"name\": \"testtopicjapaneast\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eunoinputjsoninvalidcontrolcharacters.westeurope-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9eb7b0e2-aa54-4946-ac03-f4f1d4bf48aa\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/deletemenow/providers/Microsoft.EventGrid/topics/eunoinputjsoninvalidcontrolcharacters\",\r\n \"name\": \"eunoinputjsoninvalidcontrolcharacters\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://test2deletethistopic.southcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"278b1071-0990-4964-86a7-2ef1f607fbed\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/test2deletethistopic\",\r\n \"name\": \"test2deletethistopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testsfnotopic.southafricanorth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"0629b7ca-4fe8-4124-ab12-c470ec92ee02\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"southafricanorth\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testsfnotopic\",\r\n \"name\": \"testsfnotopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://newregiontopic.westus3-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"dfdf3887-a6a9-4ce0-a9e2-e5a1a2595cb0\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"west us 3\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/NewRegionRg/providers/Microsoft.EventGrid/topics/newRegionTopic\",\r\n \"name\": \"newRegionTopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://newregiondomain.westus3-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6072dc4c-9ef9-4369-b2c6-6b535482d182\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"west us 3\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/NewRegionRg/providers/Microsoft.EventGrid/topics/newRegionDomain\",\r\n \"name\": \"newRegionDomain\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicjiowest.jioindiawest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d91b70ca-ad29-4aea-9654-0c4515ca9501\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"jio india west\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/jioRg/providers/Microsoft.EventGrid/topics/topicjiowest\",\r\n \"name\": \"topicjiowest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testjioindiawest.jioindiawest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"7781a8ab-b24e-4386-94c4-e20080f6ed34\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"jioindiawest\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.EventGrid/topics/testjioindiawest\",\r\n \"name\": \"testjioindiawest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicjiocentral.jioindiacentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6364c055-5a4a-4273-9b3a-aafed2d9b46e\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"jio india central\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/jioRg/providers/Microsoft.EventGrid/topics/topicjiocentral\",\r\n \"name\": \"topicjiocentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicswedencentral.swedencentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c7cdbeb8-6db2-4b8c-87c4-9f52dd3abbee\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"sweden central\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/topics/topicswedencentral\",\r\n \"name\": \"topicswedencentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sampletopic34.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"55c51161-fe8c-4c42-bf9b-8097198d6802\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/SampleRg/providers/Microsoft.EventGrid/topics/SampleTopic34\",\r\n \"name\": \"SampleTopic34\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-use2-sla-control-topic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"736b24e4-e936-41a2-b3f2-a88ee48ae47a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2/providers/Microsoft.EventGrid/topics/eg-euap-use2-sla-control-topic\",\r\n \"name\": \"eg-euap-use2-sla-control-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-use2-delay-queues-topic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"30d2e26b-b11c-46bf-ace9-a8f51c7e262d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2/providers/Microsoft.EventGrid/topics/eg-euap-use2-delay-queues-topic\",\r\n \"name\": \"eg-euap-use2-delay-queues-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-use2-eventsizes-topic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"3f97e836-9d95-45af-8192-1065ead47c1b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2/providers/Microsoft.EventGrid/topics/eg-euap-use2-eventsizes-topic\",\r\n \"name\": \"eg-euap-use2-eventsizes-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-use2-batching-topic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"88fd4aff-d632-4439-830f-b340682d4f0d\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": []\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2/providers/Microsoft.EventGrid/topics/eg-euap-use2-batching-topic\",\r\n \"name\": \"eg-euap-use2-batching-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-use2-move-extents-topic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f9fdecc7-afd3-4723-b985-5fb5075230fa\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"newtag\": \"valuetag\",\r\n \"tag2\": \"tag2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2/providers/Microsoft.EventGrid/topics/eg-euap-use2-move-extents-topic\",\r\n \"name\": \"eg-euap-use2-move-extents-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://mparktopic-eastuseuap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"06d46586-b10b-448a-847c-38f50077bc4b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/mparkrg/providers/Microsoft.EventGrid/topics/mparktopic-eastuseuap\",\r\n \"name\": \"mparktopic-eastuseuap\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://msitestcheckaccess.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"bbfbd1c0-a9e0-458c-9697-661c4ce624bf\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"22fab3ca-4416-4809-8519-4893f684fb2d\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/msitestcheckaccess\",\r\n \"name\": \"msitestcheckaccess\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egltncygssn-ehmsidestwithdlqeastus2euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b9e9bc89-c16d-4d50-89c6-4f4b8f221de8\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"9f8c6140-50b9-4281-833f-c96930c4e5d1\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/topics/egltncygssn-ehmsidestwithdlqEastUS2EUAP\",\r\n \"name\": \"egltncygssn-ehmsidestwithdlqEastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://inputjsoninvalidcontrolcharacters.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"5c84f2bb-9840-4f62-bc75-15fdc72ffe09\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/deletemenow/providers/Microsoft.EventGrid/topics/inputjsoninvalidcontrolcharacters\",\r\n \"name\": \"inputjsoninvalidcontrolcharacters\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudgsehdest4f09218aeastus2euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ed5ef295-b451-40fd-aa55-3b73be0529bb\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/topics/egcrudgsehdest4f09218aEastUS2EUAP\",\r\n \"name\": \"egcrudgsehdest4f09218aEastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://dataresidencytest.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"412e4f67-a7b7-4f53-a1dd-63b72042d743\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/dataresidencytest\",\r\n \"name\": \"dataresidencytest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://dataresidencytest2.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1263af05-d00d-4e08-8d50-a6c13d23aeb4\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/dataresidencytest2\",\r\n \"name\": \"dataresidencytest2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eastustopic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9c58b457-3d1e-4546-bce3-af6284c49e1f\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/userassignedmsitest\": {\r\n \"principalId\": \"627b3605-44e9-4984-a4bf-d07d86debebd\",\r\n \"clientId\": \"75f3d6ef-091a-4f91-a196-ae827438098a\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/eastustopic\",\r\n \"name\": \"eastustopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-use2-dedicated-queues-topic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d7529586-644d-460c-ae02-70897a62813a\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2/providers/Microsoft.EventGrid/topics/eg-euap-use2-dedicated-queues-topic\",\r\n \"name\": \"eg-euap-use2-dedicated-queues-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://test.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"4535bb9f-f6b3-488f-887b-b6dccb8ba05d\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [],\r\n \"disableLocalAuth\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted/providers/Microsoft.EventGrid/topics/test\",\r\n \"name\": \"test\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateEndpointConnections\": [\r\n {\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink/providers/Microsoft.Network/privateEndpoints/pet-a\"\r\n },\r\n \"groupIds\": [\r\n \"topic\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Auto-approved\",\r\n \"actionsRequired\": \"None\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/VKUKKE-PRIVATELINK/providers/Microsoft.EventGrid/topics/TOPICNAME/privateEndpointConnections/PET-A.505CD90E-5F91-483B-972F-D29C642D02C9\",\r\n \"name\": \"pet-a-a\",\r\n \"type\": \"Microsoft.EventGrid/topics/privateEndpointConnections\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicname.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b4511d1a-a811-47e8-93c3-f5f7559d4be7\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink/providers/Microsoft.EventGrid/topics/topicName\",\r\n \"name\": \"topicName\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-7667.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d091ae17-8f61-4e2c-8395-264c98d65167\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1829/providers/Microsoft.EventGrid/topics/sdk-Topic-7667\",\r\n \"name\": \"sdk-Topic-7667\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://clibqwtzhrluvjkn3sbagbsl6shumvptj2hbjjh2.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"fcc7d2ed-a687-4105-9008-c0c7c9c2a620\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgqo6jlt4pldsfnqwcaoaxtulpcjdprpzvs3r7cndxiafbyupfi4qafuomg7uloke5q/providers/Microsoft.EventGrid/topics/clibqwtzhrluvjkn3sbagbsl6shumvptj2hbjjh2\",\r\n \"name\": \"clibqwtzhrluvjkn3sbagbsl6shumvptj2hbjjh2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://clixhxrmnxsdr3xdxeisbo7kzanythasstmtwnce.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"efef560e-8f8e-43ea-bf7b-87e9773a64c2\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgupp4yhpnutvm5dkdkkphj7e2yofi5oju2m67bhmx6ep2mrpxicmn4iffvtqgotnak/providers/Microsoft.EventGrid/topics/clixhxrmnxsdr3xdxeisbo7kzanythasstmtwnce\",\r\n \"name\": \"clixhxrmnxsdr3xdxeisbo7kzanythasstmtwnce\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://usertopic4.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"7f499083-12eb-40e7-96f2-3012206d6adf\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/userassignedmsitest1\": {\r\n \"principalId\": \"a2f990d8-2f0b-4266-a334-c57cf3bb51b7\",\r\n \"clientId\": \"4b0f3242-b99d-4632-87ae-939e9754ae24\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/usertopic4\",\r\n \"name\": \"usertopic4\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-5497.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"81bb24a4-a2a5-4728-8151-be0cd5e95c32\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-108/providers/Microsoft.EventGrid/topics/sdk-Topic-5497\",\r\n \"name\": \"sdk-Topic-5497\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-9908.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"be4f6976-844a-4f0c-80ab-2fd38dc4fd9c\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8557/providers/Microsoft.EventGrid/topics/sdk-Topic-9908\",\r\n \"name\": \"sdk-Topic-9908\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-7738.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9b872e0f-851d-416b-9668-cd3bbcd7f7d8\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-781/providers/Microsoft.EventGrid/topics/sdk-Topic-7738\",\r\n \"name\": \"sdk-Topic-7738\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-8109.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"235ef7cb-abaa-4cf8-98ce-5d54c814a403\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7222/providers/Microsoft.EventGrid/topics/sdk-Topic-8109\",\r\n \"name\": \"sdk-Topic-8109\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://usertopicupdate.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f50d8e74-f2cc-4756-90a3-d9e0613403d9\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/userassignedmsitest1\": {\r\n \"principalId\": \"a2f990d8-2f0b-4266-a334-c57cf3bb51b7\",\r\n \"clientId\": \"4b0f3242-b99d-4632-87ae-939e9754ae24\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/usertopicupdate\",\r\n \"name\": \"usertopicupdate\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://usertopicupdate1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"4682da4e-cfec-473d-b2b7-bedde9006f32\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/usertopicupdate1\",\r\n \"name\": \"usertopicupdate1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://usertopicupdate2.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"93f05da0-470f-4628-b452-7fc065ca56ae\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/userassignedmsitest1\": {\r\n \"principalId\": \"a2f990d8-2f0b-4266-a334-c57cf3bb51b7\",\r\n \"clientId\": \"4b0f3242-b99d-4632-87ae-939e9754ae24\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/usertopicupdate2\",\r\n \"name\": \"usertopicupdate2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://useridentitytopic1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ebf4a72a-a388-48f1-b7a2-8a890711d923\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/userassignedmsitest1\": {\r\n \"principalId\": \"a2f990d8-2f0b-4266-a334-c57cf3bb51b7\",\r\n \"clientId\": \"4b0f3242-b99d-4632-87ae-939e9754ae24\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/useridentitytopic1\",\r\n \"name\": \"useridentitytopic1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://systemtopics1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"28f8aac8-0a7e-46ca-8fd3-5f01bbb2380a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/userassignedmsitest1\": {\r\n \"principalId\": \"a2f990d8-2f0b-4266-a334-c57cf3bb51b7\",\r\n \"clientId\": \"4b0f3242-b99d-4632-87ae-939e9754ae24\"\r\n },\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/msi/providers/microsoft.managedidentity/userassignedidentities/userassignedmsitest2\": {\r\n \"principalId\": \"b44475fb-cb05-4023-8ce9-b470ef2e5501\",\r\n \"clientId\": \"38c40acd-ffe3-40f9-b5a9-b4bbb57f70b0\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/systemtopics1\",\r\n \"name\": \"systemtopics1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://mixedtopics1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"92b1639b-3378-4cac-a494-dd6af5026607\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"e72a5930-626e-4a87-992a-3de9834ecdd7\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/mixedtopics1\",\r\n \"name\": \"mixedtopics1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testmsitopic.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"dd94939c-e371-4da4-b050-fad3eb15b5ff\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/msi/providers/microsoft.managedidentity/userassignedidentities/userassignedmsitest1\": {\r\n \"principalId\": \"a2f990d8-2f0b-4266-a334-c57cf3bb51b7\",\r\n \"clientId\": \"4b0f3242-b99d-4632-87ae-939e9754ae24\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/testmsitopic\",\r\n \"name\": \"testmsitopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://kishptopic4.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"7e8931d3-da08-468d-842a-a12ee6d88caa\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/kishptopic4\",\r\n \"name\": \"kishptopic4\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testgroupmembership.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"5e9b351f-c8cc-4ecc-936f-849bf57ce891\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"3fe7cf75-da75-4c13-a528-af137dd7c701\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/userassignedmsitest1\": {\r\n \"principalId\": \"a2f990d8-2f0b-4266-a334-c57cf3bb51b7\",\r\n \"clientId\": \"4b0f3242-b99d-4632-87ae-939e9754ae24\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/testgroupmembership\",\r\n \"name\": \"testgroupmembership\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topictest.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"4b898cce-a626-47de-bda3-d5a2719fbbaa\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kevintest/providers/Microsoft.EventGrid/topics/topictest\",\r\n \"name\": \"topictest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://centralustopic.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"4502ac3b-1a46-4c53-a100-82d7be9ff402\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/userassignedmsitest\": {\r\n \"principalId\": \"627b3605-44e9-4984-a4bf-d07d86debebd\",\r\n \"clientId\": \"75f3d6ef-091a-4f91-a196-ae827438098a\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/centralustopic\",\r\n \"name\": \"centralustopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testauce2kishp.australiacentral2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"417b625d-63f8-4e2b-93fa-58fdc575b79b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"australiacentral2\",\r\n \"tags\": {\r\n \"aeg-partnernamespace-version\": \"v2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete/providers/Microsoft.EventGrid/topics/testauce2kishp\",\r\n \"name\": \"testauce2kishp\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://kishptestauc2runner.australiacentral2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1fe806ad-445e-4f01-8144-126e10d66973\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"australiacentral2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete/providers/Microsoft.EventGrid/topics/kishptestauc2runner\",\r\n \"name\": \"kishptestauc2runner\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicswedensouth.swedensouth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"db797f64-c2dc-448c-8d87-a5beaf9a06d5\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"sweden south\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/topics/topicswedensouth\",\r\n \"name\": \"topicswedensouth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicqctest.qatarcentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"e29335db-a60e-4adc-8956-cb7dc0d9a29b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"qatarcentral\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/topics/topicqctest\",\r\n \"name\": \"topicqctest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/topics?api-version=2021-12-01&%24skiptoken=TY9Rb8IgFIX%2fS2N9q22pWDUxC3Pt5qJTq%2b07FNYRLSWAxsz43wfOLCM33A9ycu65V0%2bwi1lycdDe9OrNs499gZblLivRxpt6X8ZIPQ3DFgvcsJYJM8DfJ8UGddeG%2bkR0rbg0vBM6hGRIRjBiARiTSTBMJ1FAEkwCSgkdj2kK0noYStWdOWVKhyteq053n2aQna3tq%2bI0NJ3ktX7Ckgdnq7G2MxCBOIhBEMX9nj7YWd2BiZkPiZ8SH4D703Y%2fwe4GpFi8OE7ZzuQMbRCqtm%2fyvSjR7%2fET6gokxd7KYgv7Ym4JRBYXu8qho2xtaQQhdJJ84ySoycvquJ2jdXusmgV6lvpuZfW1na2waNgjyT1ay8W%2fYA9Viy9%2fn3nuMKWuIO337PZ2Xe92%2bwE%3d\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/topics?api-version=2021-12-01&%24skiptoken=TY9Rb8IgFIX%2fS2N9q22pWDUxC3Pt5qJTq%2b07FNYRLSWAxsz43wfOLCM33A9ycu65V0%2bwi1lycdDe9OrNs499gZblLivRxpt6X8ZIPQ3DFgvcsJYJM8DfJ8UGddeG%2bkR0rbg0vBM6hGRIRjBiARiTSTBMJ1FAEkwCSgkdj2kK0noYStWdOWVKhyteq053n2aQna3tq%2bI0NJ3ktX7Ckgdnq7G2MxCBOIhBEMX9nj7YWd2BiZkPiZ8SH4D703Y%2fwe4GpFi8OE7ZzuQMbRCqtm%2fyvSjR7%2fET6gokxd7KYgv7Ym4JRBYXu8qho2xtaQQhdJJ84ySoycvquJ2jdXusmgV6lvpuZfW1na2waNgjyT1ay8W%2fYA9Viy9%2fn3nuMKWuIO337PZ2Xe92%2bwE%3d", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcz9hcGktdmVyc2lvbj0yMDIxLTEyLTAxJiUyNHNraXB0b2tlbj1UWTlSYjhJZ0ZJWCUyZlMyTjlxMjJwV0RVeEMzUHQ1cUpUcSUyYjA3Rk5ZUkxTV0F4c3o0M3dmT0xDTTMzQTl5Y3U2NVYwJTJid2kxbHljZERlOU9yTnM0OTlnWmJsTGl2UnhwdDZYOFpJUFEzREZndmNzSllKTThEZko4VUdkZGVHJTJia1IwcmJnMHZCTTZoR1JJUmpCaUFSaVRTVEJNSjFGQUVrd0NTZ2tkajJrSzBub1lTdFdkT1dWS2h5dGVxMDUzbjJhUW5hM3RxJTJiSTBOSjNrdFg3Q2tnZG5xN0cyTXhDQk9JaEJFTVg5bmo3WVdkMkJpWmtQaVo4U0g0RDcwM1klMmZ3ZTRHcEZpOE9FN1p6dVFNYlJDcXRtJTJmeXZTalI3JTJmRVQ2Z29reGQ3S1lndjdZbTRKUkJZWHU4cWhvMnh0YVFRaGRKSjg0eVNveWN2cXVKMmpkWHVzbWdWNmx2cHVaZlcxbmEyd2FOZ2p5VDFheThXJTJmWUE5Vml5OSUyZm4zbnVNS1d1SU8zMzdQWjJYZTkyJTJid0UlM2Q=", - "RequestMethod": "GET", "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "53016d4b-5a52-4832-b67c-05965a383768" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.16002", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" - ] - }, "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1269,19 +1188,37 @@ "no-cache" ], "x-ms-original-request-ids": [ - "17b61d25-c334-4e79-8f58-e278a0826e99" + "4337c02a-b0d2-40cb-ad71-f9bca706f7ef", + "833892d7-6705-4831-a083-df475c7e04c2", + "edd31338-b771-4c37-a64e-51a08873868b", + "70f57973-b777-41dc-bed4-1c830519daf4", + "484355e3-eae2-475b-b73b-feec7c8f4c41", + "589de5f0-755a-419c-923e-8b33437e7426", + "8a188762-3512-4c51-acf0-8a5685cc7300", + "c1047ba9-2949-403b-a21d-82c8e2cf90d8", + "226afb96-a0d7-4ce8-8465-9051a69b533e", + "4fc803b9-c530-41b8-9b1e-240de105b6c7", + "6bc7c643-8635-4cb9-89cf-1c18a04a011d", + "5d990d8a-c89d-4f1c-9ea9-14e0326c2ca8", + "d5daa6c2-4028-489b-94d1-def8871c4fda", + "4a0cd222-a027-45b8-b5e5-7c7e11ab956c", + "af792387-e7eb-4fe0-a6a8-9bfc8fd29025", + "3e015940-1737-46f8-9ea3-109d1f6ae384", + "cea9432e-e86e-4c34-98ef-9a267bc0d893", + "7e1ff67c-2bdf-4299-a57a-521ff97ef16f", + "40f21d57-6857-484f-a11a-a98a7f3a4c45" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11998" ], "x-ms-request-id": [ - "c96304f3-3465-4e0f-9b46-b970d22f0232" + "7466b35f-1c97-43d0-a413-d1f9b435e9ba" ], "x-ms-correlation-request-id": [ - "c96304f3-3465-4e0f-9b46-b970d22f0232" + "7466b35f-1c97-43d0-a413-d1f9b435e9ba" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T211924Z:c96304f3-3465-4e0f-9b46-b970d22f0232" + "WESTUS2:20221005T230048Z:7466b35f-1c97-43d0-a413-d1f9b435e9ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1290,7 +1227,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:19:24 GMT" + "Wed, 05 Oct 2022 23:00:48 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1299,29 +1236,28 @@ "-1" ], "Content-Length": [ - "699" + "55282" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-usce-dedicated-queues-topic.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"afd36bdf-cac2-4cd5-b13c-ccd283045855\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-usce/providers/Microsoft.EventGrid/topics/eg-euap-usce-dedicated-queues-topic\",\r\n \"name\": \"eg-euap-usce-dedicated-queues-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egarmrunnertopic6afdede1westus2.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"10740b58-993a-46e8-8e6a-7a32a1a6943f\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventGrid/topics/egarmrunnertopic6afdede1WestUS2\",\r\n \"name\": \"egarmrunnertopic6afdede1WestUS2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-name-local-test-west-us-2.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"e7fdb984-9488-4b9f-a2cc-d9dd21dd195a\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-name-local-test-west-us-2\",\r\n \"name\": \"eg-latency-runner-topic-name-local-test-west-us-2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topic20-15-preview.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b9a766f9-9c61-4757-983b-1f59a7c15a00\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/topics/topic20-15-preview\",\r\n \"name\": \"topic20-15-preview\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://ahamadeventgridtopic.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"5c37cef8-20d6-4edc-9f0a-338c14e6d116\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rg-ahamadeventgrid/providers/Microsoft.EventGrid/topics/ahamadeventgridtopic\",\r\n \"name\": \"ahamadeventgridtopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://ahamadeventgridcustomevent-topic.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"TestID\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"TestTopic\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"TestEventTime\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"TestEventType\",\r\n \"defaultValue\": \"default\"\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"TestSubject\",\r\n \"defaultValue\": \"default\"\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": \"TestVersion\",\r\n \"defaultValue\": \"default\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"8acbb9b2-cdb2-496c-8d6f-a6988cd3e9de\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rg-ahamadeventgrid/providers/Microsoft.EventGrid/topics/ahamadeventgridcustomevent-topic\",\r\n \"name\": \"ahamadeventgridcustomevent-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://ahamadeventgridcloudevent-topic.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"f0663260-2693-4638-9ed6-6c1466f06778\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/rg-ahamadeventgrid/providers/Microsoft.EventGrid/topics/ahamadeventgridcloudevent-topic\",\r\n \"name\": \"ahamadeventgridcloudevent-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testidentitytopic.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9942c237-3daf-44ec-a5f8-6ad1bc8dd506\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testIdentityTopic\",\r\n \"name\": \"testIdentityTopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopicidentity.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a58278ce-6a2e-4656-9b5e-315dac8103a6\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testtopicIdentity\",\r\n \"name\": \"testtopicIdentity\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopicidentity1101.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ee6199bd-d317-4ae1-8b88-8c58fb85948a\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/amh/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testIdentity4\": {\r\n \"principalId\": \"42d73154-a6aa-4906-9905-40db6cc8ac0e\",\r\n \"clientId\": \"0b58b83a-f0d8-4084-b642-a9d2c7c214ac\"\r\n },\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/amh/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ahamadtestidentity3\": {\r\n \"principalId\": \"5735d6ab-f4a2-4df6-af43-458a0988fb13\",\r\n \"clientId\": \"ae2c9bf2-72e3-4e8f-aa21-e9356d68a8c2\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testtopicIdentity1101\",\r\n \"name\": \"testtopicIdentity1101\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://brandonneff-topic.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"017b514e-2cd9-438a-93ee-8caea2b364e4\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [],\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/brandonneff/providers/Microsoft.EventGrid/topics/brandonneff-topic\",\r\n \"name\": \"brandonneff-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopic123.eastus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c65d3bc2-ff60-4426-93f5-8b81776a3242\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testTopic123\",\r\n \"name\": \"testTopic123\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopictag1.westus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b355e557-a7f7-45b7-b559-b30db0845d93\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1153\": \"value1153\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testTopicTag1\",\r\n \"name\": \"testTopicTag1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-prod-usce-blockstorage-perf-topic.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"912ef55f-bf72-4e8b-8511-b273ed7c8600\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-prod-usce-blockstorage/providers/Microsoft.EventGrid/topics/eg-prod-usce-blockstorage-perf-topic\",\r\n \"name\": \"eg-prod-usce-blockstorage-perf-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://activitylogs.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"36d200cd-283d-4125-95f2-11f76725cea1\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": true,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/diagnosticlogstestingtobedeleted/providers/Microsoft.EventGrid/topics/activitylogs\",\r\n \"name\": \"activitylogs\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtest1.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"fcd3e3b6-4db8-4e5d-a019-465f55935204\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"86d36f1d-3c51-4cd3-a5b3-8ddce35086f4\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/testtest1\",\r\n \"name\": \"testtest1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://msistoragewhitelist.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d606706b-441e-412b-b6b9-d5e9d0d3801f\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"9463fb6c-e39f-4baf-a50f-35daada83413\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/msistoragewhitelist\",\r\n \"name\": \"msistoragewhitelist\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://brandon-neff-topic.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c01403fc-7ac1-4d95-b316-1ef712e38e3a\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/brandon-test/providers/Microsoft.EventGrid/topics/brandon-neff-topic\",\r\n \"name\": \"brandon-neff-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://securedwebhooktopic.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"8d05815b-aa3d-4d0b-9015-cd3a0c248bee\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [],\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.EventGrid/topics/securedwebhooktopic\",\r\n \"name\": \"securedwebhooktopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://test-topic-rohkuma.eastus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"63c4876e-e076-446f-94a6-60fe31ff34fe\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/test-topic-rohkuma\",\r\n \"name\": \"test-topic-rohkuma\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps8442.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d3d4f815-6830-478a-9918-75bc23b7070b\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7357/providers/Microsoft.EventGrid/topics/PSTestTopic-ps8442\",\r\n \"name\": \"PSTestTopic-ps8442\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps6197.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"ba5f2a9a-67fc-47e7-90be-36109d944e2e\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7357/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6197\",\r\n \"name\": \"PSTestTopic-ps6197\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps2795.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"8a757d70-d863-411e-8d10-f5aaf69cf1de\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7184/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2795\",\r\n \"name\": \"PSTestTopic-ps2795\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps6442.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9b944964-7da2-420b-93c9-2e71c8da9c4f\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9014/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6442\",\r\n \"name\": \"PSTestTopic-ps6442\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtagsfix.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"0d0e53c3-69d2-4a94-afb8-2f53b0173010\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [],\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"testValue\": \"2022-05-20T02:05:15.165Z\",\r\n \"testValue2\": \"2025-02-21T12:15:22.365Z\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testTagsFix\",\r\n \"name\": \"testTagsFix\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps307.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f703752d-36ea-4480-b3d3-653d205b1717\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5181/providers/Microsoft.EventGrid/topics/PSTestTopic-ps307\",\r\n \"name\": \"PSTestTopic-ps307\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps6957.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"60157a5e-6002-4d6f-aff8-33c400726406\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6957\",\r\n \"name\": \"PSTestTopic-ps6957\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps1279.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"0f6451b2-0154-42d0-86bd-c11036d2806b\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Environment\": \"Test\",\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1279\",\r\n \"name\": \"PSTestTopic-ps1279\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps3458.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"841c8c79-80a3-4446-a7c0-682c9f00e7de\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3458\",\r\n \"name\": \"PSTestTopic-ps3458\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps2103.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"92904ec8-dc62-4075-a85e-29c1b68bffe4\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2103\",\r\n \"name\": \"PSTestTopic-ps2103\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopicjapaneast.japaneast-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"f104383e-e905-4a51-8d80-09b72b8de109\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/topics/testtopicjapaneast\",\r\n \"name\": \"testtopicjapaneast\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eunoinputjsoninvalidcontrolcharacters.westeurope-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9eb7b0e2-aa54-4946-ac03-f4f1d4bf48aa\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/deletemenow/providers/Microsoft.EventGrid/topics/eunoinputjsoninvalidcontrolcharacters\",\r\n \"name\": \"eunoinputjsoninvalidcontrolcharacters\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://brandonneff-topic-chinese.westeurope-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"4c62575e-e1c5-4e2e-933c-9f19ebac2f43\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [],\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EG-RG-啊阿埃挨哎唉D2丂丄丅丆丏丒丟D3狧狪狫㑳狵狶狹繭狾D4ˉD1D5U1U2U3㐀㐁㐂㐃㐄㐅㐆㐇A012S/providers/Microsoft.EventGrid/topics/brandonneff-topic-chinese\",\r\n \"name\": \"brandonneff-topic-chinese\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://test2deletethistopic.southcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"278b1071-0990-4964-86a7-2ef1f607fbed\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/test2deletethistopic\",\r\n \"name\": \"test2deletethistopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testsfnotopic.southafricanorth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"0629b7ca-4fe8-4124-ab12-c470ec92ee02\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"southafricanorth\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testsfnotopic\",\r\n \"name\": \"testsfnotopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://newregiontopic.westus3-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"dfdf3887-a6a9-4ce0-a9e2-e5a1a2595cb0\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"west us 3\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/NewRegionRg/providers/Microsoft.EventGrid/topics/newRegionTopic\",\r\n \"name\": \"newRegionTopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://newregiondomain.westus3-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6072dc4c-9ef9-4369-b2c6-6b535482d182\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"west us 3\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/NewRegionRg/providers/Microsoft.EventGrid/topics/newRegionDomain\",\r\n \"name\": \"newRegionDomain\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicjiowest.jioindiawest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d91b70ca-ad29-4aea-9654-0c4515ca9501\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"jio india west\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/jioRg/providers/Microsoft.EventGrid/topics/topicjiowest\",\r\n \"name\": \"topicjiowest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testjioindiawest.jioindiawest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"7781a8ab-b24e-4386-94c4-e20080f6ed34\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"jioindiawest\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.EventGrid/topics/testjioindiawest\",\r\n \"name\": \"testjioindiawest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicjiocentral.jioindiacentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6364c055-5a4a-4273-9b3a-aafed2d9b46e\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"jio india central\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/jioRg/providers/Microsoft.EventGrid/topics/topicjiocentral\",\r\n \"name\": \"topicjiocentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicswedencentral.swedencentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c7cdbeb8-6db2-4b8c-87c4-9f52dd3abbee\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"sweden central\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/topics/topicswedencentral\",\r\n \"name\": \"topicswedencentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicqctest.qatarcentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"e29335db-a60e-4adc-8956-cb7dc0d9a29b\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"qatarcentral\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/topics/topicqctest\",\r\n \"name\": \"topicqctest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sampletopic34.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"55c51161-fe8c-4c42-bf9b-8097198d6802\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/SampleRg/providers/Microsoft.EventGrid/topics/SampleTopic34\",\r\n \"name\": \"SampleTopic34\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-use2-sla-control-topic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"736b24e4-e936-41a2-b3f2-a88ee48ae47a\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2/providers/Microsoft.EventGrid/topics/eg-euap-use2-sla-control-topic\",\r\n \"name\": \"eg-euap-use2-sla-control-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-use2-delay-queues-topic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"30d2e26b-b11c-46bf-ace9-a8f51c7e262d\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2/providers/Microsoft.EventGrid/topics/eg-euap-use2-delay-queues-topic\",\r\n \"name\": \"eg-euap-use2-delay-queues-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-use2-eventsizes-topic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"3f97e836-9d95-45af-8192-1065ead47c1b\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2/providers/Microsoft.EventGrid/topics/eg-euap-use2-eventsizes-topic\",\r\n \"name\": \"eg-euap-use2-eventsizes-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-use2-batching-topic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"88fd4aff-d632-4439-830f-b340682d4f0d\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [],\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2/providers/Microsoft.EventGrid/topics/eg-euap-use2-batching-topic\",\r\n \"name\": \"eg-euap-use2-batching-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-use2-move-extents-topic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f9fdecc7-afd3-4723-b985-5fb5075230fa\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"newtag\": \"valuetag\",\r\n \"tag2\": \"tag2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2/providers/Microsoft.EventGrid/topics/eg-euap-use2-move-extents-topic\",\r\n \"name\": \"eg-euap-use2-move-extents-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://mparktopic-eastuseuap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"06d46586-b10b-448a-847c-38f50077bc4b\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/mparkrg/providers/Microsoft.EventGrid/topics/mparktopic-eastuseuap\",\r\n \"name\": \"mparktopic-eastuseuap\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://msitestcheckaccess.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"bbfbd1c0-a9e0-458c-9697-661c4ce624bf\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"22fab3ca-4416-4809-8519-4893f684fb2d\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/msitestcheckaccess\",\r\n \"name\": \"msitestcheckaccess\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egltncygssn-ehmsidestwithdlqeastus2euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b9e9bc89-c16d-4d50-89c6-4f4b8f221de8\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"9f8c6140-50b9-4281-833f-c96930c4e5d1\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/topics/egltncygssn-ehmsidestwithdlqEastUS2EUAP\",\r\n \"name\": \"egltncygssn-ehmsidestwithdlqEastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://inputjsoninvalidcontrolcharacters.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"5c84f2bb-9840-4f62-bc75-15fdc72ffe09\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/deletemenow/providers/Microsoft.EventGrid/topics/inputjsoninvalidcontrolcharacters\",\r\n \"name\": \"inputjsoninvalidcontrolcharacters\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudgsehdest4f09218aeastus2euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ed5ef295-b451-40fd-aa55-3b73be0529bb\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AegSyntheticRguse2euap/providers/Microsoft.EventGrid/topics/egcrudgsehdest4f09218aEastUS2EUAP\",\r\n \"name\": \"egcrudgsehdest4f09218aEastUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://dataresidencytest.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"412e4f67-a7b7-4f53-a1dd-63b72042d743\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinRegion\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/dataresidencytest\",\r\n \"name\": \"dataresidencytest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://dataresidencytest2.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1263af05-d00d-4e08-8d50-a6c13d23aeb4\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/dataresidencytest2\",\r\n \"name\": \"dataresidencytest2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eastustopic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9c58b457-3d1e-4546-bce3-af6284c49e1f\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/userassignedmsitest\": {\r\n \"principalId\": \"627b3605-44e9-4984-a4bf-d07d86debebd\",\r\n \"clientId\": \"75f3d6ef-091a-4f91-a196-ae827438098a\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/eastustopic\",\r\n \"name\": \"eastustopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-use2-dedicated-queues-topic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d7529586-644d-460c-ae02-70897a62813a\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2/providers/Microsoft.EventGrid/topics/eg-euap-use2-dedicated-queues-topic\",\r\n \"name\": \"eg-euap-use2-dedicated-queues-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://msitestcheckaccess2.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"bffd112b-a23b-4074-901a-279a023a8dd8\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"9173bde0-fa2f-4e89-9fb8-842e423b6746\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/msitestcheckaccess2\",\r\n \"name\": \"msitestcheckaccess2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateEndpointConnections\": [\r\n {\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink/providers/Microsoft.Network/privateEndpoints/pet-a\"\r\n },\r\n \"groupIds\": [\r\n \"topic\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Auto-approved\",\r\n \"actionsRequired\": \"None\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/VKUKKE-PRIVATELINK/providers/Microsoft.EventGrid/topics/TOPICNAME/privateEndpointConnections/PET-A.505CD90E-5F91-483B-972F-D29C642D02C9\",\r\n \"name\": \"pet-a-a\",\r\n \"type\": \"Microsoft.EventGrid/topics/privateEndpointConnections\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicname.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b4511d1a-a811-47e8-93c3-f5f7559d4be7\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink/providers/Microsoft.EventGrid/topics/topicName\",\r\n \"name\": \"topicName\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-7667.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d091ae17-8f61-4e2c-8395-264c98d65167\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1829/providers/Microsoft.EventGrid/topics/sdk-Topic-7667\",\r\n \"name\": \"sdk-Topic-7667\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://usertopic4.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"7f499083-12eb-40e7-96f2-3012206d6adf\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/userassignedmsitest1\": {\r\n \"principalId\": \"a2f990d8-2f0b-4266-a334-c57cf3bb51b7\",\r\n \"clientId\": \"4b0f3242-b99d-4632-87ae-939e9754ae24\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/usertopic4\",\r\n \"name\": \"usertopic4\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-9908.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"be4f6976-844a-4f0c-80ab-2fd38dc4fd9c\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8557/providers/Microsoft.EventGrid/topics/sdk-Topic-9908\",\r\n \"name\": \"sdk-Topic-9908\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-7738.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9b872e0f-851d-416b-9668-cd3bbcd7f7d8\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-781/providers/Microsoft.EventGrid/topics/sdk-Topic-7738\",\r\n \"name\": \"sdk-Topic-7738\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-8109.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"235ef7cb-abaa-4cf8-98ce-5d54c814a403\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7222/providers/Microsoft.EventGrid/topics/sdk-Topic-8109\",\r\n \"name\": \"sdk-Topic-8109\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://usertopicupdate.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f50d8e74-f2cc-4756-90a3-d9e0613403d9\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/userassignedmsitest1\": {\r\n \"principalId\": \"a2f990d8-2f0b-4266-a334-c57cf3bb51b7\",\r\n \"clientId\": \"4b0f3242-b99d-4632-87ae-939e9754ae24\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/usertopicupdate\",\r\n \"name\": \"usertopicupdate\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://usertopicupdate1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"4682da4e-cfec-473d-b2b7-bedde9006f32\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/usertopicupdate1\",\r\n \"name\": \"usertopicupdate1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://usertopicupdate2.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"93f05da0-470f-4628-b452-7fc065ca56ae\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/userassignedmsitest1\": {\r\n \"principalId\": \"a2f990d8-2f0b-4266-a334-c57cf3bb51b7\",\r\n \"clientId\": \"4b0f3242-b99d-4632-87ae-939e9754ae24\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/usertopicupdate2\",\r\n \"name\": \"usertopicupdate2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://useridentitytopic1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ebf4a72a-a388-48f1-b7a2-8a890711d923\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/userassignedmsitest1\": {\r\n \"principalId\": \"a2f990d8-2f0b-4266-a334-c57cf3bb51b7\",\r\n \"clientId\": \"4b0f3242-b99d-4632-87ae-939e9754ae24\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/useridentitytopic1\",\r\n \"name\": \"useridentitytopic1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://systemtopics1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"28f8aac8-0a7e-46ca-8fd3-5f01bbb2380a\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/userassignedmsitest1\": {\r\n \"principalId\": \"a2f990d8-2f0b-4266-a334-c57cf3bb51b7\",\r\n \"clientId\": \"4b0f3242-b99d-4632-87ae-939e9754ae24\"\r\n },\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/msi/providers/microsoft.managedidentity/userassignedidentities/userassignedmsitest2\": {\r\n \"principalId\": \"b44475fb-cb05-4023-8ce9-b470ef2e5501\",\r\n \"clientId\": \"38c40acd-ffe3-40f9-b5a9-b4bbb57f70b0\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/systemtopics1\",\r\n \"name\": \"systemtopics1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://mixedtopics1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"92b1639b-3378-4cac-a494-dd6af5026607\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"e72a5930-626e-4a87-992a-3de9834ecdd7\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centralus euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/mixedtopics1\",\r\n \"name\": \"mixedtopics1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testmsitopic.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"dd94939c-e371-4da4-b050-fad3eb15b5ff\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/msi/providers/microsoft.managedidentity/userassignedidentities/userassignedmsitest1\": {\r\n \"principalId\": \"a2f990d8-2f0b-4266-a334-c57cf3bb51b7\",\r\n \"clientId\": \"4b0f3242-b99d-4632-87ae-939e9754ae24\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/testmsitopic\",\r\n \"name\": \"testmsitopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://kishptopic4.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"7e8931d3-da08-468d-842a-a12ee6d88caa\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/kishptopic4\",\r\n \"name\": \"kishptopic4\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testgroupmembership.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"5e9b351f-c8cc-4ecc-936f-849bf57ce891\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"3fe7cf75-da75-4c13-a528-af137dd7c701\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/userassignedmsitest1\": {\r\n \"principalId\": \"a2f990d8-2f0b-4266-a334-c57cf3bb51b7\",\r\n \"clientId\": \"4b0f3242-b99d-4632-87ae-939e9754ae24\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/testgroupmembership\",\r\n \"name\": \"testgroupmembership\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://centralustopic.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"4502ac3b-1a46-4c53-a100-82d7be9ff402\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/userassignedmsitest\": {\r\n \"principalId\": \"627b3605-44e9-4984-a4bf-d07d86debebd\",\r\n \"clientId\": \"75f3d6ef-091a-4f91-a196-ae827438098a\"\r\n }\r\n }\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/centralustopic\",\r\n \"name\": \"centralustopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-usce-dedicated-queues-topic.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"afd36bdf-cac2-4cd5-b13c-ccd283045855\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-usce/providers/Microsoft.EventGrid/topics/eg-euap-usce-dedicated-queues-topic\",\r\n \"name\": \"eg-euap-usce-dedicated-queues-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtag1fix.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"eeb20af6-5222-402b-abbe-6e620d81ee44\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [],\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"test1\": \"value1\",\r\n \"time1\": \"Donnerstag, 19. Mai 2022 00:02\",\r\n \"time3\": \"2022-05-21T02:05:15.165Z\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testTag1Fix\",\r\n \"name\": \"testTag1Fix\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtagswithtopic1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"e3d92508-9fef-4f3c-8c7b-3fff4f4a54a0\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [],\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"key1\": \"2022-05-24T18:14:22.242Z\",\r\n \"key2\": \"2023-04-24T18:14:22.2Z\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.EventGrid/topics/testTagsWithTopic1\",\r\n \"name\": \"testTagsWithTopic1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicwithnoidentity2.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c09e86f5-dbfe-4e6a-9fa1-090c2553e667\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [],\r\n \"disableLocalAuth\": false,\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.EventGrid/topics/topicWithNoIdentity2\",\r\n \"name\": \"topicWithNoIdentity2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testauce2kishp.australiacentral2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"417b625d-63f8-4e2b-93fa-58fdc575b79b\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"australiacentral2\",\r\n \"tags\": {\r\n \"aeg-partnernamespace-version\": \"v2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete/providers/Microsoft.EventGrid/topics/testauce2kishp\",\r\n \"name\": \"testauce2kishp\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://kishptestauc2runner.australiacentral2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1fe806ad-445e-4f01-8144-126e10d66973\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"systemData\": null,\r\n \"location\": \"australiacentral2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete/providers/Microsoft.EventGrid/topics/kishptestauc2runner\",\r\n \"name\": \"kishptestauc2runner\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicswedensouth.swedensouth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"db797f64-c2dc-448c-8d87-a5beaf9a06d5\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"sweden south\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishprg/providers/Microsoft.EventGrid/topics/topicswedensouth\",\r\n \"name\": \"topicswedensouth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3845?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMzg0NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6648?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE0ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNjY0OD9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"cUsTomEVeNTSchEma\",\r\n \"inputSchemaMapping\": {\r\n \"inputSchemaMappingType\": \"Json\",\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIdField\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"MyTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\"\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"MySubjectField\"\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": \"MyDataVersionField\"\r\n }\r\n }\r\n },\r\n \"publicNetworkAccess\": \"enabled\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4778fa19-e30c-48a9-8bb4-86b59fd37aed" + "e866d548-6554-43ed-a239-642aac792498" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1330,6 +1266,7 @@ "712" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"cUsTomEVeNTSchEma\",\r\n \"inputSchemaMapping\": {\r\n \"inputSchemaMappingType\": \"Json\",\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIdField\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"MyTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\"\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"MySubjectField\"\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": \"MyDataVersionField\"\r\n }\r\n }\r\n },\r\n \"publicNetworkAccess\": \"enabled\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1344,28 +1281,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/ADD0186E-417E-453F-8A10-17AE36ADABA3?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/D8DBEDB4-D5A8-486B-82FB-F943B4EE9345?api-version=2022-06-15" ], "x-ms-request-id": [ - "11d0d0cf-8908-4578-b125-d35610aadc5b" + "4c4f32f1-5fad-41b5-aac7-94662be68f89" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-correlation-request-id": [ - "7697a020-29cb-478b-a3f1-95bbeb2947bd" + "8c595084-1cd7-4f45-97ed-2897b34deb77" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T211925Z:7697a020-29cb-478b-a3f1-95bbeb2947bd" + "WESTUS2:20221005T230050Z:8c595084-1cd7-4f45-97ed-2897b34deb77" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:19:25 GMT" + "Wed, 05 Oct 2022 23:00:50 GMT" ], "Content-Length": [ "784" @@ -1377,25 +1314,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIdField\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"MyTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"MySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": \"MyDataVersionField\",\r\n \"defaultValue\": null\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3845\",\r\n \"name\": \"PSTestTopic-ps3845\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIdField\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"MyTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"MySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": \"MyDataVersionField\",\r\n \"defaultValue\": null\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6648\",\r\n \"name\": \"PSTestTopic-ps6648\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/ADD0186E-417E-453F-8A10-17AE36ADABA3?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvQUREMDE4NkUtNDE3RS00NTNGLThBMTAtMTdBRTM2QURBQkEzP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/D8DBEDB4-D5A8-486B-82FB-F943B4EE9345?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRDhEQkVEQjQtRDVBOC00ODZCLTgyRkItRjk0M0I0RUU5MzQ1P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4778fa19-e30c-48a9-8bb4-86b59fd37aed" + "e866d548-6554-43ed-a239-642aac792498" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1407,25 +1344,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4a734a1d-8688-46ef-ab5b-943de53bcf09" + "bd705d8e-93ae-4c02-a489-a36bc0bee812" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11999" ], "x-ms-correlation-request-id": [ - "8b8dbbff-175e-4ba9-a42d-364b97a38d58" + "fde96fef-ea5e-42de-ad65-1089af8a99e0" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T211935Z:8b8dbbff-175e-4ba9-a42d-364b97a38d58" + "WESTUS2:20221005T230100Z:fde96fef-ea5e-42de-ad65-1089af8a99e0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:19:35 GMT" + "Wed, 05 Oct 2022 23:01:00 GMT" ], "Content-Length": [ "286" @@ -1437,25 +1374,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/ADD0186E-417E-453F-8A10-17AE36ADABA3?api-version=2021-12-01\",\r\n \"name\": \"add0186e-417e-453f-8a10-17ae36adaba3\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/D8DBEDB4-D5A8-486B-82FB-F943B4EE9345?api-version=2022-06-15\",\r\n \"name\": \"d8dbedb4-d5a8-486b-82fb-f943b4ee9345\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3845?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMzg0NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6648?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE0ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNjY0OD9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4778fa19-e30c-48a9-8bb4-86b59fd37aed" + "e866d548-6554-43ed-a239-642aac792498" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1467,28 +1404,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fdafcf0e-c6f8-4d5f-9e73-6e2578978203" + "00c55c0c-f114-40d9-a641-9d9955fbe38d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11998" ], "x-ms-correlation-request-id": [ - "5bd44bc0-b82c-44d1-97a7-c80476ddaa70" + "6bd81b1f-7828-4d4d-890c-5357879aa7df" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T211936Z:5bd44bc0-b82c-44d1-97a7-c80476ddaa70" + "WESTUS2:20221005T230101Z:6bd81b1f-7828-4d4d-890c-5357879aa7df" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:19:35 GMT" + "Wed, 05 Oct 2022 23:01:00 GMT" ], "Content-Length": [ - "914" + "954" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1497,28 +1434,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps3845.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIdField\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"MyTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"MySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": \"MyDataVersionField\",\r\n \"defaultValue\": null\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"91c64e96-70cf-425a-a2cf-8bec1e2530cf\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3845\",\r\n \"name\": \"PSTestTopic-ps3845\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps6648.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIdField\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"MyTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"MySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": \"MyDataVersionField\",\r\n \"defaultValue\": null\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"37d1a34b-8a2a-4550-ae35-de4a0981a4e0\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6648\",\r\n \"name\": \"PSTestTopic-ps6648\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3845?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMzg0NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6648?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE0ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNjY0OD9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b7cf865-8ca0-4fe6-bd9f-c1f45959bbdc" + "cfc91319-e1d6-488a-bb66-2d343c4bcaa4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1530,28 +1467,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "27ebd186-0d93-4555-bac4-12f754e1d146" + "6251044f-4ec5-404d-9dd4-54e38257e9d5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11999" ], "x-ms-correlation-request-id": [ - "09e404c7-2c75-466d-8802-db37a60450b9" + "8ab0cd57-03a3-4491-a85d-8801671695c8" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T211947Z:09e404c7-2c75-466d-8802-db37a60450b9" + "WESTUS2:20221005T230113Z:8ab0cd57-03a3-4491-a85d-8801671695c8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:19:46 GMT" + "Wed, 05 Oct 2022 23:01:13 GMT" ], "Content-Length": [ - "914" + "954" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1560,26 +1497,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps3845.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIdField\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"MyTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"MySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": \"MyDataVersionField\",\r\n \"defaultValue\": null\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"91c64e96-70cf-425a-a2cf-8bec1e2530cf\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3845\",\r\n \"name\": \"PSTestTopic-ps3845\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps6648.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIdField\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"MyTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"MySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": \"MyDataVersionField\",\r\n \"defaultValue\": null\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"37d1a34b-8a2a-4550-ae35-de4a0981a4e0\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6648\",\r\n \"name\": \"PSTestTopic-ps6648\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1054?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMTA1ND9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps5127?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE0ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNTEyNz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"customeventschema\",\r\n \"inputSchemaMapping\": {\r\n \"inputSchemaMappingType\": \"Json\",\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIdField\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"MyTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": \"MyEventTypeDefaultValue\"\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"MySubjectField\",\r\n \"defaultValue\": \"MySubjectDefaultValue\"\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": \"MyDataVersionField\",\r\n \"defaultValue\": \"MyDataVersionDefaultValue\"\r\n }\r\n }\r\n },\r\n \"publicNetworkAccess\": \"enabled\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e5922690-6587-41ac-9529-3c980b9a017e" + "55183cfc-f6d8-4774-a3a6-516cb958276c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1588,6 +1524,7 @@ "874" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"customeventschema\",\r\n \"inputSchemaMapping\": {\r\n \"inputSchemaMappingType\": \"Json\",\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIdField\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"MyTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": \"MyEventTypeDefaultValue\"\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"MySubjectField\",\r\n \"defaultValue\": \"MySubjectDefaultValue\"\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": \"MyDataVersionField\",\r\n \"defaultValue\": \"MyDataVersionDefaultValue\"\r\n }\r\n }\r\n },\r\n \"publicNetworkAccess\": \"enabled\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1602,28 +1539,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/75BA3392-5CA4-42C1-BC84-600D83A9C92B?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/8CDA39A3-2907-41B2-93C6-404F04D3DE28?api-version=2022-06-15" ], "x-ms-request-id": [ - "1638aa61-e444-411e-b2a5-00d5c8a844ad" + "921c5a05-b0b0-4d98-97da-9168f8f264bb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1199" ], "x-ms-correlation-request-id": [ - "7ee648df-8910-4d9d-8bbf-3b16591aed0d" + "51f59ebc-7e43-4ed6-9a51-a988928eb942" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T211936Z:7ee648df-8910-4d9d-8bbf-3b16591aed0d" + "WESTUS2:20221005T230102Z:51f59ebc-7e43-4ed6-9a51-a988928eb942" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:19:36 GMT" + "Wed, 05 Oct 2022 23:01:02 GMT" ], "Content-Length": [ "847" @@ -1635,25 +1572,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIdField\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"MyTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": \"MyEventTypeDefaultValue\"\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"MySubjectField\",\r\n \"defaultValue\": \"MySubjectDefaultValue\"\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": \"MyDataVersionField\",\r\n \"defaultValue\": \"MyDataVersionDefaultValue\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1054\",\r\n \"name\": \"PSTestTopic-ps1054\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIdField\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"MyTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": \"MyEventTypeDefaultValue\"\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"MySubjectField\",\r\n \"defaultValue\": \"MySubjectDefaultValue\"\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": \"MyDataVersionField\",\r\n \"defaultValue\": \"MyDataVersionDefaultValue\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps5127\",\r\n \"name\": \"PSTestTopic-ps5127\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/75BA3392-5CA4-42C1-BC84-600D83A9C92B?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNzVCQTMzOTItNUNBNC00MkMxLUJDODQtNjAwRDgzQTlDOTJCP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/8CDA39A3-2907-41B2-93C6-404F04D3DE28?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvOENEQTM5QTMtMjkwNy00MUIyLTkzQzYtNDA0RjA0RDNERTI4P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e5922690-6587-41ac-9529-3c980b9a017e" + "55183cfc-f6d8-4774-a3a6-516cb958276c" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1665,25 +1602,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3d851de7-4539-4450-b8ac-3b22d4390e3b" + "afefdfc3-60be-4642-a9fd-1b9740a85d0b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11999" ], "x-ms-correlation-request-id": [ - "22052f18-7e6e-464b-baf1-b778494bb8e0" + "a31b35a5-7c43-4785-9138-6006a2a083ae" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T211947Z:22052f18-7e6e-464b-baf1-b778494bb8e0" + "WESTUS2:20221005T230113Z:a31b35a5-7c43-4785-9138-6006a2a083ae" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:19:46 GMT" + "Wed, 05 Oct 2022 23:01:12 GMT" ], "Content-Length": [ "286" @@ -1695,25 +1632,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/75BA3392-5CA4-42C1-BC84-600D83A9C92B?api-version=2021-12-01\",\r\n \"name\": \"75ba3392-5ca4-42c1-bc84-600d83a9c92b\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/8CDA39A3-2907-41B2-93C6-404F04D3DE28?api-version=2022-06-15\",\r\n \"name\": \"8cda39a3-2907-41b2-93c6-404f04d3de28\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1054?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMTA1ND9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps5127?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE0ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNTEyNz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e5922690-6587-41ac-9529-3c980b9a017e" + "55183cfc-f6d8-4774-a3a6-516cb958276c" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1725,28 +1662,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4869806d-93d6-4ec6-a826-1f666481f557" + "d1f93b9c-9cd7-44f8-b35a-c1322e3f3e7a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11998" ], "x-ms-correlation-request-id": [ - "2d312cc7-0f4f-47ee-8879-9b2a5a7a16fb" + "bc2f53f0-9b2f-44ce-a57e-59d1c84df21f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T211947Z:2d312cc7-0f4f-47ee-8879-9b2a5a7a16fb" + "WESTUS2:20221005T230113Z:bc2f53f0-9b2f-44ce-a57e-59d1c84df21f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:19:46 GMT" + "Wed, 05 Oct 2022 23:01:12 GMT" ], "Content-Length": [ - "977" + "1017" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1755,28 +1692,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps1054.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIdField\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"MyTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": \"MyEventTypeDefaultValue\"\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"MySubjectField\",\r\n \"defaultValue\": \"MySubjectDefaultValue\"\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": \"MyDataVersionField\",\r\n \"defaultValue\": \"MyDataVersionDefaultValue\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"6d82bcd6-51eb-42c9-8b18-996935541c12\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1054\",\r\n \"name\": \"PSTestTopic-ps1054\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps5127.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIdField\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"MyTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": \"MyEventTypeDefaultValue\"\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"MySubjectField\",\r\n \"defaultValue\": \"MySubjectDefaultValue\"\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": \"MyDataVersionField\",\r\n \"defaultValue\": \"MyDataVersionDefaultValue\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"690bd8af-b7af-4217-b370-edf330c470e3\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps5127\",\r\n \"name\": \"PSTestTopic-ps5127\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2000?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMjAwMD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6957?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE0ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNjk1Nz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b68c3dde-6fb8-4f18-9d32-a1c12a518ea0" + "3b675976-5500-4993-b0f8-9e82154a21fb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1785,7 +1722,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/D1442733-F786-42E0-A27E-0C6DE777061E?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/B2233CC6-EB3D-4D01-8354-344DA6BC8C01?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -1794,7 +1731,7 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/D1442733-F786-42E0-A27E-0C6DE777061E?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/B2233CC6-EB3D-4D01-8354-344DA6BC8C01?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1803,19 +1740,19 @@ "14999" ], "x-ms-request-id": [ - "1fcffba4-98c5-46b9-9d33-bed4a6c56586" + "9cc585b1-c569-48f5-92d8-d92da8b51a60" ], "x-ms-correlation-request-id": [ - "1fcffba4-98c5-46b9-9d33-bed4a6c56586" + "9cc585b1-c569-48f5-92d8-d92da8b51a60" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T211947Z:1fcffba4-98c5-46b9-9d33-bed4a6c56586" + "WESTUS2:20221005T230114Z:9cc585b1-c569-48f5-92d8-d92da8b51a60" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:19:47 GMT" + "Wed, 05 Oct 2022 23:01:14 GMT" ], "Expires": [ "-1" @@ -1828,21 +1765,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/D1442733-F786-42E0-A27E-0C6DE777061E?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRDE0NDI3MzMtRjc4Ni00MkUwLUEyN0UtMEM2REU3NzcwNjFFP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/B2233CC6-EB3D-4D01-8354-344DA6BC8C01?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvQjIyMzNDQzYtRUIzRC00RDAxLTgzNTQtMzQ0REE2QkM4QzAxP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b68c3dde-6fb8-4f18-9d32-a1c12a518ea0" + "3b675976-5500-4993-b0f8-9e82154a21fb" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1854,25 +1791,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fd2e5f1d-864c-440c-bb81-339ad55da6dd" + "c9e42912-c93c-408d-98cf-5104be66f66f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11999" ], "x-ms-correlation-request-id": [ - "e62384de-6d81-4ebe-b4ee-15534e80fef7" + "f6e56d19-4a9f-4237-a714-de19fad90f19" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T211957Z:e62384de-6d81-4ebe-b4ee-15534e80fef7" + "WESTUS2:20221005T230124Z:f6e56d19-4a9f-4237-a714-de19fad90f19" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:19:57 GMT" + "Wed, 05 Oct 2022 23:01:24 GMT" ], "Content-Length": [ "286" @@ -1884,25 +1821,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/D1442733-F786-42E0-A27E-0C6DE777061E?api-version=2021-12-01\",\r\n \"name\": \"d1442733-f786-42e0-a27e-0c6de777061e\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/B2233CC6-EB3D-4D01-8354-344DA6BC8C01?api-version=2022-06-15\",\r\n \"name\": \"b2233cc6-eb3d-4d01-8354-344da6bc8c01\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/D1442733-F786-42E0-A27E-0C6DE777061E?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvRDE0NDI3MzMtRjc4Ni00MkUwLUEyN0UtMEM2REU3NzcwNjFFP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/B2233CC6-EB3D-4D01-8354-344DA6BC8C01?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvQjIyMzNDQzYtRUIzRC00RDAxLTgzNTQtMzQ0REE2QkM4QzAxP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b68c3dde-6fb8-4f18-9d32-a1c12a518ea0" + "3b675976-5500-4993-b0f8-9e82154a21fb" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1914,25 +1851,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7c50094d-059f-4e89-82d4-2b5c1c09f7fc" + "253a707d-e70b-422c-9028-ee046c1b5243" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11998" ], "x-ms-correlation-request-id": [ - "1a5b5ee5-efe4-4df3-8059-1c06adb4bffe" + "61025cac-4f31-41a5-b962-ec73922c3d5a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T211957Z:1a5b5ee5-efe4-4df3-8059-1c06adb4bffe" + "WESTUS2:20221005T230124Z:61025cac-4f31-41a5-b962-ec73922c3d5a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:19:57 GMT" + "Wed, 05 Oct 2022 23:01:24 GMT" ], "Expires": [ "-1" @@ -1945,24 +1882,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps9975?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzOTk3NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1279?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE0ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMTI3OT9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e09cd592-da5f-465c-b602-558a798e3f40" + "e6ee9460-8aa1-47ef-a100-1cdcfeb17067" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1971,7 +1908,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/67E2BD24-3BBF-4F78-BE7F-39E1F52F95F7?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/3FE0CE06-C4AA-4936-9EC9-B3B6F82A15DD?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -1980,28 +1917,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/67E2BD24-3BBF-4F78-BE7F-39E1F52F95F7?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/3FE0CE06-C4AA-4936-9EC9-B3B6F82A15DD?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-request-id": [ - "b3d9df97-0951-47b8-bca7-21f96b2ab48e" + "842682a6-4700-4a29-a761-aeb41a43977f" ], "x-ms-correlation-request-id": [ - "b3d9df97-0951-47b8-bca7-21f96b2ab48e" + "842682a6-4700-4a29-a761-aeb41a43977f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T211958Z:b3d9df97-0951-47b8-bca7-21f96b2ab48e" + "WESTUS2:20221005T230125Z:842682a6-4700-4a29-a761-aeb41a43977f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:19:57 GMT" + "Wed, 05 Oct 2022 23:01:25 GMT" ], "Expires": [ "-1" @@ -2014,21 +1951,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/67E2BD24-3BBF-4F78-BE7F-39E1F52F95F7?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNjdFMkJEMjQtM0JCRi00Rjc4LUJFN0YtMzlFMUY1MkY5NUY3P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/3FE0CE06-C4AA-4936-9EC9-B3B6F82A15DD?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvM0ZFMENFMDYtQzRBQS00OTM2LTlFQzktQjNCNkY4MkExNUREP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e09cd592-da5f-465c-b602-558a798e3f40" + "e6ee9460-8aa1-47ef-a100-1cdcfeb17067" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2040,25 +1977,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fcc0e1ed-f4ba-49e5-80ce-a444da6d6c21" + "ff02a458-c1f7-472d-9b47-5d3662eb7169" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11997" ], "x-ms-correlation-request-id": [ - "54d4a48f-df7a-43fe-ba28-88b6da45a693" + "7a24941b-3481-411e-b136-8292744d6962" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212008Z:54d4a48f-df7a-43fe-ba28-88b6da45a693" + "WESTUS2:20221005T230136Z:7a24941b-3481-411e-b136-8292744d6962" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:20:07 GMT" + "Wed, 05 Oct 2022 23:01:36 GMT" ], "Content-Length": [ "286" @@ -2070,25 +2007,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/67E2BD24-3BBF-4F78-BE7F-39E1F52F95F7?api-version=2021-12-01\",\r\n \"name\": \"67e2bd24-3bbf-4f78-be7f-39e1f52f95f7\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/3FE0CE06-C4AA-4936-9EC9-B3B6F82A15DD?api-version=2022-06-15\",\r\n \"name\": \"3fe0ce06-c4aa-4936-9ec9-b3b6f82a15dd\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/67E2BD24-3BBF-4F78-BE7F-39E1F52F95F7?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNjdFMkJEMjQtM0JCRi00Rjc4LUJFN0YtMzlFMUY1MkY5NUY3P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/3FE0CE06-C4AA-4936-9EC9-B3B6F82A15DD?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvM0ZFMENFMDYtQzRBQS00OTM2LTlFQzktQjNCNkY4MkExNUREP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e09cd592-da5f-465c-b602-558a798e3f40" + "e6ee9460-8aa1-47ef-a100-1cdcfeb17067" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2100,25 +2037,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "82ec0553-84bf-41d0-bd70-b4774d32e83d" + "f60d67f5-6689-4406-b943-472972f2dc01" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11996" ], "x-ms-correlation-request-id": [ - "b38c7cf9-4581-4b80-87e6-57b7cd59dcfc" + "30482dfb-cabd-4bb2-b511-392044cdd81b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212008Z:b38c7cf9-4581-4b80-87e6-57b7cd59dcfc" + "WESTUS2:20221005T230136Z:30482dfb-cabd-4bb2-b511-392044cdd81b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:20:07 GMT" + "Wed, 05 Oct 2022 23:01:36 GMT" ], "Expires": [ "-1" @@ -2131,24 +2068,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2519?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMjUxOT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3458?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE0ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMzQ1OD9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3b0666ec-5ccd-47a3-adf5-72083966f33f" + "bd73c4cf-cbac-4dcb-bf04-37c044ce913d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2157,7 +2094,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/419DACCA-8FE5-494B-8A7A-2879855BCB43?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/E5055289-AC7F-4F48-A332-7964682D0AB2?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -2166,28 +2103,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/419DACCA-8FE5-494B-8A7A-2879855BCB43?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E5055289-AC7F-4F48-A332-7964682D0AB2?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-request-id": [ - "00e23b96-f17d-4876-8cbf-a7761b294283" + "7220b9e9-6770-460f-a2da-3b53629d1b1d" ], "x-ms-correlation-request-id": [ - "00e23b96-f17d-4876-8cbf-a7761b294283" + "7220b9e9-6770-460f-a2da-3b53629d1b1d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212008Z:00e23b96-f17d-4876-8cbf-a7761b294283" + "WESTUS2:20221005T230137Z:7220b9e9-6770-460f-a2da-3b53629d1b1d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:20:08 GMT" + "Wed, 05 Oct 2022 23:01:37 GMT" ], "Expires": [ "-1" @@ -2200,21 +2137,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/419DACCA-8FE5-494B-8A7A-2879855BCB43?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNDE5REFDQ0EtOEZFNS00OTRCLThBN0EtMjg3OTg1NUJDQjQzP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E5055289-AC7F-4F48-A332-7964682D0AB2?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRTUwNTUyODktQUM3Ri00RjQ4LUEzMzItNzk2NDY4MkQwQUIyP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3b0666ec-5ccd-47a3-adf5-72083966f33f" + "bd73c4cf-cbac-4dcb-bf04-37c044ce913d" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2226,25 +2163,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d6138211-a41f-4515-8321-ab24fd4622a3" + "963af3ee-2019-4afc-a9b8-504b56f86fe3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11999" ], "x-ms-correlation-request-id": [ - "7afca130-2dbe-4205-a93f-031e86e11c5f" + "527b5192-4ac3-4cc7-b788-2ec0a9156909" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212018Z:7afca130-2dbe-4205-a93f-031e86e11c5f" + "WESTUS2:20221005T230147Z:527b5192-4ac3-4cc7-b788-2ec0a9156909" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:20:18 GMT" + "Wed, 05 Oct 2022 23:01:47 GMT" ], "Content-Length": [ "286" @@ -2256,25 +2193,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/419DACCA-8FE5-494B-8A7A-2879855BCB43?api-version=2021-12-01\",\r\n \"name\": \"419dacca-8fe5-494b-8a7a-2879855bcb43\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E5055289-AC7F-4F48-A332-7964682D0AB2?api-version=2022-06-15\",\r\n \"name\": \"e5055289-ac7f-4f48-a332-7964682d0ab2\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/419DACCA-8FE5-494B-8A7A-2879855BCB43?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNDE5REFDQ0EtOEZFNS00OTRCLThBN0EtMjg3OTg1NUJDQjQzP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/E5055289-AC7F-4F48-A332-7964682D0AB2?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvRTUwNTUyODktQUM3Ri00RjQ4LUEzMzItNzk2NDY4MkQwQUIyP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3b0666ec-5ccd-47a3-adf5-72083966f33f" + "bd73c4cf-cbac-4dcb-bf04-37c044ce913d" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2286,25 +2223,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "30a65bc5-9503-4038-9d66-4eb744810532" + "4f1c1844-2607-4b68-9ffc-b2430fa06da1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11998" ], "x-ms-correlation-request-id": [ - "859c5fdf-9460-497d-aa75-96765c88c504" + "10d7d992-437c-4acf-a4c7-ebebdb4e1495" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212018Z:859c5fdf-9460-497d-aa75-96765c88c504" + "WESTUS2:20221005T230147Z:10d7d992-437c-4acf-a4c7-ebebdb4e1495" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:20:18 GMT" + "Wed, 05 Oct 2022 23:01:47 GMT" ], "Expires": [ "-1" @@ -2317,24 +2254,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps8560?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzODU2MD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2103?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE0ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMjEwMz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5987c626-750b-47ce-9466-28a2829106a2" + "0a516c99-291b-424c-9d1b-fbb0144bfdda" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2343,7 +2280,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/0752D515-522A-42F9-8B0F-D818608FB63F?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/8437B00D-9196-473E-BE31-4211630AEDD1?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -2352,28 +2289,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/0752D515-522A-42F9-8B0F-D818608FB63F?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/8437B00D-9196-473E-BE31-4211630AEDD1?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14999" ], "x-ms-request-id": [ - "80fc967f-667e-4de5-bcfc-69499fdf297a" + "faa09a77-3f6e-42ae-b0fd-aea7ac7ca35a" ], "x-ms-correlation-request-id": [ - "80fc967f-667e-4de5-bcfc-69499fdf297a" + "faa09a77-3f6e-42ae-b0fd-aea7ac7ca35a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212019Z:80fc967f-667e-4de5-bcfc-69499fdf297a" + "WESTUS2:20221005T230148Z:faa09a77-3f6e-42ae-b0fd-aea7ac7ca35a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:20:18 GMT" + "Wed, 05 Oct 2022 23:01:48 GMT" ], "Expires": [ "-1" @@ -2386,21 +2323,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/0752D515-522A-42F9-8B0F-D818608FB63F?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMDc1MkQ1MTUtNTIyQS00MkY5LThCMEYtRDgxODYwOEZCNjNGP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/8437B00D-9196-473E-BE31-4211630AEDD1?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvODQzN0IwMEQtOTE5Ni00NzNFLUJFMzEtNDIxMTYzMEFFREQxP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5987c626-750b-47ce-9466-28a2829106a2" + "0a516c99-291b-424c-9d1b-fbb0144bfdda" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2412,25 +2349,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "24585538-ab80-41ea-8f5b-0836ab783f8e" + "c9ca6f11-7b71-4655-bf01-95e5cde7f69d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11999" ], "x-ms-correlation-request-id": [ - "90ecb4ff-e18d-4400-bcfb-9b9402cece9d" + "6c01e2e0-c946-4da3-9925-c8b89616e7fd" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212029Z:90ecb4ff-e18d-4400-bcfb-9b9402cece9d" + "WESTUS2:20221005T230158Z:6c01e2e0-c946-4da3-9925-c8b89616e7fd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:20:28 GMT" + "Wed, 05 Oct 2022 23:01:58 GMT" ], "Content-Length": [ "286" @@ -2442,25 +2379,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/0752D515-522A-42F9-8B0F-D818608FB63F?api-version=2021-12-01\",\r\n \"name\": \"0752d515-522a-42f9-8b0f-d818608fb63f\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/8437B00D-9196-473E-BE31-4211630AEDD1?api-version=2022-06-15\",\r\n \"name\": \"8437b00d-9196-473e-be31-4211630aedd1\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/0752D515-522A-42F9-8B0F-D818608FB63F?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMDc1MkQ1MTUtNTIyQS00MkY5LThCMEYtRDgxODYwOEZCNjNGP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/8437B00D-9196-473E-BE31-4211630AEDD1?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvODQzN0IwMEQtOTE5Ni00NzNFLUJFMzEtNDIxMTYzMEFFREQxP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5987c626-750b-47ce-9466-28a2829106a2" + "0a516c99-291b-424c-9d1b-fbb0144bfdda" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2472,25 +2409,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a45461d0-bf86-439e-991d-15fd68d06a6a" + "a22edeb9-a2ba-4bca-9485-77c08f18a42c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11998" ], "x-ms-correlation-request-id": [ - "f51df7d2-3d4c-49b0-8873-8bd8cb975d24" + "042cdeb2-bc35-4f97-9b8b-afdafca89b37" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212029Z:f51df7d2-3d4c-49b0-8873-8bd8cb975d24" + "WESTUS2:20221005T230158Z:042cdeb2-bc35-4f97-9b8b-afdafca89b37" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:20:28 GMT" + "Wed, 05 Oct 2022 23:01:58 GMT" ], "Expires": [ "-1" @@ -2503,24 +2440,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps3845?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMzg0NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps6648?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE0ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNjY0OD9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7c7cfecd-4c88-4ec6-9ef8-ec2c344566a4" + "9376f0c2-99c8-487a-a479-fc8337fbb3a1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2529,7 +2466,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/84B56022-6B3E-406B-9A21-7B9D2C38CBBF?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/37896FAE-8EB2-4342-BFC0-E2EBFE485F0D?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -2538,28 +2475,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/84B56022-6B3E-406B-9A21-7B9D2C38CBBF?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/37896FAE-8EB2-4342-BFC0-E2EBFE485F0D?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14995" + "14999" ], "x-ms-request-id": [ - "71fa529e-3188-4b40-8673-3eccd81e72ab" + "d5c717cb-bc00-4048-9981-2ead592411d1" ], "x-ms-correlation-request-id": [ - "71fa529e-3188-4b40-8673-3eccd81e72ab" + "d5c717cb-bc00-4048-9981-2ead592411d1" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212029Z:71fa529e-3188-4b40-8673-3eccd81e72ab" + "WESTUS2:20221005T230159Z:d5c717cb-bc00-4048-9981-2ead592411d1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:20:28 GMT" + "Wed, 05 Oct 2022 23:01:59 GMT" ], "Expires": [ "-1" @@ -2572,21 +2509,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/84B56022-6B3E-406B-9A21-7B9D2C38CBBF?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvODRCNTYwMjItNkIzRS00MDZCLTlBMjEtN0I5RDJDMzhDQkJGP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/37896FAE-8EB2-4342-BFC0-E2EBFE485F0D?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMzc4OTZGQUUtOEVCMi00MzQyLUJGQzAtRTJFQkZFNDg1RjBEP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7c7cfecd-4c88-4ec6-9ef8-ec2c344566a4" + "9376f0c2-99c8-487a-a479-fc8337fbb3a1" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2598,25 +2535,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6a39cf13-acfa-4158-9ef0-8d4e553752e7" + "a6aba301-fdf6-4bb3-b007-d2d66091d024" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11998" ], "x-ms-correlation-request-id": [ - "6a93cc43-9a95-4ab6-b94f-7455233fb1da" + "3e79cfe1-188b-4a54-8eb8-925687e16971" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212039Z:6a93cc43-9a95-4ab6-b94f-7455233fb1da" + "WESTUS2:20221005T230209Z:3e79cfe1-188b-4a54-8eb8-925687e16971" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:20:39 GMT" + "Wed, 05 Oct 2022 23:02:09 GMT" ], "Content-Length": [ "286" @@ -2628,25 +2565,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/84B56022-6B3E-406B-9A21-7B9D2C38CBBF?api-version=2021-12-01\",\r\n \"name\": \"84b56022-6b3e-406b-9a21-7b9d2c38cbbf\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/37896FAE-8EB2-4342-BFC0-E2EBFE485F0D?api-version=2022-06-15\",\r\n \"name\": \"37896fae-8eb2-4342-bfc0-e2ebfe485f0d\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/84B56022-6B3E-406B-9A21-7B9D2C38CBBF?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvODRCNTYwMjItNkIzRS00MDZCLTlBMjEtN0I5RDJDMzhDQkJGP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/37896FAE-8EB2-4342-BFC0-E2EBFE485F0D?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMzc4OTZGQUUtOEVCMi00MzQyLUJGQzAtRTJFQkZFNDg1RjBEP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7c7cfecd-4c88-4ec6-9ef8-ec2c344566a4" + "9376f0c2-99c8-487a-a479-fc8337fbb3a1" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2658,25 +2595,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "90d9f44b-cad6-4c1a-a57a-6b2684b4d26b" + "9da2da2c-f930-4ed7-8964-ddabe41c84d5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11997" ], "x-ms-correlation-request-id": [ - "05bf88b9-0ebd-475d-966d-61ff449c7b3b" + "234a8faa-6e2b-4a96-b969-eff45e8e810d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212039Z:05bf88b9-0ebd-475d-966d-61ff449c7b3b" + "WESTUS2:20221005T230210Z:234a8faa-6e2b-4a96-b969-eff45e8e810d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:20:39 GMT" + "Wed, 05 Oct 2022 23:02:09 GMT" ], "Expires": [ "-1" @@ -2689,24 +2626,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5340/providers/Microsoft.EventGrid/topics/PSTestTopic-ps1054?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczUzNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMTA1ND9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1486/providers/Microsoft.EventGrid/topics/PSTestTopic-ps5127?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczE0ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNTEyNz9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f1f769c6-a572-4adc-8e2b-846fdaa8e115" + "cef8dfff-43cd-4ed6-99fc-9df2ecd1d3ce" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2715,7 +2652,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/2085CFC9-499F-4596-B830-CBEA0D887B3F?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/8AF86EF3-5EEA-4D02-9399-B3D2C384BEDE?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -2724,28 +2661,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/2085CFC9-499F-4596-B830-CBEA0D887B3F?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/8AF86EF3-5EEA-4D02-9399-B3D2C384BEDE?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14994" + "14998" ], "x-ms-request-id": [ - "d9d22bee-67fe-4cc4-a724-3a2cfa9533e2" + "19845709-34b7-4895-8773-0cf690fd3768" ], "x-ms-correlation-request-id": [ - "d9d22bee-67fe-4cc4-a724-3a2cfa9533e2" + "19845709-34b7-4895-8773-0cf690fd3768" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212040Z:d9d22bee-67fe-4cc4-a724-3a2cfa9533e2" + "WESTUS2:20221005T230210Z:19845709-34b7-4895-8773-0cf690fd3768" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:20:40 GMT" + "Wed, 05 Oct 2022 23:02:10 GMT" ], "Expires": [ "-1" @@ -2758,21 +2695,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/2085CFC9-499F-4596-B830-CBEA0D887B3F?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMjA4NUNGQzktNDk5Ri00NTk2LUI4MzAtQ0JFQTBEODg3QjNGP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/8AF86EF3-5EEA-4D02-9399-B3D2C384BEDE?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvOEFGODZFRjMtNUVFQS00RDAyLTkzOTktQjNEMkMzODRCRURFP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f1f769c6-a572-4adc-8e2b-846fdaa8e115" + "cef8dfff-43cd-4ed6-99fc-9df2ecd1d3ce" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2784,25 +2721,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4e369aba-21cd-4df2-b3af-228099f6d805" + "c419b4c6-9a7f-4887-89cf-5ad652a33d49" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11996" ], "x-ms-correlation-request-id": [ - "06b4da35-133f-4c2d-8adc-c92f2921028c" + "a901efd3-d316-4474-a7cf-17fef553978a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212050Z:06b4da35-133f-4c2d-8adc-c92f2921028c" + "WESTUS2:20221005T230221Z:a901efd3-d316-4474-a7cf-17fef553978a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:20:50 GMT" + "Wed, 05 Oct 2022 23:02:20 GMT" ], "Content-Length": [ "286" @@ -2814,25 +2751,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/2085CFC9-499F-4596-B830-CBEA0D887B3F?api-version=2021-12-01\",\r\n \"name\": \"2085cfc9-499f-4596-b830-cbea0d887b3f\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/8AF86EF3-5EEA-4D02-9399-B3D2C384BEDE?api-version=2022-06-15\",\r\n \"name\": \"8af86ef3-5eea-4d02-9399-b3d2c384bede\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/2085CFC9-499F-4596-B830-CBEA0D887B3F?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMjA4NUNGQzktNDk5Ri00NTk2LUI4MzAtQ0JFQTBEODg3QjNGP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/8AF86EF3-5EEA-4D02-9399-B3D2C384BEDE?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvOEFGODZFRjMtNUVFQS00RDAyLTkzOTktQjNEMkMzODRCRURFP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f1f769c6-a572-4adc-8e2b-846fdaa8e115" + "cef8dfff-43cd-4ed6-99fc-9df2ecd1d3ce" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2844,25 +2781,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8473601f-72e1-49c3-9069-0276b28717ed" + "a4550390-d204-4897-84ee-b98d59db4e00" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11995" ], "x-ms-correlation-request-id": [ - "2200d773-775a-44ef-b964-4b1361ad20ed" + "05f4cda4-81b7-4afa-b4c8-db053824188f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212050Z:2200d773-775a-44ef-b964-4b1361ad20ed" + "WESTUS2:20221005T230221Z:05f4cda4-81b7-4afa-b4c8-db053824188f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:20:50 GMT" + "Wed, 05 Oct 2022 23:02:20 GMT" ], "Expires": [ "-1" @@ -2875,24 +2812,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps5340?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczUzNDA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps1486?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczE0ODY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f8216f5-e666-4a8b-9dbb-21206dba277e" + "2ceb79c3-b074-4feb-91cf-4af2629b763e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2901,22 +2838,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzUzNDAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzE0ODYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14995" + "14999" ], "x-ms-request-id": [ - "2707b054-ce78-45ca-9fff-50a46de3a5d5" + "694c1bde-e278-4288-8c88-c273f4196087" ], "x-ms-correlation-request-id": [ - "2707b054-ce78-45ca-9fff-50a46de3a5d5" + "694c1bde-e278-4288-8c88-c273f4196087" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212051Z:2707b054-ce78-45ca-9fff-50a46de3a5d5" + "WESTUS2:20221005T230223Z:694c1bde-e278-4288-8c88-c273f4196087" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2925,7 +2862,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:20:50 GMT" + "Wed, 05 Oct 2022 23:02:22 GMT" ], "Expires": [ "-1" @@ -2938,18 +2875,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzUzNDAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpVek5EQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzE0ODYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpFME9EWXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2958,16 +2895,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11994" ], "x-ms-request-id": [ - "4c84e3d1-17fa-4b7f-b87c-a75b676b017f" + "6fd0b94c-9d1f-4b4b-b361-b8b000f4f79f" ], "x-ms-correlation-request-id": [ - "4c84e3d1-17fa-4b7f-b87c-a75b676b017f" + "6fd0b94c-9d1f-4b4b-b361-b8b000f4f79f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212106Z:4c84e3d1-17fa-4b7f-b87c-a75b676b017f" + "WESTUS2:20221005T230238Z:6fd0b94c-9d1f-4b4b-b361-b8b000f4f79f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2976,7 +2913,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:21:06 GMT" + "Wed, 05 Oct 2022 23:02:38 GMT" ], "Expires": [ "-1" @@ -2989,18 +2926,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzUzNDAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpVek5EQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzE0ODYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpFME9EWXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3009,16 +2946,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11993" ], "x-ms-request-id": [ - "a98728a2-830a-4050-bde3-cb5208b73436" + "d2485277-c1b2-4d70-93b6-f84bb5438eed" ], "x-ms-correlation-request-id": [ - "a98728a2-830a-4050-bde3-cb5208b73436" + "d2485277-c1b2-4d70-93b6-f84bb5438eed" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212106Z:a98728a2-830a-4050-bde3-cb5208b73436" + "WESTUS2:20221005T230238Z:d2485277-c1b2-4d70-93b6-f84bb5438eed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3027,7 +2964,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:21:06 GMT" + "Wed, 05 Oct 2022 23:02:38 GMT" ], "Expires": [ "-1" @@ -3042,13 +2979,13 @@ ], "Names": { "": [ - "ps2000", - "ps9975", - "ps2519", - "ps8560", - "ps3845", - "ps1054", - "ps5340" + "ps6957", + "ps1279", + "ps3458", + "ps2103", + "ps6648", + "ps5127", + "ps1486" ] }, "Variables": { diff --git a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.TopicTests/EventGrid_TopicsIpFiltering.json b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.TopicTests/EventGrid_TopicsIpFiltering.json index 35c6a30efad0..7d6910931b20 100644 --- a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.TopicTests/EventGrid_TopicsIpFiltering.json +++ b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.TopicTests/EventGrid_TopicsIpFiltering.json @@ -1,22 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps8882?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczg4ODI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps8415?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczg0MTU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7d770d4d-5632-4704-a53c-dfd0e5dfd4c8" + "11b2d295-339c-4303-aa73-be9e7c6a5274" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,6 +24,7 @@ "35" ] }, + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "999face1-cb6a-44d9-bcff-57264fc2a87c" + "83dc80c9-1865-4c75-a1f6-be96901507f4" ], "x-ms-correlation-request-id": [ - "999face1-cb6a-44d9-bcff-57264fc2a87c" + "83dc80c9-1865-4c75-a1f6-be96901507f4" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212409Z:999face1-cb6a-44d9-bcff-57264fc2a87c" + "WESTUS2:20221005T230706Z:83dc80c9-1865-4c75-a1f6-be96901507f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:24:08 GMT" + "Wed, 05 Oct 2022 23:07:05 GMT" ], "Content-Length": [ "186" @@ -63,26 +63,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8882\",\r\n \"name\": \"RGName-ps8882\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8415\",\r\n \"name\": \"RGName-ps8415\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8882/providers/Microsoft.EventGrid/topics/PSTestTopic-ps7861?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczg4ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNzg2MT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8415/providers/Microsoft.EventGrid/topics/PSTestTopic-ps198?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczg0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMTk4P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "748b2af1-a432-4adc-a598-7e6407543888" + "51d6967e-345b-4cd8-9caf-c809ae302094" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -91,6 +90,7 @@ "327" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -105,10 +105,10 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/7B8DBE61-578D-4F4E-A7A7-772EBE2A42CD?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4F438EA6-D211-4458-90F2-82F719841133?api-version=2022-06-15" ], "x-ms-request-id": [ - "d19b93cc-1c90-42e7-b507-238796742b54" + "52644abc-d39f-43b7-8845-0d6ed592a97a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -117,19 +117,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "9a43977e-6d24-4c9b-87b9-c9ff71ce38e0" + "1e1e05a4-0813-4747-8f72-094a17eb1262" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212411Z:9a43977e-6d24-4c9b-87b9-c9ff71ce38e0" + "WESTUS2:20221005T230708Z:1e1e05a4-0813-4747-8f72-094a17eb1262" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:24:11 GMT" + "Wed, 05 Oct 2022 23:07:07 GMT" ], "Content-Length": [ - "493" + "491" ], "Content-Type": [ "application/json; charset=utf-8" @@ -138,26 +138,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8882/providers/Microsoft.EventGrid/topics/PSTestTopic-ps7861\",\r\n \"name\": \"PSTestTopic-ps7861\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8415/providers/Microsoft.EventGrid/topics/PSTestTopic-ps198\",\r\n \"name\": \"PSTestTopic-ps198\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8882/providers/Microsoft.EventGrid/topics/PSTestTopic-ps7861?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczg4ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNzg2MT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8415/providers/Microsoft.EventGrid/topics/PSTestTopic-ps198?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczg0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMTk4P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.3.0.0/16\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "835d2337-8af5-4e43-bea8-63c3a2741e46" + "a6c7370d-5830-40a0-bba6-7853aa135ec5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -166,6 +165,7 @@ "280" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.3.0.0/16\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -180,31 +180,31 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/5E559CFD-76B3-4423-92B4-D1910AEEF311?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/6CD8F039-7C48-440A-B3D1-425242BAE45E?api-version=2022-06-15" ], "x-ms-request-id": [ - "59c582d3-617a-4aee-8fe7-e3ed41c8a8ad" + "cd191b5d-55fe-4bb8-8295-938d5af49296" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "0ed0a794-119c-4f21-bcc1-522e5af4c85d" + "c600c31e-f41b-4190-837a-d6ad6282eb5a" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212423Z:0ed0a794-119c-4f21-bcc1-522e5af4c85d" + "WESTUS2:20221005T230831Z:c600c31e-f41b-4190-837a-d6ad6282eb5a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:24:22 GMT" + "Wed, 05 Oct 2022 23:08:30 GMT" ], "Content-Length": [ - "456" + "454" ], "Content-Type": [ "application/json; charset=utf-8" @@ -213,26 +213,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"endpoint\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.3.0.0/16\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8882/providers/Microsoft.EventGrid/topics/PSTestTopic-ps7861\",\r\n \"name\": \"PSTestTopic-ps7861\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"endpoint\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.3.0.0/16\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8415/providers/Microsoft.EventGrid/topics/PSTestTopic-ps198\",\r\n \"name\": \"PSTestTopic-ps198\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8882/providers/Microsoft.EventGrid/topics/PSTestTopic-ps7861?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczg4ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNzg2MT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8415/providers/Microsoft.EventGrid/topics/PSTestTopic-ps198?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczg0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMTk4P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval10\",\r\n \"test2\": \"testval20\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b82491b6-d60d-4af4-9c22-6799dfe40bd3" + "f998ed66-608a-443d-bbfd-a7c09c89d0b1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -241,6 +240,7 @@ "360" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval10\",\r\n \"test2\": \"testval20\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -255,31 +255,31 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/28C14614-C80E-4F81-9678-0317A0F084C2?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/AA92C54D-9FC2-4E28-B773-32AF8AA9EFB1?api-version=2022-06-15" ], "x-ms-request-id": [ - "9a53cfde-0986-4ec2-8828-12d8e63b2ae1" + "2dd0b146-fc13-4db6-a75f-6630adfdd190" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "403d8171-36de-446a-ac4a-ca75bfd07e21" + "b7d37804-6f6f-4cc7-83a8-139165fc2821" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212434Z:403d8171-36de-446a-ac4a-ca75bfd07e21" + "WESTUS2:20221005T230843Z:b7d37804-6f6f-4cc7-83a8-139165fc2821" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:24:34 GMT" + "Wed, 05 Oct 2022 23:08:42 GMT" ], "Content-Length": [ - "498" + "496" ], "Content-Type": [ "application/json; charset=utf-8" @@ -288,25 +288,85 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"endpoint\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval10\",\r\n \"test2\": \"testval20\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8882/providers/Microsoft.EventGrid/topics/PSTestTopic-ps7861\",\r\n \"name\": \"PSTestTopic-ps7861\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"endpoint\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval10\",\r\n \"test2\": \"testval20\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8415/providers/Microsoft.EventGrid/topics/PSTestTopic-ps198\",\r\n \"name\": \"PSTestTopic-ps198\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/7B8DBE61-578D-4F4E-A7A7-772EBE2A42CD?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvN0I4REJFNjEtNTc4RC00RjRFLUE3QTctNzcyRUJFMkE0MkNEP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4F438EA6-D211-4458-90F2-82F719841133?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNEY0MzhFQTYtRDIxMS00NDU4LTkwRjItODJGNzE5ODQxMTMzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "51d6967e-345b-4cd8-9caf-c809ae302094" + ], + "User-Agent": [ + "FxVersion/4.700.22.41602", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e24e5af0-d4b4-4a6d-b5ed-b26e986dd1dd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "92421409-b674-413a-9016-74e99a1b39f3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221005T230718Z:92421409-b674-413a-9016-74e99a1b39f3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 05 Oct 2022 23:07:17 GMT" + ], + "Content-Length": [ + "287" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4F438EA6-D211-4458-90F2-82F719841133?api-version=2022-06-15\",\r\n \"name\": \"4f438ea6-d211-4458-90f2-82f719841133\",\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4F438EA6-D211-4458-90F2-82F719841133?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNEY0MzhFQTYtRDIxMS00NDU4LTkwRjItODJGNzE5ODQxMTMzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", + "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "748b2af1-a432-4adc-a598-7e6407543888" + "51d6967e-345b-4cd8-9caf-c809ae302094" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -318,28 +378,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "965b2c5b-b985-4461-bff4-cab5b48e107a" + "d69e958a-86ed-4594-ba63-562d3bfe6b0b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11996" ], "x-ms-correlation-request-id": [ - "eb5ea096-38d5-4ca3-b9ec-99e9522e3e05" + "84e002d0-b23c-45e7-bf5b-e728d18eb319" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212421Z:eb5ea096-38d5-4ca3-b9ec-99e9522e3e05" + "WESTUS2:20221005T230728Z:84e002d0-b23c-45e7-bf5b-e728d18eb319" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:24:21 GMT" + "Wed, 05 Oct 2022 23:07:27 GMT" ], "Content-Length": [ - "286" + "287" ], "Content-Type": [ "application/json; charset=utf-8" @@ -348,25 +408,85 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/7B8DBE61-578D-4F4E-A7A7-772EBE2A42CD?api-version=2021-12-01\",\r\n \"name\": \"7b8dbe61-578d-4f4e-a7a7-772ebe2a42cd\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4F438EA6-D211-4458-90F2-82F719841133?api-version=2022-06-15\",\r\n \"name\": \"4f438ea6-d211-4458-90f2-82f719841133\",\r\n \"status\": \"InProgress\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8882/providers/Microsoft.EventGrid/topics/PSTestTopic-ps7861?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczg4ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNzg2MT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4F438EA6-D211-4458-90F2-82F719841133?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNEY0MzhFQTYtRDIxMS00NDU4LTkwRjItODJGNzE5ODQxMTMzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "51d6967e-345b-4cd8-9caf-c809ae302094" + ], + "User-Agent": [ + "FxVersion/4.700.22.41602", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6f7760ec-70ac-47d8-9e5d-625bf7147fb9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "689d3e15-72bc-4dbc-8b79-a10279bb625b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221005T230738Z:689d3e15-72bc-4dbc-8b79-a10279bb625b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 05 Oct 2022 23:07:37 GMT" + ], + "Content-Length": [ + "287" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4F438EA6-D211-4458-90F2-82F719841133?api-version=2022-06-15\",\r\n \"name\": \"4f438ea6-d211-4458-90f2-82f719841133\",\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4F438EA6-D211-4458-90F2-82F719841133?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNEY0MzhFQTYtRDIxMS00NDU4LTkwRjItODJGNzE5ODQxMTMzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", + "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "748b2af1-a432-4adc-a598-7e6407543888" + "51d6967e-345b-4cd8-9caf-c809ae302094" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -378,28 +498,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9f59a7ac-581d-47ca-b654-8fdb46272b58" + "afdef534-d7e9-4707-99a1-2c4b89525306" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11994" ], "x-ms-correlation-request-id": [ - "491f70d3-713a-4bac-979e-442b38dc0011" + "c9bbcde3-eb2f-49f4-9bcd-3c8b97127beb" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212422Z:491f70d3-713a-4bac-979e-442b38dc0011" + "WESTUS2:20221005T230748Z:c9bbcde3-eb2f-49f4-9bcd-3c8b97127beb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:24:21 GMT" + "Wed, 05 Oct 2022 23:07:47 GMT" ], "Content-Length": [ - "623" + "287" ], "Content-Type": [ "application/json; charset=utf-8" @@ -408,28 +528,145 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps7861.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"670cb114-d6ab-4387-8d24-cfcfde846898\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8882/providers/Microsoft.EventGrid/topics/PSTestTopic-ps7861\",\r\n \"name\": \"PSTestTopic-ps7861\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4F438EA6-D211-4458-90F2-82F719841133?api-version=2022-06-15\",\r\n \"name\": \"4f438ea6-d211-4458-90f2-82f719841133\",\r\n \"status\": \"InProgress\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8882/providers/Microsoft.EventGrid/topics/PSTestTopic-ps7861?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczg4ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNzg2MT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4F438EA6-D211-4458-90F2-82F719841133?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNEY0MzhFQTYtRDIxMS00NDU4LTkwRjItODJGNzE5ODQxMTMzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "51d6967e-345b-4cd8-9caf-c809ae302094" + ], + "User-Agent": [ + "FxVersion/4.700.22.41602", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e527d5e1-0e18-420d-88a6-74d9d7c994fb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "6f3bed4c-3d7b-408a-acb4-22676682a7ac" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221005T230758Z:6f3bed4c-3d7b-408a-acb4-22676682a7ac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 05 Oct 2022 23:07:57 GMT" + ], + "Content-Length": [ + "287" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4F438EA6-D211-4458-90F2-82F719841133?api-version=2022-06-15\",\r\n \"name\": \"4f438ea6-d211-4458-90f2-82f719841133\",\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4F438EA6-D211-4458-90F2-82F719841133?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNEY0MzhFQTYtRDIxMS00NDU4LTkwRjItODJGNzE5ODQxMTMzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", + "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ff8fd7b4-a7a3-4939-acf4-1e2ee98f53dc" + "51d6967e-345b-4cd8-9caf-c809ae302094" ], - "Accept-Language": [ - "en-US" + "User-Agent": [ + "FxVersion/4.700.22.41602", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bd5241c4-4bb6-4ffb-a201-d016fbfcf18c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "45198382-5cc4-4a4c-962d-13f7c415a348" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221005T230808Z:45198382-5cc4-4a4c-962d-13f7c415a348" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 05 Oct 2022 23:08:07 GMT" + ], + "Content-Length": [ + "287" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4F438EA6-D211-4458-90F2-82F719841133?api-version=2022-06-15\",\r\n \"name\": \"4f438ea6-d211-4458-90f2-82f719841133\",\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4F438EA6-D211-4458-90F2-82F719841133?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNEY0MzhFQTYtRDIxMS00NDU4LTkwRjItODJGNzE5ODQxMTMzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "51d6967e-345b-4cd8-9caf-c809ae302094" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -441,28 +678,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e22f099a-dea8-4c87-9506-a8dfb6b5d8f9" + "094ca49c-2f14-4421-aa48-4239c631bd38" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11991" ], "x-ms-correlation-request-id": [ - "dc346ed4-c1ea-4372-b195-ff9178513624" + "7b55f0f1-b5ef-4874-babc-7f485b8e315c" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212422Z:dc346ed4-c1ea-4372-b195-ff9178513624" + "WESTUS2:20221005T230818Z:7b55f0f1-b5ef-4874-babc-7f485b8e315c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:24:21 GMT" + "Wed, 05 Oct 2022 23:08:17 GMT" ], "Content-Length": [ - "623" + "287" ], "Content-Type": [ "application/json; charset=utf-8" @@ -471,28 +708,148 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps7861.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"670cb114-d6ab-4387-8d24-cfcfde846898\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8882/providers/Microsoft.EventGrid/topics/PSTestTopic-ps7861\",\r\n \"name\": \"PSTestTopic-ps7861\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4F438EA6-D211-4458-90F2-82F719841133?api-version=2022-06-15\",\r\n \"name\": \"4f438ea6-d211-4458-90f2-82f719841133\",\r\n \"status\": \"InProgress\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8882/providers/Microsoft.EventGrid/topics/PSTestTopic-ps7861?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczg4ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNzg2MT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4F438EA6-D211-4458-90F2-82F719841133?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNEY0MzhFQTYtRDIxMS00NDU4LTkwRjItODJGNzE5ODQxMTMzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "51d6967e-345b-4cd8-9caf-c809ae302094" + ], + "User-Agent": [ + "FxVersion/4.700.22.41602", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7097e65a-f445-46c4-b2df-bde209fd05fe" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "6faa966c-42b4-44f1-8a54-85323f000273" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221005T230828Z:6faa966c-42b4-44f1-8a54-85323f000273" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 05 Oct 2022 23:08:28 GMT" + ], + "Content-Length": [ + "286" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4F438EA6-D211-4458-90F2-82F719841133?api-version=2022-06-15\",\r\n \"name\": \"4f438ea6-d211-4458-90f2-82f719841133\",\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8415/providers/Microsoft.EventGrid/topics/PSTestTopic-ps198?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczg0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMTk4P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", + "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "835d2337-8af5-4e43-bea8-63c3a2741e46" + "51d6967e-345b-4cd8-9caf-c809ae302094" + ], + "User-Agent": [ + "FxVersion/4.700.22.41602", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "680e7770-7903-4852-bab2-993b0c1dd14a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "38224f98-89dc-4604-b338-98d039480580" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221005T230828Z:38224f98-89dc-4604-b338-98d039480580" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 05 Oct 2022 23:08:28 GMT" + ], + "Content-Length": [ + "660" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps198.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f6751840-ee03-430c-aa66-ec9806aca4b4\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8415/providers/Microsoft.EventGrid/topics/PSTestTopic-ps198\",\r\n \"name\": \"PSTestTopic-ps198\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8415/providers/Microsoft.EventGrid/topics/PSTestTopic-ps198?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczg0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMTk4P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1df8f1cb-07be-4a1d-83ac-af1962c49c0d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -504,7 +861,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "01c58f38-ae9e-488a-8c6d-bc139642ff7f" + "d6cad453-7792-41d6-8fa4-c0e139f8b6a1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -513,19 +870,19 @@ "11996" ], "x-ms-correlation-request-id": [ - "d7d52b17-8029-4130-84a9-324969ec7b3d" + "08825197-09f5-43f0-a2f8-c954459b42a1" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212422Z:d7d52b17-8029-4130-84a9-324969ec7b3d" + "WESTUS2:20221005T230829Z:08825197-09f5-43f0-a2f8-c954459b42a1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:24:21 GMT" + "Wed, 05 Oct 2022 23:08:28 GMT" ], "Content-Length": [ - "623" + "660" ], "Content-Type": [ "application/json; charset=utf-8" @@ -534,25 +891,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps7861.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"670cb114-d6ab-4387-8d24-cfcfde846898\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8882/providers/Microsoft.EventGrid/topics/PSTestTopic-ps7861\",\r\n \"name\": \"PSTestTopic-ps7861\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps198.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f6751840-ee03-430c-aa66-ec9806aca4b4\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8415/providers/Microsoft.EventGrid/topics/PSTestTopic-ps198\",\r\n \"name\": \"PSTestTopic-ps198\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8882/providers/Microsoft.EventGrid/topics/PSTestTopic-ps7861?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczg4ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNzg2MT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8415/providers/Microsoft.EventGrid/topics/PSTestTopic-ps198?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczg0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMTk4P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "835d2337-8af5-4e43-bea8-63c3a2741e46" + "a6c7370d-5830-40a0-bba6-7853aa135ec5" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -564,28 +924,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dc09306a-d534-470a-a88b-1bdea68faf95" + "63646753-c87d-4890-9ef6-02eea4b79494" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11998" ], "x-ms-correlation-request-id": [ - "f1ac7712-d4d3-46f0-af3b-1123ae03aeac" + "45e30e00-c774-40ed-a407-8499d01f3354" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212433Z:f1ac7712-d4d3-46f0-af3b-1123ae03aeac" + "WESTUS2:20221005T230829Z:45e30e00-c774-40ed-a407-8499d01f3354" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:24:33 GMT" + "Wed, 05 Oct 2022 23:08:28 GMT" ], "Content-Length": [ - "618" + "660" ], "Content-Type": [ "application/json; charset=utf-8" @@ -594,28 +954,88 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps7861.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"670cb114-d6ab-4387-8d24-cfcfde846898\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.3.0.0/16\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8882/providers/Microsoft.EventGrid/topics/PSTestTopic-ps7861\",\r\n \"name\": \"PSTestTopic-ps7861\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps198.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f6751840-ee03-430c-aa66-ec9806aca4b4\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8415/providers/Microsoft.EventGrid/topics/PSTestTopic-ps198\",\r\n \"name\": \"PSTestTopic-ps198\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8882/providers/Microsoft.EventGrid/topics/PSTestTopic-ps7861?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczg4ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNzg2MT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8415/providers/Microsoft.EventGrid/topics/PSTestTopic-ps198?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczg0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMTk4P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a6c7370d-5830-40a0-bba6-7853aa135ec5" + ], + "User-Agent": [ + "FxVersion/4.700.22.41602", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" + ] + }, "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "dd98d7a2-49ba-49a5-be9d-5b7ca97b4584" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "34909012-817c-4c90-80b6-b2b1ca53186c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221005T230841Z:34909012-817c-4c90-80b6-b2b1ca53186c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 05 Oct 2022 23:08:41 GMT" + ], + "Content-Length": [ + "655" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps198.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f6751840-ee03-430c-aa66-ec9806aca4b4\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.3.0.0/16\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8415/providers/Microsoft.EventGrid/topics/PSTestTopic-ps198\",\r\n \"name\": \"PSTestTopic-ps198\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8415/providers/Microsoft.EventGrid/topics/PSTestTopic-ps198?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczg0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMTk4P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", + "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "b82491b6-d60d-4af4-9c22-6799dfe40bd3" + "f998ed66-608a-443d-bbfd-a7c09c89d0b1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -627,28 +1047,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9a664411-a1c8-4660-a508-8556413d95eb" + "3a0f34b0-c82c-4897-ba6e-0c4683ec1068" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11999" ], "x-ms-correlation-request-id": [ - "3aaa5079-bddd-45f3-b830-0eae5025f217" + "718b0c79-25b9-455e-9c4f-c5e02fe1586a" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212433Z:3aaa5079-bddd-45f3-b830-0eae5025f217" + "WESTUS2:20221005T230841Z:718b0c79-25b9-455e-9c4f-c5e02fe1586a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:24:33 GMT" + "Wed, 05 Oct 2022 23:08:40 GMT" ], "Content-Length": [ - "618" + "655" ], "Content-Type": [ "application/json; charset=utf-8" @@ -657,28 +1077,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps7861.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"670cb114-d6ab-4387-8d24-cfcfde846898\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.3.0.0/16\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8882/providers/Microsoft.EventGrid/topics/PSTestTopic-ps7861\",\r\n \"name\": \"PSTestTopic-ps7861\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps198.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f6751840-ee03-430c-aa66-ec9806aca4b4\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.3.0.0/16\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8415/providers/Microsoft.EventGrid/topics/PSTestTopic-ps198\",\r\n \"name\": \"PSTestTopic-ps198\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8882/providers/Microsoft.EventGrid/topics/PSTestTopic-ps7861?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczg4ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNzg2MT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8415/providers/Microsoft.EventGrid/topics/PSTestTopic-ps198?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczg0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMTk4P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b82491b6-d60d-4af4-9c22-6799dfe40bd3" + "f998ed66-608a-443d-bbfd-a7c09c89d0b1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -690,28 +1110,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1fed2674-1bc6-43a3-900a-09c74bf3c7f9" + "745f5d09-3290-4887-bc46-7a46f5fe5cb2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11999" ], "x-ms-correlation-request-id": [ - "17610217-c407-4086-9c8a-fe5a1b61a8cf" + "d6fc14fc-7497-4d1a-bfce-2a94ca92c667" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212433Z:17610217-c407-4086-9c8a-fe5a1b61a8cf" + "WESTUS2:20221005T230842Z:d6fc14fc-7497-4d1a-bfce-2a94ca92c667" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:24:33 GMT" + "Wed, 05 Oct 2022 23:08:41 GMT" ], "Content-Length": [ - "618" + "655" ], "Content-Type": [ "application/json; charset=utf-8" @@ -720,25 +1140,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps7861.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"670cb114-d6ab-4387-8d24-cfcfde846898\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.3.0.0/16\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8882/providers/Microsoft.EventGrid/topics/PSTestTopic-ps7861\",\r\n \"name\": \"PSTestTopic-ps7861\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps198.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f6751840-ee03-430c-aa66-ec9806aca4b4\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.3.0.0/16\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8415/providers/Microsoft.EventGrid/topics/PSTestTopic-ps198\",\r\n \"name\": \"PSTestTopic-ps198\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8882/providers/Microsoft.EventGrid/topics/PSTestTopic-ps7861?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczg4ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNzg2MT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8415/providers/Microsoft.EventGrid/topics/PSTestTopic-ps198?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczg0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMTk4P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b82491b6-d60d-4af4-9c22-6799dfe40bd3" + "f998ed66-608a-443d-bbfd-a7c09c89d0b1" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -750,28 +1170,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bda03eef-213e-48e3-be5b-e533bcd9f4d0" + "3619d0d6-22ce-4c78-9990-92a217ce848e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11997" ], "x-ms-correlation-request-id": [ - "8daee54c-fa9f-4880-90d0-3d1950d73ee9" + "7cb5d3d3-2555-496e-85c6-c88deb90c1e2" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212444Z:8daee54c-fa9f-4880-90d0-3d1950d73ee9" + "WESTUS2:20221005T230853Z:7cb5d3d3-2555-496e-85c6-c88deb90c1e2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:24:44 GMT" + "Wed, 05 Oct 2022 23:08:53 GMT" ], "Content-Length": [ - "660" + "697" ], "Content-Type": [ "application/json; charset=utf-8" @@ -780,25 +1200,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps7861.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"670cb114-d6ab-4387-8d24-cfcfde846898\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval10\",\r\n \"test2\": \"testval20\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8882/providers/Microsoft.EventGrid/topics/PSTestTopic-ps7861\",\r\n \"name\": \"PSTestTopic-ps7861\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps198.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f6751840-ee03-430c-aa66-ec9806aca4b4\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval10\",\r\n \"test2\": \"testval20\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8415/providers/Microsoft.EventGrid/topics/PSTestTopic-ps198\",\r\n \"name\": \"PSTestTopic-ps198\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/5E559CFD-76B3-4423-92B4-D1910AEEF311?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNUU1NTlDRkQtNzZCMy00NDIzLTkyQjQtRDE5MTBBRUVGMzExP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/6CD8F039-7C48-440A-B3D1-425242BAE45E?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNkNEOEYwMzktN0M0OC00NDBBLUIzRDEtNDI1MjQyQkFFNDVFP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "835d2337-8af5-4e43-bea8-63c3a2741e46" + "a6c7370d-5830-40a0-bba6-7853aa135ec5" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -810,25 +1230,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4d1928dd-f4cb-4eef-80b8-9ecdb3d21fe6" + "8e0a5896-0093-4bec-ae9d-e532157952bd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11997" ], "x-ms-correlation-request-id": [ - "31deedb4-4904-49f0-b425-a9eac0ca372d" + "21374893-e9cd-439e-9e93-a5d5b29758dd" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212433Z:31deedb4-4904-49f0-b425-a9eac0ca372d" + "WESTUS2:20221005T230841Z:21374893-e9cd-439e-9e93-a5d5b29758dd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:24:33 GMT" + "Wed, 05 Oct 2022 23:08:41 GMT" ], "Content-Length": [ "286" @@ -840,25 +1260,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/5E559CFD-76B3-4423-92B4-D1910AEEF311?api-version=2021-12-01\",\r\n \"name\": \"5e559cfd-76b3-4423-92b4-d1910aeef311\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/6CD8F039-7C48-440A-B3D1-425242BAE45E?api-version=2022-06-15\",\r\n \"name\": \"6cd8f039-7c48-440a-b3d1-425242bae45e\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/28C14614-C80E-4F81-9678-0317A0F084C2?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMjhDMTQ2MTQtQzgwRS00RjgxLTk2NzgtMDMxN0EwRjA4NEMyP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/AA92C54D-9FC2-4E28-B773-32AF8AA9EFB1?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvQUE5MkM1NEQtOUZDMi00RTI4LUI3NzMtMzJBRjhBQTlFRkIxP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b82491b6-d60d-4af4-9c22-6799dfe40bd3" + "f998ed66-608a-443d-bbfd-a7c09c89d0b1" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -870,25 +1290,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fc9d3e16-39d9-49b7-b283-4ec418de68ce" + "a87c2f65-89fd-4690-b6a4-a0f20aaffeec" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11998" ], "x-ms-correlation-request-id": [ - "09cbab76-64a1-47f7-a07f-49286ab9b78c" + "0ebe80ee-b173-430f-8a25-22f55e676962" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212444Z:09cbab76-64a1-47f7-a07f-49286ab9b78c" + "WESTUS2:20221005T230853Z:0ebe80ee-b173-430f-8a25-22f55e676962" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:24:44 GMT" + "Wed, 05 Oct 2022 23:08:52 GMT" ], "Content-Length": [ "286" @@ -900,28 +1320,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/28C14614-C80E-4F81-9678-0317A0F084C2?api-version=2021-12-01\",\r\n \"name\": \"28c14614-c80e-4f81-9678-0317a0f084c2\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/AA92C54D-9FC2-4E28-B773-32AF8AA9EFB1?api-version=2022-06-15\",\r\n \"name\": \"aa92c54d-9fc2-4e28-b773-32af8aa9efb1\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8882/providers/Microsoft.EventGrid/topics/PSTestTopic-ps7861?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczg4ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNzg2MT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8415/providers/Microsoft.EventGrid/topics/PSTestTopic-ps198?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczg0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMTk4P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "62633bc2-95ce-4381-963e-bebc91c5f8c3" + "30de596d-6280-48b6-803a-5384ad5fffb6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -930,7 +1350,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/EE70AF92-C24E-458F-B245-196CCC40BAEB?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/644CFBDC-F7E8-47E2-91BE-733A936EAD9A?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -939,7 +1359,7 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/EE70AF92-C24E-458F-B245-196CCC40BAEB?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/644CFBDC-F7E8-47E2-91BE-733A936EAD9A?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -948,19 +1368,19 @@ "14999" ], "x-ms-request-id": [ - "41a04c8e-703b-455b-b2fd-a7884b6799fa" + "f08b36f3-3449-48cd-981b-361770566070" ], "x-ms-correlation-request-id": [ - "41a04c8e-703b-455b-b2fd-a7884b6799fa" + "f08b36f3-3449-48cd-981b-361770566070" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212445Z:41a04c8e-703b-455b-b2fd-a7884b6799fa" + "WESTUS2:20221005T230854Z:f08b36f3-3449-48cd-981b-361770566070" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:24:44 GMT" + "Wed, 05 Oct 2022 23:08:53 GMT" ], "Expires": [ "-1" @@ -973,21 +1393,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/EE70AF92-C24E-458F-B245-196CCC40BAEB?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRUU3MEFGOTItQzI0RS00NThGLUIyNDUtMTk2Q0NDNDBCQUVCP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/644CFBDC-F7E8-47E2-91BE-733A936EAD9A?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNjQ0Q0ZCREMtRjdFOC00N0UyLTkxQkUtNzMzQTkzNkVBRDlBP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "62633bc2-95ce-4381-963e-bebc91c5f8c3" + "30de596d-6280-48b6-803a-5384ad5fffb6" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -999,25 +1419,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "18dd525c-ab29-4216-8a88-275862cea178" + "52459f8c-e6e1-4cc6-8109-0bccc009fddc" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11997" ], "x-ms-correlation-request-id": [ - "c265bf4c-3aad-4afd-a715-3fee2a1e71ba" + "b6c39c50-b48e-4c47-b724-5430d19eb010" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212455Z:c265bf4c-3aad-4afd-a715-3fee2a1e71ba" + "WESTUS2:20221005T230904Z:b6c39c50-b48e-4c47-b724-5430d19eb010" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:24:54 GMT" + "Wed, 05 Oct 2022 23:09:03 GMT" ], "Content-Length": [ "286" @@ -1029,25 +1449,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/EE70AF92-C24E-458F-B245-196CCC40BAEB?api-version=2021-12-01\",\r\n \"name\": \"ee70af92-c24e-458f-b245-196ccc40baeb\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/644CFBDC-F7E8-47E2-91BE-733A936EAD9A?api-version=2022-06-15\",\r\n \"name\": \"644cfbdc-f7e8-47e2-91be-733a936ead9a\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/EE70AF92-C24E-458F-B245-196CCC40BAEB?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvRUU3MEFGOTItQzI0RS00NThGLUIyNDUtMTk2Q0NDNDBCQUVCP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/644CFBDC-F7E8-47E2-91BE-733A936EAD9A?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNjQ0Q0ZCREMtRjdFOC00N0UyLTkxQkUtNzMzQTkzNkVBRDlBP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "62633bc2-95ce-4381-963e-bebc91c5f8c3" + "30de596d-6280-48b6-803a-5384ad5fffb6" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1059,25 +1479,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9864c71d-cbe9-48a8-8fe4-0953336e5705" + "631e117b-a3a4-4c6f-97ba-53e9e2b550b5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11996" ], "x-ms-correlation-request-id": [ - "d1cdbf02-fd28-4d10-85de-45f678ae466e" + "76838f29-79cc-4599-8adc-c2a309685535" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212455Z:d1cdbf02-fd28-4d10-85de-45f678ae466e" + "WESTUS2:20221005T230904Z:76838f29-79cc-4599-8adc-c2a309685535" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:24:54 GMT" + "Wed, 05 Oct 2022 23:09:03 GMT" ], "Expires": [ "-1" @@ -1090,24 +1510,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps8882?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczg4ODI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps8415?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczg0MTU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7664ecab-a6d0-41db-ba32-ee604aae6e70" + "b136b77c-041d-4cb2-9a29-e1a0585d0681" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1116,7 +1536,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzg4ODItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzg0MTUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1125,13 +1545,13 @@ "14999" ], "x-ms-request-id": [ - "ed3a155f-8e01-407a-ae9a-713930253eba" + "14dd1190-a1ea-4b6b-94e0-d151387bac50" ], "x-ms-correlation-request-id": [ - "ed3a155f-8e01-407a-ae9a-713930253eba" + "14dd1190-a1ea-4b6b-94e0-d151387bac50" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212455Z:ed3a155f-8e01-407a-ae9a-713930253eba" + "WESTUS2:20221005T230905Z:14dd1190-a1ea-4b6b-94e0-d151387bac50" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1140,7 +1560,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:24:55 GMT" + "Wed, 05 Oct 2022 23:09:05 GMT" ], "Expires": [ "-1" @@ -1153,18 +1573,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzg4ODItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpnNE9ESXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzg0MTUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpnME1UVXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1176,13 +1596,13 @@ "11999" ], "x-ms-request-id": [ - "563422d5-a6dd-4f0a-b471-974982951db1" + "ea2711ce-3fc4-468d-b226-8d7b379065c9" ], "x-ms-correlation-request-id": [ - "563422d5-a6dd-4f0a-b471-974982951db1" + "ea2711ce-3fc4-468d-b226-8d7b379065c9" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212510Z:563422d5-a6dd-4f0a-b471-974982951db1" + "WESTUS2:20221005T230920Z:ea2711ce-3fc4-468d-b226-8d7b379065c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1191,7 +1611,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:25:10 GMT" + "Wed, 05 Oct 2022 23:09:20 GMT" ], "Expires": [ "-1" @@ -1204,18 +1624,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzg4ODItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpnNE9ESXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzg0MTUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpnME1UVXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1227,13 +1647,13 @@ "11998" ], "x-ms-request-id": [ - "20291b54-6b8f-402e-a583-c29758ec7cd8" + "78892c59-8cfc-4c9c-bddf-69f078481a5f" ], "x-ms-correlation-request-id": [ - "20291b54-6b8f-402e-a583-c29758ec7cd8" + "78892c59-8cfc-4c9c-bddf-69f078481a5f" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212511Z:20291b54-6b8f-402e-a583-c29758ec7cd8" + "WESTUS2:20221005T230920Z:78892c59-8cfc-4c9c-bddf-69f078481a5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1242,7 +1662,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:25:10 GMT" + "Wed, 05 Oct 2022 23:09:20 GMT" ], "Expires": [ "-1" @@ -1257,8 +1677,8 @@ ], "Names": { "": [ - "ps7861", - "ps8882" + "ps198", + "ps8415" ] }, "Variables": { diff --git a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.TopicTests/EventGrid_TopicsNewKey.json b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.TopicTests/EventGrid_TopicsNewKey.json index e781cd32dec9..1daa805ee3be 100644 --- a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.TopicTests/EventGrid_TopicsNewKey.json +++ b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.TopicTests/EventGrid_TopicsNewKey.json @@ -1,22 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps1252?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczEyNTI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps8827?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczg4Mjc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6e158b1d-dcca-4480-ae3e-636f89ab249b" + "6eeaf256-f04c-4b70-8e72-4ca365ae803c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,6 +24,7 @@ "35" ] }, + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "ae1a7a56-e791-41bb-844e-c6d151d7e7ec" + "ecaccbc9-ab8f-4ea5-ac6f-ec3a0ffdb3e0" ], "x-ms-correlation-request-id": [ - "ae1a7a56-e791-41bb-844e-c6d151d7e7ec" + "ecaccbc9-ab8f-4ea5-ac6f-ec3a0ffdb3e0" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212637Z:ae1a7a56-e791-41bb-844e-c6d151d7e7ec" + "WESTUS2:20221005T231043Z:ecaccbc9-ab8f-4ea5-ac6f-ec3a0ffdb3e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:26:36 GMT" + "Wed, 05 Oct 2022 23:10:43 GMT" ], "Content-Length": [ "186" @@ -63,26 +63,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1252\",\r\n \"name\": \"RGName-ps1252\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8827\",\r\n \"name\": \"RGName-ps8827\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1252/providers/Microsoft.EventGrid/topics/PSTestTopic-ps9573?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczEyNTIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzOTU3Mz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8827/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2754?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczg4MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMjc1ND9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5d9d31c6-7507-453b-a66e-62c5b07c0527" + "847ffa96-5862-49f0-9020-d2350ae28b61" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -91,6 +90,7 @@ "137" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -105,28 +105,28 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/C3B41B8D-0331-49F0-823C-C25E3BB5D4E3?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E33402C2-8D07-4BAE-BA2B-F199E053E0E2?api-version=2022-06-15" ], "x-ms-request-id": [ - "fefead44-0b67-4987-81a7-d182bf88cb53" + "5417b8e0-6cb6-45ab-9c60-6bea66fd979d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "8d473977-b05b-46ce-9e83-cf1065b88fc6" + "fc165dc8-0da3-497d-88f9-f04f6bbb59a3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212639Z:8d473977-b05b-46ce-9e83-cf1065b88fc6" + "WESTUS2:20221005T231045Z:fc165dc8-0da3-497d-88f9-f04f6bbb59a3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:26:38 GMT" + "Wed, 05 Oct 2022 23:10:44 GMT" ], "Content-Length": [ "392" @@ -138,25 +138,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1252/providers/Microsoft.EventGrid/topics/PSTestTopic-ps9573\",\r\n \"name\": \"PSTestTopic-ps9573\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8827/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2754\",\r\n \"name\": \"PSTestTopic-ps2754\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/C3B41B8D-0331-49F0-823C-C25E3BB5D4E3?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvQzNCNDFCOEQtMDMzMS00OUYwLTgyM0MtQzI1RTNCQjVENEUzP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E33402C2-8D07-4BAE-BA2B-F199E053E0E2?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRTMzNDAyQzItOEQwNy00QkFFLUJBMkItRjE5OUUwNTNFMEUyP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d9d31c6-7507-453b-a66e-62c5b07c0527" + "847ffa96-5862-49f0-9020-d2350ae28b61" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -168,7 +168,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3431e2a9-0b59-4fcb-82c2-bd19f7fdd1ec" + "d7dc2499-de70-4c71-ab42-4fb85d1cafc7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -177,16 +177,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "6a050744-bdbf-4953-8211-0a96bc6102ca" + "cecdf0c4-489d-483b-991c-11e4aacd4563" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212649Z:6a050744-bdbf-4953-8211-0a96bc6102ca" + "WESTUS2:20221005T231055Z:cecdf0c4-489d-483b-991c-11e4aacd4563" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:26:48 GMT" + "Wed, 05 Oct 2022 23:10:55 GMT" ], "Content-Length": [ "286" @@ -198,25 +198,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/C3B41B8D-0331-49F0-823C-C25E3BB5D4E3?api-version=2021-12-01\",\r\n \"name\": \"c3b41b8d-0331-49f0-823c-c25e3bb5d4e3\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/E33402C2-8D07-4BAE-BA2B-F199E053E0E2?api-version=2022-06-15\",\r\n \"name\": \"e33402c2-8d07-4bae-ba2b-f199e053e0e2\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1252/providers/Microsoft.EventGrid/topics/PSTestTopic-ps9573?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczEyNTIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzOTU3Mz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8827/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2754?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczg4MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMjc1ND9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d9d31c6-7507-453b-a66e-62c5b07c0527" + "847ffa96-5862-49f0-9020-d2350ae28b61" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -228,7 +228,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8918cd80-1e23-48c8-b8fa-883d9bc333ad" + "c4512be7-0187-49ec-b667-03cfbd15973b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -237,19 +237,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "30d2bf72-61b3-43f6-a3c2-7a871b0ec6fd" + "ecc9b075-ac50-406f-ab97-7125f2336037" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212649Z:30d2bf72-61b3-43f6-a3c2-7a871b0ec6fd" + "WESTUS2:20221005T231055Z:ecc9b075-ac50-406f-ab97-7125f2336037" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:26:48 GMT" + "Wed, 05 Oct 2022 23:10:55 GMT" ], "Content-Length": [ - "522" + "562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -258,28 +258,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps9573.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1b1821a1-6d6e-4b99-aa27-2be60cebb34c\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1252/providers/Microsoft.EventGrid/topics/PSTestTopic-ps9573\",\r\n \"name\": \"PSTestTopic-ps9573\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps2754.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f8ddc81d-af92-4589-bdb0-235a7730b24e\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8827/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2754\",\r\n \"name\": \"PSTestTopic-ps2754\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1252/providers/Microsoft.EventGrid/topics/PSTestTopic-ps9573?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczEyNTIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzOTU3Mz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8827/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2754?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczg4MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMjc1ND9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4036e62e-d9c8-4b86-b557-debc26cf70cd" + "a307c681-3187-4237-94ad-5291c65afefa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -291,7 +291,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d8b9b7ce-14f9-4aef-88df-8e48b7c3e5aa" + "e4fc9c33-a131-4611-9857-53a3b9c4c636" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -300,19 +300,19 @@ "11997" ], "x-ms-correlation-request-id": [ - "13ea10ca-b554-4dd1-945e-f8f429a01d89" + "970f7383-4bc3-41eb-82fe-5e3fdce15440" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212649Z:13ea10ca-b554-4dd1-945e-f8f429a01d89" + "WESTUS2:20221005T231057Z:970f7383-4bc3-41eb-82fe-5e3fdce15440" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:26:49 GMT" + "Wed, 05 Oct 2022 23:10:56 GMT" ], "Content-Length": [ - "522" + "562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -321,26 +321,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps9573.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1b1821a1-6d6e-4b99-aa27-2be60cebb34c\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1252/providers/Microsoft.EventGrid/topics/PSTestTopic-ps9573\",\r\n \"name\": \"PSTestTopic-ps9573\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps2754.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f8ddc81d-af92-4589-bdb0-235a7730b24e\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8827/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2754\",\r\n \"name\": \"PSTestTopic-ps2754\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1252/providers/Microsoft.EventGrid/topics/PSTestTopic-ps9573/regenerateKey?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczEyNTIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzOTU3My9yZWdlbmVyYXRlS2V5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8827/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2754/regenerateKey?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczg4MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMjc1NC9yZWdlbmVyYXRlS2V5P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"keyName\": \"key1\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "61c1c6ca-dd27-4c4b-9e39-8eb3f5d6475e" + "a8017155-dc40-4564-b4fa-6adc0b47f37d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -349,6 +348,7 @@ "25" ] }, + "RequestBody": "{\r\n \"keyName\": \"key1\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -360,7 +360,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c9d3e6ee-9b7a-49f1-89d6-11538555c35c" + "9d6f1229-45b7-43e4-80f2-1cf35cf2ae25" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -369,16 +369,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "91a970a5-1578-4370-b07a-2e680d16091a" + "efcba5d4-9005-4673-a40e-dd074da1dede" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212649Z:91a970a5-1578-4370-b07a-2e680d16091a" + "WESTUS2:20221005T231056Z:efcba5d4-9005-4673-a40e-dd074da1dede" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:26:49 GMT" + "Wed, 05 Oct 2022 23:10:55 GMT" ], "Content-Length": [ "109" @@ -390,26 +390,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"key1\": \"2Q6FnIy65ev5ZDezZhzonX5O+KG7P0lL7k9eHjXP90E=\",\r\n \"key2\": \"wXSZYlmUkrchDar5X4bkvxH9hOLJOiznbvcM60R95BU=\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"yqbR10ftt5rMhPc8gZi9Uemp3jN8kCLvjsmBWY4c8aI=\",\r\n \"key2\": \"U9abVp+qbbdcSGkRGUlbj9TPsWH5KueOhzUQmX7mTg8=\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1252/providers/Microsoft.EventGrid/topics/PSTestTopic-ps9573/regenerateKey?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczEyNTIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzOTU3My9yZWdlbmVyYXRlS2V5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8827/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2754/regenerateKey?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczg4MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMjc1NC9yZWdlbmVyYXRlS2V5P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"keyName\": \"key2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0bd81910-c1ba-487c-98d3-73ca69f892a8" + "64fcd7b3-5712-44a7-a52b-3569249cc53a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -418,6 +417,7 @@ "25" ] }, + "RequestBody": "{\r\n \"keyName\": \"key2\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -429,25 +429,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ef203e88-9a5e-4a8b-b23c-b25520b7581b" + "edbf9233-2121-4c73-93a0-8c9ed12b4340" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "2086a85a-6fb1-4281-a488-a784e462d290" + "b823e0b4-0bd7-4032-a6be-7d40a5e1c3e6" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212649Z:2086a85a-6fb1-4281-a488-a784e462d290" + "WESTUS2:20221005T231056Z:b823e0b4-0bd7-4032-a6be-7d40a5e1c3e6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:26:49 GMT" + "Wed, 05 Oct 2022 23:10:55 GMT" ], "Content-Length": [ "109" @@ -459,26 +459,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"key1\": \"2Q6FnIy65ev5ZDezZhzonX5O+KG7P0lL7k9eHjXP90E=\",\r\n \"key2\": \"OHl+12iyWGwzLXc/xggtllGF1EH0JiCMZiQ1qlYyIsI=\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"yqbR10ftt5rMhPc8gZi9Uemp3jN8kCLvjsmBWY4c8aI=\",\r\n \"key2\": \"xEhCeD44IB3CZsSs6JNlJbC5hiY7TqM8I/PRd+Hwrts=\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1252/providers/Microsoft.EventGrid/topics/PSTestTopic-ps9573/regenerateKey?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczEyNTIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzOTU3My9yZWdlbmVyYXRlS2V5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8827/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2754/regenerateKey?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczg4MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMjc1NC9yZWdlbmVyYXRlS2V5P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"keyName\": \"key2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4036e62e-d9c8-4b86-b557-debc26cf70cd" + "a307c681-3187-4237-94ad-5291c65afefa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -487,6 +486,7 @@ "25" ] }, + "RequestBody": "{\r\n \"keyName\": \"key2\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -498,25 +498,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "52953592-0b3a-44ae-9139-c6733261d5a3" + "96857222-86e2-47f8-b0db-4ae007fa6925" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "aa6c2b8d-38ce-462f-9fac-bb216b67800a" + "2cf7bdf7-2d4b-4326-a4a8-07bcad8865e5" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212650Z:aa6c2b8d-38ce-462f-9fac-bb216b67800a" + "WESTUS2:20221005T231057Z:2cf7bdf7-2d4b-4326-a4a8-07bcad8865e5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:26:49 GMT" + "Wed, 05 Oct 2022 23:10:57 GMT" ], "Content-Length": [ "109" @@ -528,28 +528,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"key1\": \"2Q6FnIy65ev5ZDezZhzonX5O+KG7P0lL7k9eHjXP90E=\",\r\n \"key2\": \"ZPlUxnE1nyQVLQnLiZBVlQ8kzMYhvGno/LvSIMeC6vs=\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"yqbR10ftt5rMhPc8gZi9Uemp3jN8kCLvjsmBWY4c8aI=\",\r\n \"key2\": \"NXlcIHGPHLPNdqoMKAtGmqXHYRa98Yhxo/YV1HRMfn8=\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1252/providers/Microsoft.EventGrid/topics/PSTestTopic-ps9573?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczEyNTIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzOTU3Mz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps8827/providers/Microsoft.EventGrid/topics/PSTestTopic-ps2754?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczg4MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMjc1ND9hcGktdmVyc2lvbj0yMDIyLTA2LTE1", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6e88334-4ec5-472b-918d-b7cd79e22c8a" + "5352d331-421b-4d61-bd92-6c38fdf2ef8d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -558,7 +558,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/010DE172-4EEE-4CC3-91A5-D450C7CC5299?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/B5D65D97-C89F-42A5-9123-D225A4AA7689?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -567,7 +567,7 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/010DE172-4EEE-4CC3-91A5-D450C7CC5299?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/B5D65D97-C89F-42A5-9123-D225A4AA7689?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -576,19 +576,19 @@ "14999" ], "x-ms-request-id": [ - "fd6c0384-68c7-4fa6-a94e-73726afcac88" + "448277a0-c61f-48f5-aa30-ff20a17ae1bf" ], "x-ms-correlation-request-id": [ - "fd6c0384-68c7-4fa6-a94e-73726afcac88" + "448277a0-c61f-48f5-aa30-ff20a17ae1bf" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212650Z:fd6c0384-68c7-4fa6-a94e-73726afcac88" + "WESTUS2:20221005T231058Z:448277a0-c61f-48f5-aa30-ff20a17ae1bf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:26:50 GMT" + "Wed, 05 Oct 2022 23:10:58 GMT" ], "Expires": [ "-1" @@ -601,21 +601,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/010DE172-4EEE-4CC3-91A5-D450C7CC5299?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMDEwREUxNzItNEVFRS00Q0MzLTkxQTUtRDQ1MEM3Q0M1Mjk5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/B5D65D97-C89F-42A5-9123-D225A4AA7689?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvQjVENjVEOTctQzg5Ri00MkE1LTkxMjMtRDIyNUE0QUE3Njg5P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6e88334-4ec5-472b-918d-b7cd79e22c8a" + "5352d331-421b-4d61-bd92-6c38fdf2ef8d" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -627,25 +627,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "96001e24-6aec-4e6a-8b05-87505d5a91ef" + "e2312f23-306f-4312-8b50-38621e37458b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11999" ], "x-ms-correlation-request-id": [ - "18043612-59b7-4c0b-979f-f2b21f0e4411" + "7f77d91c-7983-4e14-b9e8-ffc7d7746569" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212700Z:18043612-59b7-4c0b-979f-f2b21f0e4411" + "WESTUS2:20221005T231108Z:7f77d91c-7983-4e14-b9e8-ffc7d7746569" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:27:00 GMT" + "Wed, 05 Oct 2022 23:11:08 GMT" ], "Content-Length": [ "286" @@ -657,25 +657,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/010DE172-4EEE-4CC3-91A5-D450C7CC5299?api-version=2021-12-01\",\r\n \"name\": \"010de172-4eee-4cc3-91a5-d450c7cc5299\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/B5D65D97-C89F-42A5-9123-D225A4AA7689?api-version=2022-06-15\",\r\n \"name\": \"b5d65d97-c89f-42a5-9123-d225a4aa7689\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/010DE172-4EEE-4CC3-91A5-D450C7CC5299?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMDEwREUxNzItNEVFRS00Q0MzLTkxQTUtRDQ1MEM3Q0M1Mjk5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/B5D65D97-C89F-42A5-9123-D225A4AA7689?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvQjVENjVEOTctQzg5Ri00MkE1LTkxMjMtRDIyNUE0QUE3Njg5P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6e88334-4ec5-472b-918d-b7cd79e22c8a" + "5352d331-421b-4d61-bd92-6c38fdf2ef8d" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -687,25 +687,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "09b2e9b4-3710-47c4-b5a0-028c93382155" + "885b8790-f8a4-4e78-aae9-6a18c4bfa95f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11998" ], "x-ms-correlation-request-id": [ - "9adb8dae-d604-47f1-a862-52cc4ed4a798" + "39ee641e-694a-4a9e-b236-9e1be1c28914" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212700Z:9adb8dae-d604-47f1-a862-52cc4ed4a798" + "WESTUS2:20221005T231109Z:39ee641e-694a-4a9e-b236-9e1be1c28914" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:27:00 GMT" + "Wed, 05 Oct 2022 23:11:08 GMT" ], "Expires": [ "-1" @@ -718,24 +718,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps1252?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczEyNTI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps8827?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczg4Mjc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce8bfff4-a2ac-47eb-b153-8f3462c6c5a9" + "3eda6d23-b6d1-4c35-9b08-da9ed6987fc8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -744,22 +744,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzEyNTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzg4MjctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-request-id": [ - "6a26fd7b-f604-44dc-9ba4-1ad9af2667e0" + "950c0074-e538-4abd-8850-3d37be44aad1" ], "x-ms-correlation-request-id": [ - "6a26fd7b-f604-44dc-9ba4-1ad9af2667e0" + "950c0074-e538-4abd-8850-3d37be44aad1" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212700Z:6a26fd7b-f604-44dc-9ba4-1ad9af2667e0" + "WESTUS2:20221005T231110Z:950c0074-e538-4abd-8850-3d37be44aad1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -768,7 +768,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:27:00 GMT" + "Wed, 05 Oct 2022 23:11:09 GMT" ], "Expires": [ "-1" @@ -781,18 +781,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzEyNTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpFeU5USXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzg4MjctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpnNE1qY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -801,16 +801,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "bd2d0ff6-7875-4cef-98bb-3ebc0eb185d8" + "ae794582-0d42-42f0-963f-4193eee18f91" ], "x-ms-correlation-request-id": [ - "bd2d0ff6-7875-4cef-98bb-3ebc0eb185d8" + "ae794582-0d42-42f0-963f-4193eee18f91" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212715Z:bd2d0ff6-7875-4cef-98bb-3ebc0eb185d8" + "WESTUS2:20221005T231125Z:ae794582-0d42-42f0-963f-4193eee18f91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -819,7 +819,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:27:15 GMT" + "Wed, 05 Oct 2022 23:11:24 GMT" ], "Expires": [ "-1" @@ -832,18 +832,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzEyNTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpFeU5USXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzg4MjctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpnNE1qY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -852,16 +852,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-request-id": [ - "a1e8afbf-9941-490d-8ae2-6af0c0f0b9e7" + "7b757275-0517-4646-8dde-fbc9fb48628e" ], "x-ms-correlation-request-id": [ - "a1e8afbf-9941-490d-8ae2-6af0c0f0b9e7" + "7b757275-0517-4646-8dde-fbc9fb48628e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212715Z:a1e8afbf-9941-490d-8ae2-6af0c0f0b9e7" + "WESTUS2:20221005T231125Z:7b757275-0517-4646-8dde-fbc9fb48628e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -870,7 +870,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:27:15 GMT" + "Wed, 05 Oct 2022 23:11:24 GMT" ], "Expires": [ "-1" @@ -885,8 +885,8 @@ ], "Names": { "": [ - "ps9573", - "ps1252" + "ps2754", + "ps8827" ] }, "Variables": { diff --git a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.TopicTests/EventGrid_TopicsSet.json b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.TopicTests/EventGrid_TopicsSet.json index d3bb3b6bfbfe..329bf1790ef6 100644 --- a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.TopicTests/EventGrid_TopicsSet.json +++ b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.TopicTests/EventGrid_TopicsSet.json @@ -1,22 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps7432?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczc0MzI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps2693?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczI2OTM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cb648272-6852-4aaa-9a72-cd7eb00336c4" + "6c748a72-f606-4ab7-ae38-5b51e6d30ce1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,6 +24,7 @@ "35" ] }, + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "091e2afb-6533-40a6-8834-7a50789ec4a9" + "69c46171-dbe3-4e95-8ffd-d21c3f33838d" ], "x-ms-correlation-request-id": [ - "091e2afb-6533-40a6-8834-7a50789ec4a9" + "69c46171-dbe3-4e95-8ffd-d21c3f33838d" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212517Z:091e2afb-6533-40a6-8834-7a50789ec4a9" + "WESTUS2:20221005T230925Z:69c46171-dbe3-4e95-8ffd-d21c3f33838d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:25:17 GMT" + "Wed, 05 Oct 2022 23:09:25 GMT" ], "Content-Length": [ "186" @@ -63,26 +63,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7432\",\r\n \"name\": \"RGName-ps7432\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2693\",\r\n \"name\": \"RGName-ps2693\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7432/providers/Microsoft.EventGrid/topics/PSTestTopic-ps5827?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczc0MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNTgyNz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2693/providers/Microsoft.EventGrid/topics/PSTestTopic-ps192?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMTkyP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "88bc75af-6ad5-4e2b-a556-3cbfd8cb104c" + "da5a3c9c-3fd2-4820-8ca8-fb3d8834b0d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -91,6 +90,7 @@ "137" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"enabled\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -105,10 +105,10 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/BA44FCD9-C1F9-4623-9518-223686D7183F?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/D2DBC581-4B14-4AB5-8AAE-4FA8ABD2CC1C?api-version=2022-06-15" ], "x-ms-request-id": [ - "b0c05f95-5a2e-4ff8-a1ea-53dd2258757a" + "4b43c17e-67d8-4ebc-b56a-61e12d84ea07" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -117,19 +117,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "9b74af21-cafa-4dc6-abca-fe3c792197d7" + "7306cf9b-513d-4747-872b-dfd7cada2604" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212520Z:9b74af21-cafa-4dc6-abca-fe3c792197d7" + "WESTUS2:20221005T230927Z:7306cf9b-513d-4747-872b-dfd7cada2604" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:25:20 GMT" + "Wed, 05 Oct 2022 23:09:26 GMT" ], "Content-Length": [ - "392" + "390" ], "Content-Type": [ "application/json; charset=utf-8" @@ -138,26 +138,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7432/providers/Microsoft.EventGrid/topics/PSTestTopic-ps5827\",\r\n \"name\": \"PSTestTopic-ps5827\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2693/providers/Microsoft.EventGrid/topics/PSTestTopic-ps192\",\r\n \"name\": \"PSTestTopic-ps192\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7432/providers/Microsoft.EventGrid/topics/PSTestTopic-ps5827?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczc0MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNTgyNz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2693/providers/Microsoft.EventGrid/topics/PSTestTopic-ps192?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMTkyP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4f0fbd59-013a-4b57-bb8f-43df6c6c2320" + "b368d0f9-1531-49f3-bc89-ff1a37906b0e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -166,6 +165,7 @@ "358" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -180,31 +180,31 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/3FC4326C-95A8-4BB5-903C-65CA428372D8?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4912F1B5-3DE5-4553-8692-060CAE7C7AF6?api-version=2022-06-15" ], "x-ms-request-id": [ - "efb7b87c-82fc-458e-9c45-bce08045b7c2" + "c65425fd-5abe-4c72-a6c2-c78e0b045e3a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "af155c13-3afd-4198-8036-f14fd21ce0d5" + "0ef5f300-c800-4879-bc05-a4e1f4f20b9c" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212531Z:af155c13-3afd-4198-8036-f14fd21ce0d5" + "WESTUS2:20221005T230938Z:0ef5f300-c800-4879-bc05-a4e1f4f20b9c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:25:31 GMT" + "Wed, 05 Oct 2022 23:09:38 GMT" ], "Content-Length": [ - "496" + "494" ], "Content-Type": [ "application/json; charset=utf-8" @@ -213,26 +213,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"endpoint\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7432/providers/Microsoft.EventGrid/topics/PSTestTopic-ps5827\",\r\n \"name\": \"PSTestTopic-ps5827\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"endpoint\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2693/providers/Microsoft.EventGrid/topics/PSTestTopic-ps192\",\r\n \"name\": \"PSTestTopic-ps192\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7432/providers/Microsoft.EventGrid/topics/PSTestTopic-ps5827?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczc0MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNTgyNz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2693/providers/Microsoft.EventGrid/topics/PSTestTopic-ps192?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMTkyP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.3.0.0/16\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "19d92f9b-236a-42aa-ae3c-711d6a9c951d" + "f8ecf632-2ee0-4106-8ebe-b8965a04eece" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -241,6 +240,7 @@ "280" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.3.0.0/16\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -255,31 +255,31 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/6B74DA72-1918-4A59-A2C9-D365DD027132?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/8EC2F923-574F-41D6-88F6-A3C5B10A1683?api-version=2022-06-15" ], "x-ms-request-id": [ - "0a9c368c-25fb-4481-a4f2-52af013f76b8" + "7be45841-3ccf-4f2c-a559-08f17c942f95" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "75613383-b1b6-4c54-8946-8b997d54a146" + "9cc5ea35-d601-4790-8dd9-c75cecc92cd7" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212542Z:75613383-b1b6-4c54-8946-8b997d54a146" + "WESTUS2:20221005T230950Z:9cc5ea35-d601-4790-8dd9-c75cecc92cd7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:25:41 GMT" + "Wed, 05 Oct 2022 23:09:49 GMT" ], "Content-Length": [ - "456" + "454" ], "Content-Type": [ "application/json; charset=utf-8" @@ -288,26 +288,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"endpoint\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.3.0.0/16\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7432/providers/Microsoft.EventGrid/topics/PSTestTopic-ps5827\",\r\n \"name\": \"PSTestTopic-ps5827\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"endpoint\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.3.0.0/16\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2693/providers/Microsoft.EventGrid/topics/PSTestTopic-ps192\",\r\n \"name\": \"PSTestTopic-ps192\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7432/providers/Microsoft.EventGrid/topics/PSTestTopic-ps5827?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczc0MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNTgyNz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2693/providers/Microsoft.EventGrid/topics/PSTestTopic-ps192?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMTkyP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval10\",\r\n \"test2\": \"testval20\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ebdc52a9-d851-457f-806f-6bc7947d1966" + "f0aebdb1-9d6a-4e07-94b8-db31d0dfc2f2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -316,6 +315,7 @@ "360" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"publicNetworkAccess\": \"enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval10\",\r\n \"test2\": \"testval20\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -330,31 +330,31 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/712CDCA1-2BB1-4D71-86DE-52F309344CA0?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/9B485E03-2ACD-4426-8233-04D1CC18838A?api-version=2022-06-15" ], "x-ms-request-id": [ - "0cd97ed5-3c06-4506-b284-6de02df61e10" + "1200b12c-fe90-4916-b4f8-33da0bf16b61" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "f1cfaaaf-a86c-498f-bf5a-73a0f7f6f851" + "7123eeaf-aacd-4419-b602-cec7108d640c" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212553Z:f1cfaaaf-a86c-498f-bf5a-73a0f7f6f851" + "WESTUS2:20221005T231002Z:7123eeaf-aacd-4419-b602-cec7108d640c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:25:53 GMT" + "Wed, 05 Oct 2022 23:10:02 GMT" ], "Content-Length": [ - "498" + "496" ], "Content-Type": [ "application/json; charset=utf-8" @@ -363,25 +363,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"endpoint\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval10\",\r\n \"test2\": \"testval20\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7432/providers/Microsoft.EventGrid/topics/PSTestTopic-ps5827\",\r\n \"name\": \"PSTestTopic-ps5827\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"endpoint\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval10\",\r\n \"test2\": \"testval20\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2693/providers/Microsoft.EventGrid/topics/PSTestTopic-ps192\",\r\n \"name\": \"PSTestTopic-ps192\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/BA44FCD9-C1F9-4623-9518-223686D7183F?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvQkE0NEZDRDktQzFGOS00NjIzLTk1MTgtMjIzNjg2RDcxODNGP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/D2DBC581-4B14-4AB5-8AAE-4FA8ABD2CC1C?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRDJEQkM1ODEtNEIxNC00QUI1LThBQUUtNEZBOEFCRDJDQzFDP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "88bc75af-6ad5-4e2b-a556-3cbfd8cb104c" + "da5a3c9c-3fd2-4820-8ca8-fb3d8834b0d7" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -393,7 +393,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "551985e9-0a67-42f9-a16a-5f2fc1fe3e56" + "4608b98b-b272-4237-8259-098651555258" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -402,16 +402,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "39494632-7f72-441d-9596-c9ef5cdea0c6" + "e719056c-edb5-4629-9301-d1a4b68c9dea" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212530Z:39494632-7f72-441d-9596-c9ef5cdea0c6" + "WESTUS2:20221005T230937Z:e719056c-edb5-4629-9301-d1a4b68c9dea" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:25:30 GMT" + "Wed, 05 Oct 2022 23:09:36 GMT" ], "Content-Length": [ "286" @@ -423,25 +423,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/BA44FCD9-C1F9-4623-9518-223686D7183F?api-version=2021-12-01\",\r\n \"name\": \"ba44fcd9-c1f9-4623-9518-223686d7183f\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/D2DBC581-4B14-4AB5-8AAE-4FA8ABD2CC1C?api-version=2022-06-15\",\r\n \"name\": \"d2dbc581-4b14-4ab5-8aae-4fa8abd2cc1c\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7432/providers/Microsoft.EventGrid/topics/PSTestTopic-ps5827?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczc0MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNTgyNz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2693/providers/Microsoft.EventGrid/topics/PSTestTopic-ps192?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMTkyP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "88bc75af-6ad5-4e2b-a556-3cbfd8cb104c" + "da5a3c9c-3fd2-4820-8ca8-fb3d8834b0d7" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -453,7 +453,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "371493bb-95ef-40c7-b9ff-c527ed7bc8b0" + "c8eab775-0367-445a-b39a-908bf00511dd" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -462,19 +462,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "a4f2076f-b9b5-440c-9ba7-55a6b18cfe22" + "b10a6f23-380f-48e5-88b1-920ec10f2b3d" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212530Z:a4f2076f-b9b5-440c-9ba7-55a6b18cfe22" + "WESTUS2:20221005T230937Z:b10a6f23-380f-48e5-88b1-920ec10f2b3d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:25:30 GMT" + "Wed, 05 Oct 2022 23:09:37 GMT" ], "Content-Length": [ - "522" + "559" ], "Content-Type": [ "application/json; charset=utf-8" @@ -483,28 +483,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps5827.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"22e16b39-146b-4e44-85a9-16298b19e634\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7432/providers/Microsoft.EventGrid/topics/PSTestTopic-ps5827\",\r\n \"name\": \"PSTestTopic-ps5827\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps192.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a0a35431-5d0a-4050-ba35-baa8acf2210e\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2693/providers/Microsoft.EventGrid/topics/PSTestTopic-ps192\",\r\n \"name\": \"PSTestTopic-ps192\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7432/providers/Microsoft.EventGrid/topics/PSTestTopic-ps5827?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczc0MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNTgyNz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2693/providers/Microsoft.EventGrid/topics/PSTestTopic-ps192?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMTkyP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4f0fbd59-013a-4b57-bb8f-43df6c6c2320" + "b368d0f9-1531-49f3-bc89-ff1a37906b0e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -516,28 +516,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8e941f56-fdce-4c55-a740-e81d2e362d1d" + "19e700bd-6cb4-49cc-aff8-a28efebb7c48" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-correlation-request-id": [ - "d68dc727-d51c-4919-8a19-768f5a34d179" + "fcbccb7e-8077-469c-9fef-6a0d16d6eb58" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212530Z:d68dc727-d51c-4919-8a19-768f5a34d179" + "WESTUS2:20221005T230937Z:fcbccb7e-8077-469c-9fef-6a0d16d6eb58" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:25:30 GMT" + "Wed, 05 Oct 2022 23:09:37 GMT" ], "Content-Length": [ - "522" + "559" ], "Content-Type": [ "application/json; charset=utf-8" @@ -546,25 +546,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps5827.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"22e16b39-146b-4e44-85a9-16298b19e634\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7432/providers/Microsoft.EventGrid/topics/PSTestTopic-ps5827\",\r\n \"name\": \"PSTestTopic-ps5827\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps192.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a0a35431-5d0a-4050-ba35-baa8acf2210e\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2693/providers/Microsoft.EventGrid/topics/PSTestTopic-ps192\",\r\n \"name\": \"PSTestTopic-ps192\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7432/providers/Microsoft.EventGrid/topics/PSTestTopic-ps5827?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczc0MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNTgyNz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2693/providers/Microsoft.EventGrid/topics/PSTestTopic-ps192?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMTkyP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4f0fbd59-013a-4b57-bb8f-43df6c6c2320" + "b368d0f9-1531-49f3-bc89-ff1a37906b0e" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -576,28 +576,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "077f83e5-4e81-43e2-8753-4f31ad7a9a96" + "c8de47d3-e2d0-4840-9827-14a7b307fef2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11997" ], "x-ms-correlation-request-id": [ - "dbd33390-4630-4b06-b508-2930183d5418" + "f6e96d8e-c647-4ce3-a2b5-f47291a5b3f9" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212541Z:dbd33390-4630-4b06-b508-2930183d5418" + "WESTUS2:20221005T230949Z:f6e96d8e-c647-4ce3-a2b5-f47291a5b3f9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:25:40 GMT" + "Wed, 05 Oct 2022 23:09:48 GMT" ], "Content-Length": [ - "658" + "695" ], "Content-Type": [ "application/json; charset=utf-8" @@ -606,28 +606,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps5827.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"22e16b39-146b-4e44-85a9-16298b19e634\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7432/providers/Microsoft.EventGrid/topics/PSTestTopic-ps5827\",\r\n \"name\": \"PSTestTopic-ps5827\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps192.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a0a35431-5d0a-4050-ba35-baa8acf2210e\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2693/providers/Microsoft.EventGrid/topics/PSTestTopic-ps192\",\r\n \"name\": \"PSTestTopic-ps192\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7432/providers/Microsoft.EventGrid/topics/PSTestTopic-ps5827?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczc0MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNTgyNz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2693/providers/Microsoft.EventGrid/topics/PSTestTopic-ps192?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMTkyP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19d92f9b-236a-42aa-ae3c-711d6a9c951d" + "f8ecf632-2ee0-4106-8ebe-b8965a04eece" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -639,28 +639,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "eaa6d243-a363-4397-8f01-6516ac8eb574" + "cae4b237-4d19-4c6f-8bd3-ef2a82727093" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11998" ], "x-ms-correlation-request-id": [ - "0df70a47-cacb-4c49-9075-5f5b7f04c894" + "3777b614-9a07-431d-8d01-9d662b344c37" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212541Z:0df70a47-cacb-4c49-9075-5f5b7f04c894" + "WESTUS2:20221005T230949Z:3777b614-9a07-431d-8d01-9d662b344c37" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:25:40 GMT" + "Wed, 05 Oct 2022 23:09:48 GMT" ], "Content-Length": [ - "658" + "695" ], "Content-Type": [ "application/json; charset=utf-8" @@ -669,25 +669,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps5827.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"22e16b39-146b-4e44-85a9-16298b19e634\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7432/providers/Microsoft.EventGrid/topics/PSTestTopic-ps5827\",\r\n \"name\": \"PSTestTopic-ps5827\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps192.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a0a35431-5d0a-4050-ba35-baa8acf2210e\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2693/providers/Microsoft.EventGrid/topics/PSTestTopic-ps192\",\r\n \"name\": \"PSTestTopic-ps192\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7432/providers/Microsoft.EventGrid/topics/PSTestTopic-ps5827?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczc0MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNTgyNz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2693/providers/Microsoft.EventGrid/topics/PSTestTopic-ps192?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMTkyP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19d92f9b-236a-42aa-ae3c-711d6a9c951d" + "f8ecf632-2ee0-4106-8ebe-b8965a04eece" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -699,28 +699,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bd0f16af-4840-493e-9b70-be80ca79550c" + "882c0440-0894-4cdf-84a6-6a57fff9a693" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11996" ], "x-ms-correlation-request-id": [ - "fd7169cd-7d1d-4ec2-a96d-6ac463dddccf" + "5c57a5f8-d646-4a48-8560-4937f465d0b7" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212552Z:fd7169cd-7d1d-4ec2-a96d-6ac463dddccf" + "WESTUS2:20221005T231000Z:5c57a5f8-d646-4a48-8560-4937f465d0b7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:25:52 GMT" + "Wed, 05 Oct 2022 23:09:59 GMT" ], "Content-Length": [ - "618" + "655" ], "Content-Type": [ "application/json; charset=utf-8" @@ -729,28 +729,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps5827.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"22e16b39-146b-4e44-85a9-16298b19e634\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.3.0.0/16\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7432/providers/Microsoft.EventGrid/topics/PSTestTopic-ps5827\",\r\n \"name\": \"PSTestTopic-ps5827\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps192.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a0a35431-5d0a-4050-ba35-baa8acf2210e\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.3.0.0/16\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2693/providers/Microsoft.EventGrid/topics/PSTestTopic-ps192\",\r\n \"name\": \"PSTestTopic-ps192\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7432/providers/Microsoft.EventGrid/topics/PSTestTopic-ps5827?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczc0MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNTgyNz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2693/providers/Microsoft.EventGrid/topics/PSTestTopic-ps192?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMTkyP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ebdc52a9-d851-457f-806f-6bc7947d1966" + "f0aebdb1-9d6a-4e07-94b8-db31d0dfc2f2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -762,28 +762,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8ec2406d-2a58-4b7e-a08f-d39728ac930d" + "480d41ed-0a06-485f-9382-9c9517f9942a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11999" ], "x-ms-correlation-request-id": [ - "af5d30da-42e3-4174-aa18-90113e902953" + "d78c07fc-d829-48b3-b87e-cc3899221a03" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212552Z:af5d30da-42e3-4174-aa18-90113e902953" + "WESTUS2:20221005T231000Z:d78c07fc-d829-48b3-b87e-cc3899221a03" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:25:52 GMT" + "Wed, 05 Oct 2022 23:10:00 GMT" ], "Content-Length": [ - "618" + "655" ], "Content-Type": [ "application/json; charset=utf-8" @@ -792,28 +792,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps5827.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"22e16b39-146b-4e44-85a9-16298b19e634\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.3.0.0/16\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7432/providers/Microsoft.EventGrid/topics/PSTestTopic-ps5827\",\r\n \"name\": \"PSTestTopic-ps5827\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps192.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a0a35431-5d0a-4050-ba35-baa8acf2210e\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.3.0.0/16\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2693/providers/Microsoft.EventGrid/topics/PSTestTopic-ps192\",\r\n \"name\": \"PSTestTopic-ps192\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7432/providers/Microsoft.EventGrid/topics/PSTestTopic-ps5827?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczc0MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNTgyNz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2693/providers/Microsoft.EventGrid/topics/PSTestTopic-ps192?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMTkyP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ebdc52a9-d851-457f-806f-6bc7947d1966" + "f0aebdb1-9d6a-4e07-94b8-db31d0dfc2f2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -825,28 +825,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e23626f2-4f6d-4fca-91d3-8118781edb04" + "d9083265-1847-4f22-a4c9-49ad56416888" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11999" ], "x-ms-correlation-request-id": [ - "5108fbd8-dd18-439f-b5c4-ab7a325b80d4" + "eaebeedb-19a8-4b5a-9a1c-73860d2976e0" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212552Z:5108fbd8-dd18-439f-b5c4-ab7a325b80d4" + "WESTUS2:20221005T231001Z:eaebeedb-19a8-4b5a-9a1c-73860d2976e0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:25:52 GMT" + "Wed, 05 Oct 2022 23:10:00 GMT" ], "Content-Length": [ - "618" + "655" ], "Content-Type": [ "application/json; charset=utf-8" @@ -855,25 +855,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps5827.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"22e16b39-146b-4e44-85a9-16298b19e634\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.3.0.0/16\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7432/providers/Microsoft.EventGrid/topics/PSTestTopic-ps5827\",\r\n \"name\": \"PSTestTopic-ps5827\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps192.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a0a35431-5d0a-4050-ba35-baa8acf2210e\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.3.0.0/16\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2693/providers/Microsoft.EventGrid/topics/PSTestTopic-ps192\",\r\n \"name\": \"PSTestTopic-ps192\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7432/providers/Microsoft.EventGrid/topics/PSTestTopic-ps5827?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczc0MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNTgyNz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2693/providers/Microsoft.EventGrid/topics/PSTestTopic-ps192?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMTkyP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ebdc52a9-d851-457f-806f-6bc7947d1966" + "f0aebdb1-9d6a-4e07-94b8-db31d0dfc2f2" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -885,28 +885,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a214a032-d342-47bf-aa7d-80425800d7a1" + "7510089c-60be-48cb-b361-f2c75893a48e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11997" ], "x-ms-correlation-request-id": [ - "21928e2d-6b7f-4a21-9a5f-de9db9ef03fd" + "10592a60-58fb-4333-a6cc-31f1a0c90f6c" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212603Z:21928e2d-6b7f-4a21-9a5f-de9db9ef03fd" + "WESTUS2:20221005T231012Z:10592a60-58fb-4333-a6cc-31f1a0c90f6c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:26:03 GMT" + "Wed, 05 Oct 2022 23:10:12 GMT" ], "Content-Length": [ - "660" + "697" ], "Content-Type": [ "application/json; charset=utf-8" @@ -915,25 +915,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps5827.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"22e16b39-146b-4e44-85a9-16298b19e634\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval10\",\r\n \"test2\": \"testval20\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7432/providers/Microsoft.EventGrid/topics/PSTestTopic-ps5827\",\r\n \"name\": \"PSTestTopic-ps5827\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps192.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a0a35431-5d0a-4050-ba35-baa8acf2210e\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"dataResidencyBoundary\": \"WithinGeopair\"\r\n },\r\n \"systemData\": null,\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test1\": \"testval10\",\r\n \"test2\": \"testval20\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2693/providers/Microsoft.EventGrid/topics/PSTestTopic-ps192\",\r\n \"name\": \"PSTestTopic-ps192\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/3FC4326C-95A8-4BB5-903C-65CA428372D8?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvM0ZDNDMyNkMtOTVBOC00QkI1LTkwM0MtNjVDQTQyODM3MkQ4P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4912F1B5-3DE5-4553-8692-060CAE7C7AF6?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNDkxMkYxQjUtM0RFNS00NTUzLTg2OTItMDYwQ0FFN0M3QUY2P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4f0fbd59-013a-4b57-bb8f-43df6c6c2320" + "b368d0f9-1531-49f3-bc89-ff1a37906b0e" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -945,25 +945,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e5bf085d-7391-4d45-a4f0-ee22b90e6802" + "26a97286-1f5d-4ea0-bce5-9935245a2b95" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-correlation-request-id": [ - "f4691102-886a-4b6f-9947-dab91bb01a7a" + "46a14bf6-28c7-4726-a7b2-0c7030ab4210" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212541Z:f4691102-886a-4b6f-9947-dab91bb01a7a" + "WESTUS2:20221005T230949Z:46a14bf6-28c7-4726-a7b2-0c7030ab4210" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:25:40 GMT" + "Wed, 05 Oct 2022 23:09:48 GMT" ], "Content-Length": [ "286" @@ -975,25 +975,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/3FC4326C-95A8-4BB5-903C-65CA428372D8?api-version=2021-12-01\",\r\n \"name\": \"3fc4326c-95a8-4bb5-903c-65ca428372d8\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4912F1B5-3DE5-4553-8692-060CAE7C7AF6?api-version=2022-06-15\",\r\n \"name\": \"4912f1b5-3de5-4553-8692-060cae7c7af6\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/6B74DA72-1918-4A59-A2C9-D365DD027132?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNkI3NERBNzItMTkxOC00QTU5LUEyQzktRDM2NUREMDI3MTMyP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/8EC2F923-574F-41D6-88F6-A3C5B10A1683?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvOEVDMkY5MjMtNTc0Ri00MUQ2LTg4RjYtQTNDNUIxMEExNjgzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19d92f9b-236a-42aa-ae3c-711d6a9c951d" + "f8ecf632-2ee0-4106-8ebe-b8965a04eece" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1005,25 +1005,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "73fcd213-e2c3-4639-b853-6ff2fb9eee8a" + "a4c728f7-d9be-4611-8049-c7b1f685be61" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11997" ], "x-ms-correlation-request-id": [ - "9d26efe2-dc24-4e0b-9d23-3a436169c2d4" + "3f9e97aa-4d1e-4260-b991-260dd01117ae" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212552Z:9d26efe2-dc24-4e0b-9d23-3a436169c2d4" + "WESTUS2:20221005T231000Z:3f9e97aa-4d1e-4260-b991-260dd01117ae" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:25:52 GMT" + "Wed, 05 Oct 2022 23:09:59 GMT" ], "Content-Length": [ "286" @@ -1035,25 +1035,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/6B74DA72-1918-4A59-A2C9-D365DD027132?api-version=2021-12-01\",\r\n \"name\": \"6b74da72-1918-4a59-a2c9-d365dd027132\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/8EC2F923-574F-41D6-88F6-A3C5B10A1683?api-version=2022-06-15\",\r\n \"name\": \"8ec2f923-574f-41d6-88f6-a3c5b10a1683\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/712CDCA1-2BB1-4D71-86DE-52F309344CA0?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNzEyQ0RDQTEtMkJCMS00RDcxLTg2REUtNTJGMzA5MzQ0Q0EwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/9B485E03-2ACD-4426-8233-04D1CC18838A?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvOUI0ODVFMDMtMkFDRC00NDI2LTgyMzMtMDREMUNDMTg4MzhBP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ebdc52a9-d851-457f-806f-6bc7947d1966" + "f0aebdb1-9d6a-4e07-94b8-db31d0dfc2f2" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1065,25 +1065,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "14e9394a-11a1-41eb-b069-b1e5299ea035" + "61929f76-47b5-4d7a-880b-d6036751c1ec" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11998" ], "x-ms-correlation-request-id": [ - "32793734-ef91-4e90-9270-50575a83ae12" + "a59bd5df-7b20-473c-89eb-6d6fd2a7b864" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212603Z:32793734-ef91-4e90-9270-50575a83ae12" + "WESTUS2:20221005T231012Z:a59bd5df-7b20-473c-89eb-6d6fd2a7b864" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:26:03 GMT" + "Wed, 05 Oct 2022 23:10:12 GMT" ], "Content-Length": [ "286" @@ -1095,28 +1095,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/712CDCA1-2BB1-4D71-86DE-52F309344CA0?api-version=2021-12-01\",\r\n \"name\": \"712cdca1-2bb1-4d71-86de-52f309344ca0\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/9B485E03-2ACD-4426-8233-04D1CC18838A?api-version=2022-06-15\",\r\n \"name\": \"9b485e03-2acd-4426-8233-04d1cc18838a\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7432/providers/Microsoft.EventGrid/topics/PSTestTopic-ps5827?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczc0MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzNTgyNz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2693/providers/Microsoft.EventGrid/topics/PSTestTopic-ps192?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL1JHTmFtZS1wczI2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL1BTVGVzdFRvcGljLXBzMTkyP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cddf8877-b3d0-463c-a762-752cc8e35f6c" + "30a7d9a6-79ac-4bee-b425-7ed2d7fa0415" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1125,7 +1125,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/D0942665-B3A1-497D-8942-73D1E2F8226B?api-version=2021-12-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/8835FD83-0289-402B-B207-64F4E7F7F1E8?api-version=2022-06-15" ], "Retry-After": [ "10" @@ -1134,7 +1134,7 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/D0942665-B3A1-497D-8942-73D1E2F8226B?api-version=2021-12-01" + "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/8835FD83-0289-402B-B207-64F4E7F7F1E8?api-version=2022-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1143,19 +1143,19 @@ "14999" ], "x-ms-request-id": [ - "1c812e22-c891-42d9-89c7-7af0240a11d4" + "b6d5b38b-ac0c-450a-812b-dc1f55677651" ], "x-ms-correlation-request-id": [ - "1c812e22-c891-42d9-89c7-7af0240a11d4" + "b6d5b38b-ac0c-450a-812b-dc1f55677651" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212604Z:1c812e22-c891-42d9-89c7-7af0240a11d4" + "WESTUS2:20221005T231013Z:b6d5b38b-ac0c-450a-812b-dc1f55677651" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:26:03 GMT" + "Wed, 05 Oct 2022 23:10:13 GMT" ], "Expires": [ "-1" @@ -1168,21 +1168,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/D0942665-B3A1-497D-8942-73D1E2F8226B?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvRDA5NDI2NjUtQjNBMS00OTdELTg5NDItNzNEMUUyRjgyMjZCP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/8835FD83-0289-402B-B207-64F4E7F7F1E8?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvODgzNUZEODMtMDI4OS00MDJCLUIyMDctNjRGNEU3RjdGMUU4P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cddf8877-b3d0-463c-a762-752cc8e35f6c" + "30a7d9a6-79ac-4bee-b425-7ed2d7fa0415" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1194,25 +1194,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d8159b8c-26a6-4cdc-8653-bb2652114519" + "a91da415-76ed-4add-a632-85f64612fa97" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11999" ], "x-ms-correlation-request-id": [ - "41ec9e67-6674-4ab6-81d2-6a0b4539721d" + "214a7ade-1617-4dbe-894a-bc711dc4f8fe" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212614Z:41ec9e67-6674-4ab6-81d2-6a0b4539721d" + "WESTUS2:20221005T231023Z:214a7ade-1617-4dbe-894a-bc711dc4f8fe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:26:14 GMT" + "Wed, 05 Oct 2022 23:10:23 GMT" ], "Content-Length": [ "286" @@ -1224,25 +1224,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/D0942665-B3A1-497D-8942-73D1E2F8226B?api-version=2021-12-01\",\r\n \"name\": \"d0942665-b3a1-497d-8942-73d1e2f8226b\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/8835FD83-0289-402B-B207-64F4E7F7F1E8?api-version=2022-06-15\",\r\n \"name\": \"8835fd83-0289-402b-b207-64f4e7f7f1e8\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/D0942665-B3A1-497D-8942-73D1E2F8226B?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvRDA5NDI2NjUtQjNBMS00OTdELTg5NDItNzNEMUUyRjgyMjZCP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/westcentralus/operationResults/8835FD83-0289-402B-B207-64F4E7F7F1E8?api-version=2022-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvODgzNUZEODMtMDI4OS00MDJCLUIyMDctNjRGNEU3RjdGMUU4P2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cddf8877-b3d0-463c-a762-752cc8e35f6c" + "30a7d9a6-79ac-4bee-b425-7ed2d7fa0415" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1254,25 +1254,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e3065fa3-7df3-4863-9676-0b0acdecefa8" + "6ca6fa60-95b5-4672-98bd-97ee8931a697" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11998" ], "x-ms-correlation-request-id": [ - "b9163bc5-10eb-4588-afa2-a1ed8b42dd84" + "1e5bc0a7-93eb-400c-aab8-553f0ef0a41a" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212614Z:b9163bc5-10eb-4588-afa2-a1ed8b42dd84" + "WESTUS2:20221005T231023Z:1e5bc0a7-93eb-400c-aab8-553f0ef0a41a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:26:14 GMT" + "Wed, 05 Oct 2022 23:10:23 GMT" ], "Expires": [ "-1" @@ -1285,24 +1285,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps7432?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczc0MzI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/RGName-ps2693?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL1JHTmFtZS1wczI2OTM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1a49ddb8-5c8c-4944-a556-fe522d98d2be" + "2f4f1c5a-7d23-4ad9-9e73-39efaf9aafe9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1311,7 +1311,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzc0MzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzI2OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1320,13 +1320,13 @@ "14999" ], "x-ms-request-id": [ - "ec5c06d5-c8a9-4ebc-a4e8-4d58703ce1ac" + "47697f4f-174c-4fbe-8e6e-264a3763d82b" ], "x-ms-correlation-request-id": [ - "ec5c06d5-c8a9-4ebc-a4e8-4d58703ce1ac" + "47697f4f-174c-4fbe-8e6e-264a3763d82b" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212614Z:ec5c06d5-c8a9-4ebc-a4e8-4d58703ce1ac" + "WESTUS2:20221005T231025Z:47697f4f-174c-4fbe-8e6e-264a3763d82b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1335,7 +1335,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:26:14 GMT" + "Wed, 05 Oct 2022 23:10:25 GMT" ], "Expires": [ "-1" @@ -1348,18 +1348,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzc0MzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpjME16SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzI2OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpJMk9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1371,13 +1371,13 @@ "11999" ], "x-ms-request-id": [ - "5a9bf801-8334-4522-86a6-98ab1b9a7da8" + "84df1a7d-f5c8-4bfe-99b8-f3fc8f127cdb" ], "x-ms-correlation-request-id": [ - "5a9bf801-8334-4522-86a6-98ab1b9a7da8" + "84df1a7d-f5c8-4bfe-99b8-f3fc8f127cdb" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212630Z:5a9bf801-8334-4522-86a6-98ab1b9a7da8" + "WESTUS2:20221005T231040Z:84df1a7d-f5c8-4bfe-99b8-f3fc8f127cdb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1386,7 +1386,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:26:29 GMT" + "Wed, 05 Oct 2022 23:10:40 GMT" ], "Expires": [ "-1" @@ -1399,18 +1399,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzc0MzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpjME16SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05BTUU6MkRQUzI2OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUjA1QlRVVTZNa1JRVXpJMk9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.62" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1422,13 +1422,13 @@ "11998" ], "x-ms-request-id": [ - "efcd5725-51a7-4a36-a48c-cb9fd3ce4752" + "3b235424-46e8-4454-bbdf-717c5713c86e" ], "x-ms-correlation-request-id": [ - "efcd5725-51a7-4a36-a48c-cb9fd3ce4752" + "3b235424-46e8-4454-bbdf-717c5713c86e" ], "x-ms-routing-request-id": [ - "WESTUS:20220501T212630Z:efcd5725-51a7-4a36-a48c-cb9fd3ce4752" + "WESTUS2:20221005T231040Z:3b235424-46e8-4454-bbdf-717c5713c86e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1437,7 +1437,7 @@ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:26:29 GMT" + "Wed, 05 Oct 2022 23:10:40 GMT" ], "Expires": [ "-1" @@ -1452,8 +1452,8 @@ ], "Names": { "": [ - "ps5827", - "ps7432" + "ps192", + "ps2693" ] }, "Variables": { diff --git a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.TopicTypeTests/EventGrid_TopicTypes.json b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.TopicTypeTests/EventGrid_TopicTypes.json index 5a9a223fa42b..159c4fc72271 100644 --- a/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.TopicTypeTests/EventGrid_TopicTypes.json +++ b/src/EventGrid/EventGrid.Test/SessionRecords/Microsoft.Azure.Commands.EventGrid.Tests.ScenarioTests.TopicTypeTests/EventGrid_TopicTypes.json @@ -1,24 +1,24 @@ { "Entries": [ { - "RequestUri": "/providers/Microsoft.EventGrid/topicTypes?api-version=2021-12-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljVHlwZXM/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/providers/Microsoft.EventGrid/topicTypes?api-version=2022-06-15", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljVHlwZXM/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dcf881fe-1cb6-4aaa-adf5-8f3836172245" + "f33f7b3a-d30f-481f-8bd4-ffe98ab2b788" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -36,22 +36,22 @@ "11999" ], "x-ms-request-id": [ - "2c22d835-6f23-41fc-887b-c701a6b8bc0c" + "2159dc2d-031e-4624-af54-be748603c318" ], "x-ms-correlation-request-id": [ - "2c22d835-6f23-41fc-887b-c701a6b8bc0c" + "2159dc2d-031e-4624-af54-be748603c318" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212831Z:2c22d835-6f23-41fc-887b-c701a6b8bc0c" + "WESTUS2:20221006T061231Z:2159dc2d-031e-4624-af54-be748603c318" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:28:31 GMT" + "Thu, 06 Oct 2022 06:12:30 GMT" ], "Content-Length": [ - "22335" + "22677" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60,28 +60,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.Eventhub\",\r\n \"displayName\": \"Event Hubs Namespaces\",\r\n \"description\": \"Microsoft Event Hubs service events.\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.EventHub/namespaces/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Eventhub.Namespaces\",\r\n \"name\": \"Microsoft.Eventhub.Namespaces\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.Storage\",\r\n \"displayName\": \"Storage Accounts (Blob & GPv2)\",\r\n \"description\": \"Microsoft Storage service events.\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.Storage/storageAccounts/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Storage.StorageAccounts\",\r\n \"name\": \"Microsoft.Storage.StorageAccounts\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.Resources\",\r\n \"displayName\": \"Azure Subscriptions\",\r\n \"description\": \"Resource management events under an Azure subscription\",\r\n \"resourceRegionType\": \"GlobalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sourceResourceFormat\": \"/subscriptions/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Resources.Subscriptions\",\r\n \"name\": \"Microsoft.Resources.Subscriptions\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.Resources\",\r\n \"displayName\": \"Resource Groups\",\r\n \"description\": \"Resource management events under a resource group.\",\r\n \"resourceRegionType\": \"GlobalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Resources.ResourceGroups\",\r\n \"name\": \"Microsoft.Resources.ResourceGroups\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.Devices\",\r\n \"displayName\": \"Azure IoT Hub Accounts\",\r\n \"description\": \"Azure IoT Hub service events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"West US 3\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.Devices/ioTHubs/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Devices.IoTHubs\",\r\n \"name\": \"Microsoft.Devices.IoTHubs\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.EventGrid\",\r\n \"displayName\": \"Event Grid Topics\",\r\n \"description\": \"Custom events via Event Grid Topics\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ]\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.EventGrid.Topics\",\r\n \"name\": \"Microsoft.EventGrid.Topics\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.ServiceBus\",\r\n \"displayName\": \"Service Bus Namespaces\",\r\n \"description\": \"Service Bus events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.ServiceBus/namespaces/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.ServiceBus.Namespaces\",\r\n \"name\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.ContainerRegistry\",\r\n \"displayName\": \"Azure Container Registry\",\r\n \"description\": \"Azure Container Registry service events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"South India\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.ContainerRegistry/registries/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.ContainerRegistry.Registries\",\r\n \"name\": \"Microsoft.ContainerRegistry.Registries\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.Media\",\r\n \"displayName\": \"Microsoft Azure Media Services\",\r\n \"description\": \"Microsoft Azure Media Services events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Central US EUAP\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"Sweden Central\",\r\n \"Jio India West\",\r\n \"Australia Central\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.Media/MediaServices/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Media.MediaServices\",\r\n \"name\": \"Microsoft.Media.MediaServices\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.Maps\",\r\n \"displayName\": \"Azure Maps Accounts\",\r\n \"description\": \"Microsoft Maps service events.\",\r\n \"resourceRegionType\": \"GlobalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.Maps/Accounts/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Maps.Accounts\",\r\n \"name\": \"Microsoft.Maps.Accounts\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.EventGrid\",\r\n \"displayName\": \"Event Grid Domains\",\r\n \"description\": \"Custom events via Event Grid Domains.\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ]\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.EventGrid.Domains\",\r\n \"name\": \"Microsoft.EventGrid.Domains\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.AppConfiguration\",\r\n \"displayName\": \"Microsoft Azure App Configuration\",\r\n \"description\": \"Microsoft Azure App Configuration events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"East US 2 EUAP\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"South East Asia\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"Central India\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.AppConfiguration/ConfigurationStores/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.AppConfiguration.ConfigurationStores\",\r\n \"name\": \"Microsoft.AppConfiguration.ConfigurationStores\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.KeyVault\",\r\n \"displayName\": \"Microsoft Key Vault\",\r\n \"description\": \"Microsoft Key Vault service events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.KeyVault/vaults/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.KeyVault.vaults\",\r\n \"name\": \"Microsoft.KeyVault.vaults\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.Web\",\r\n \"displayName\": \"App Services\",\r\n \"description\": \"App Services events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.Web/sites/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Web.Sites\",\r\n \"name\": \"Microsoft.Web.Sites\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.Web\",\r\n \"displayName\": \"App Service Plans\",\r\n \"description\": \"App Service Plans events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.Web/ServerFarms/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Web.ServerFarms\",\r\n \"name\": \"Microsoft.Web.ServerFarms\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.SignalRService\",\r\n \"displayName\": \"Azure SignalR Service\",\r\n \"description\": \"Azure SignalR service events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Central India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Germany West Central\",\r\n \"North Central US\",\r\n \"Norway East\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"West US 3\",\r\n \"Sweden Central\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.SignalRService/SignalR/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.SignalRService.SignalR\",\r\n \"name\": \"Microsoft.SignalRService.SignalR\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.MachineLearningServices\",\r\n \"displayName\": \"Machine Learning Workspaces\",\r\n \"description\": \"Microsoft Azure Machine Learning Service events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"East US 2 EUAP\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US EUAP\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia East\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.MachineLearningServices/Workspaces/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.MachineLearningServices.Workspaces\",\r\n \"name\": \"Microsoft.MachineLearningServices.Workspaces\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.Cache\",\r\n \"displayName\": \"Microsoft Azure Cache for Redis\",\r\n \"description\": \"Microsoft Azure Cache for Redis service events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.Cache/Redis/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Cache.Redis\",\r\n \"name\": \"Microsoft.Cache.Redis\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.Communication\",\r\n \"displayName\": \"Azure Communication Services\",\r\n \"description\": \"Azure Communication Service Events\",\r\n \"resourceRegionType\": \"GlobalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.Communication/communicationservices/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Communication.CommunicationServices\",\r\n \"name\": \"Microsoft.Communication.CommunicationServices\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.PolicyInsights\",\r\n \"displayName\": \"Microsoft PolicyInsights\",\r\n \"description\": \"Microsoft PolicyInsights service events\",\r\n \"resourceRegionType\": \"GlobalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedScopesForSource\": [\r\n \"AzureSubscription\"\r\n ]\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.PolicyInsights.PolicyStates\",\r\n \"name\": \"Microsoft.PolicyInsights.PolicyStates\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.AgFoodPlatform\",\r\n \"displayName\": \"Azure FarmBeats (Preview)\",\r\n \"description\": \"Microsoft FarmBeats service events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.AgFoodPlatform/farmBeats/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.AgFoodPlatform.FarmBeats\",\r\n \"name\": \"Microsoft.AgFoodPlatform.FarmBeats\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.ApiManagement\",\r\n \"displayName\": \"Azure API Management Service\",\r\n \"description\": \"Microsoft ApiManagement Service events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.ApiManagement/service/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.ApiManagement.Service\",\r\n \"name\": \"Microsoft.ApiManagement.Service\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.HealthcareApis\",\r\n \"displayName\": \"Azure Health Data Services\",\r\n \"description\": \"Azure Health Data Services events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.HealthcareApis/workspaces/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.HealthcareApis.Workspaces\",\r\n \"name\": \"Microsoft.HealthcareApis.Workspaces\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.Eventhub\",\r\n \"displayName\": \"Event Hubs Namespaces\",\r\n \"description\": \"Microsoft Event Hubs service events.\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.EventHub/namespaces/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Eventhub.Namespaces\",\r\n \"name\": \"Microsoft.Eventhub.Namespaces\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.Storage\",\r\n \"displayName\": \"Storage Accounts (Blob & GPv2)\",\r\n \"description\": \"Microsoft Storage service events.\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.Storage/storageAccounts/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Storage.StorageAccounts\",\r\n \"name\": \"Microsoft.Storage.StorageAccounts\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.Resources\",\r\n \"displayName\": \"Azure Subscriptions\",\r\n \"description\": \"Resource management events under an Azure subscription\",\r\n \"resourceRegionType\": \"GlobalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sourceResourceFormat\": \"/subscriptions/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Resources.Subscriptions\",\r\n \"name\": \"Microsoft.Resources.Subscriptions\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.Resources\",\r\n \"displayName\": \"Resource Groups\",\r\n \"description\": \"Resource management events under a resource group.\",\r\n \"resourceRegionType\": \"GlobalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Resources.ResourceGroups\",\r\n \"name\": \"Microsoft.Resources.ResourceGroups\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.Devices\",\r\n \"displayName\": \"Azure IoT Hub Accounts\",\r\n \"description\": \"Azure IoT Hub service events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"West US 3\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.Devices/ioTHubs/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Devices.IoTHubs\",\r\n \"name\": \"Microsoft.Devices.IoTHubs\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.EventGrid\",\r\n \"displayName\": \"Event Grid Topics\",\r\n \"description\": \"Custom events via Event Grid Topics\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"Qatar Central\"\r\n ]\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.EventGrid.Topics\",\r\n \"name\": \"Microsoft.EventGrid.Topics\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.ServiceBus\",\r\n \"displayName\": \"Service Bus Namespaces\",\r\n \"description\": \"Service Bus events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.ServiceBus/namespaces/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.ServiceBus.Namespaces\",\r\n \"name\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.ContainerRegistry\",\r\n \"displayName\": \"Azure Container Registry\",\r\n \"description\": \"Azure Container Registry service events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"South India\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.ContainerRegistry/registries/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.ContainerRegistry.Registries\",\r\n \"name\": \"Microsoft.ContainerRegistry.Registries\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.Media\",\r\n \"displayName\": \"Microsoft Azure Media Services\",\r\n \"description\": \"Microsoft Azure Media Services events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Central US EUAP\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"Sweden Central\",\r\n \"Jio India West\",\r\n \"Australia Central\",\r\n \"Qatar Central\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.Media/MediaServices/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Media.MediaServices\",\r\n \"name\": \"Microsoft.Media.MediaServices\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.Maps\",\r\n \"displayName\": \"Azure Maps Accounts\",\r\n \"description\": \"Microsoft Maps service events.\",\r\n \"resourceRegionType\": \"GlobalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.Maps/Accounts/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Maps.Accounts\",\r\n \"name\": \"Microsoft.Maps.Accounts\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.EventGrid\",\r\n \"displayName\": \"Event Grid Domains\",\r\n \"description\": \"Custom events via Event Grid Domains.\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"Qatar Central\"\r\n ]\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.EventGrid.Domains\",\r\n \"name\": \"Microsoft.EventGrid.Domains\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.AppConfiguration\",\r\n \"displayName\": \"Microsoft Azure App Configuration\",\r\n \"description\": \"Microsoft Azure App Configuration events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"East US 2 EUAP\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"South East Asia\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"Central India\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.AppConfiguration/ConfigurationStores/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.AppConfiguration.ConfigurationStores\",\r\n \"name\": \"Microsoft.AppConfiguration.ConfigurationStores\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.KeyVault\",\r\n \"displayName\": \"Microsoft Key Vault\",\r\n \"description\": \"Microsoft Key Vault service events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"Qatar Central\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.KeyVault/vaults/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.KeyVault.vaults\",\r\n \"name\": \"Microsoft.KeyVault.vaults\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.Web\",\r\n \"displayName\": \"App Services\",\r\n \"description\": \"App Services events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.Web/sites/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Web.Sites\",\r\n \"name\": \"Microsoft.Web.Sites\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.Web\",\r\n \"displayName\": \"App Service Plans\",\r\n \"description\": \"App Service Plans events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.Web/ServerFarms/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Web.ServerFarms\",\r\n \"name\": \"Microsoft.Web.ServerFarms\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.SignalRService\",\r\n \"displayName\": \"Azure SignalR Service\",\r\n \"description\": \"Azure SignalR service events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Central India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Germany West Central\",\r\n \"North Central US\",\r\n \"Norway East\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.SignalRService/SignalR/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.SignalRService.SignalR\",\r\n \"name\": \"Microsoft.SignalRService.SignalR\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.MachineLearningServices\",\r\n \"displayName\": \"Machine Learning Workspaces\",\r\n \"description\": \"Microsoft Azure Machine Learning Service events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"East US 2 EUAP\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US EUAP\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia East\",\r\n \"Germany West Central\",\r\n \"Central India\",\r\n \"Japan West\",\r\n \"Jio India West\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"West US 3\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.MachineLearningServices/Workspaces/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.MachineLearningServices.Workspaces\",\r\n \"name\": \"Microsoft.MachineLearningServices.Workspaces\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.Cache\",\r\n \"displayName\": \"Microsoft Azure Cache for Redis\",\r\n \"description\": \"Microsoft Azure Cache for Redis service events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"qatarcentral\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.Cache/Redis/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Cache.Redis\",\r\n \"name\": \"Microsoft.Cache.Redis\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.Communication\",\r\n \"displayName\": \"Azure Communication Services\",\r\n \"description\": \"Azure Communication Service Events\",\r\n \"resourceRegionType\": \"GlobalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.Communication/communicationservices/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Communication.CommunicationServices\",\r\n \"name\": \"Microsoft.Communication.CommunicationServices\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.PolicyInsights\",\r\n \"displayName\": \"Microsoft PolicyInsights\",\r\n \"description\": \"Microsoft PolicyInsights service events\",\r\n \"resourceRegionType\": \"GlobalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedScopesForSource\": [\r\n \"AzureSubscription\",\r\n \"ManagementGroup\"\r\n ]\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.PolicyInsights.PolicyStates\",\r\n \"name\": \"Microsoft.PolicyInsights.PolicyStates\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.AgFoodPlatform\",\r\n \"displayName\": \"Azure FarmBeats (Preview)\",\r\n \"description\": \"Microsoft FarmBeats service events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.AgFoodPlatform/farmBeats/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.AgFoodPlatform.FarmBeats\",\r\n \"name\": \"Microsoft.AgFoodPlatform.FarmBeats\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.ApiManagement\",\r\n \"displayName\": \"Azure API Management Service\",\r\n \"description\": \"Microsoft ApiManagement Service events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.ApiManagement/service/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.ApiManagement.Service\",\r\n \"name\": \"Microsoft.ApiManagement.Service\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.HealthcareApis\",\r\n \"displayName\": \"Azure Health Data Services\",\r\n \"description\": \"Azure Health Data Services events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.HealthcareApis/workspaces/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.HealthcareApis.Workspaces\",\r\n \"name\": \"Microsoft.HealthcareApis.Workspaces\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/providers/Microsoft.EventGrid/topicTypes/Microsoft.Storage.StorageAccounts?api-version=2021-12-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljVHlwZXMvTWljcm9zb2Z0LlN0b3JhZ2UuU3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/providers/Microsoft.EventGrid/topicTypes/Microsoft.Storage.StorageAccounts?api-version=2022-06-15", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljVHlwZXMvTWljcm9zb2Z0LlN0b3JhZ2UuU3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17f7ffac-5f1f-4214-8d69-0799063df566" + "185d84fc-0389-4293-9942-2abe8dd944b0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -93,25 +93,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "078f21bc-5433-46ce-8ecc-2551e948ca1d" + "4f2b63ec-378c-4dd6-ba56-794a96ed2ce7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "11998" + "11999" ], "x-ms-correlation-request-id": [ - "8579160e-f34f-47fd-bd16-1587744c1026" + "c8a3f3fa-709e-451b-b538-240ae648f115" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212831Z:8579160e-f34f-47fd-bd16-1587744c1026" + "WESTUS2:20221006T061231Z:c8a3f3fa-709e-451b-b538-240ae648f115" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:28:31 GMT" + "Thu, 06 Oct 2022 06:12:31 GMT" ], "Content-Length": [ "1320" @@ -127,24 +127,24 @@ "StatusCode": 200 }, { - "RequestUri": "/providers/Microsoft.EventGrid/topicTypes/Microsoft.Storage.StorageAccounts?api-version=2021-12-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljVHlwZXMvTWljcm9zb2Z0LlN0b3JhZ2UuU3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/providers/Microsoft.EventGrid/topicTypes/Microsoft.Storage.StorageAccounts?api-version=2022-06-15", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljVHlwZXMvTWljcm9zb2Z0LlN0b3JhZ2UuU3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMjItMDYtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "52fceba9-2012-4ee0-95d3-9a2b9592795a" + "835fa5a9-0926-4acd-91c2-ee998c0f5247" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -156,25 +156,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "053b09f9-d4a8-4875-b967-5ac5bc76d632" + "1288e84a-6b52-4d39-a86f-f036be8a1301" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "11997" + "11999" ], "x-ms-correlation-request-id": [ - "12ff2553-0632-4753-9513-88b5099c756a" + "097d1233-5399-4b19-a868-5f387ca3f088" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212832Z:12ff2553-0632-4753-9513-88b5099c756a" + "WESTUS2:20221006T061231Z:097d1233-5399-4b19-a868-5f387ca3f088" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:28:31 GMT" + "Thu, 06 Oct 2022 06:12:31 GMT" ], "Content-Length": [ "1320" @@ -190,24 +190,24 @@ "StatusCode": 200 }, { - "RequestUri": "/providers/Microsoft.EventGrid/topicTypes/Microsoft.Storage.StorageAccounts/eventTypes?api-version=2021-12-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljVHlwZXMvTWljcm9zb2Z0LlN0b3JhZ2UuU3RvcmFnZUFjY291bnRzL2V2ZW50VHlwZXM/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/providers/Microsoft.EventGrid/topicTypes/Microsoft.Storage.StorageAccounts/eventTypes?api-version=2022-06-15", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljVHlwZXMvTWljcm9zb2Z0LlN0b3JhZ2UuU3RvcmFnZUFjY291bnRzL2V2ZW50VHlwZXM/YXBpLXZlcnNpb249MjAyMi0wNi0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "52fceba9-2012-4ee0-95d3-9a2b9592795a" + "835fa5a9-0926-4acd-91c2-ee998c0f5247" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.41602", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/8.0.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -219,25 +219,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "22362c2c-d3d3-4bd5-a550-1e5b70d6e9b2" + "7a66c3a1-33bc-42da-9c37-b4d58df002ab" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "11996" + "11998" ], "x-ms-correlation-request-id": [ - "3f568e3b-6867-4355-a576-697ff3d9dbb8" + "e59d925d-8922-4622-94eb-1ea8c51dcb5e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220501T212832Z:3f568e3b-6867-4355-a576-697ff3d9dbb8" + "WESTUS2:20221006T061231Z:e59d925d-8922-4622-94eb-1ea8c51dcb5e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 01 May 2022 21:28:31 GMT" + "Thu, 06 Oct 2022 06:12:31 GMT" ], "Content-Length": [ "4368" diff --git a/src/EventGrid/EventGrid/Az.EventGrid.psd1 b/src/EventGrid/EventGrid/Az.EventGrid.psd1 index 79b2a2717eb9..39e257207041 100644 --- a/src/EventGrid/EventGrid/Az.EventGrid.psd1 +++ b/src/EventGrid/EventGrid/Az.EventGrid.psd1 @@ -90,8 +90,27 @@ CmdletsToExport = 'New-AzEventGridTopic', 'Get-AzEventGridTopic', 'Update-AzEventGridSystemTopicEventSubscription', 'Get-AzEventGridSystemTopicEventSubscription', 'Remove-AzEventGridSystemTopicEventSubscription', - 'Get-AzEventGridSystemTopicEventSubscriptionDeliveryAttribute', - 'Get-AzEventGridFullUrlForSystemTopicEventSubscription' + 'Get-AzEventGridSystemTopicEventSubscriptionDeliveryAttribute', + 'Get-AzEventGridPartnerTopicEventSubscriptionDeliveryAttribute', + 'Get-AzEventGridFullUrlForSystemTopicEventSubscription', + 'Get-AzEventGridFullUrlForPartnerTopicEventSubscription', + 'Get-AzEventGridPartnerNamespace', 'Get-AzEventGridPartnerRegistration', + 'Get-AzEventGridPartnerConfiguration', 'Get-AzEventGridVerifiedPartner', + 'Get-AzEventGridChannel', 'Get-AzEventGridPartnerNamespaceKey', + 'Get-AzEventGridPartnerTopic', 'Get-AzEventGridPartnerTopicEventSubscription', + 'New-AzEventGridPartnerRegistration', + 'New-AzEventGridPartnerConfiguration', 'New-AzEventGridPartnerNamespace', + 'New-AzEventGridPartnerTopic', 'New-AzEventGridChannel', + 'New-AzEventGridPartnerTopicEventSubscription', + 'Update-AzEventGridPartnerConfiguration', 'Update-AzEventGridPartnerDestination', + 'Update-AzEventGridChannel', 'Update-AzEventGridPartnerTopic', + 'Update-AzEventGridPartnerTopicEventSubscription', + 'Remove-AzEventGridPartnerRegistration', 'Remove-AzEventGridPartnerConfiguration', + 'Remove-AzEventGridPartnerNamespace', 'Remove-AzEventGridChannel', + 'Remove-AzEventGridPartnerTopic', + 'Remove-AzEventGridPartnerTopicEventSubscription', 'Grant-AzEventGridPartnerConfiguration', + 'Enable-AzEventGridPartnerTopic', 'Revoke-AzEventGridPartnerConfiguration', + 'New-AzEventGridPartnerNamespaceKey' # Variables to export from this module # VariablesToExport = @() diff --git a/src/EventGrid/EventGrid/AzureEventGridCmdletBase.cs b/src/EventGrid/EventGrid/AzureEventGridCmdletBase.cs index 4f8b30c0903f..2638c395e015 100644 --- a/src/EventGrid/EventGrid/AzureEventGridCmdletBase.cs +++ b/src/EventGrid/EventGrid/AzureEventGridCmdletBase.cs @@ -42,14 +42,20 @@ public abstract class AzureEventGridCmdletBase : AzureRMCmdlet protected const string EventSubscriptionDomainTopicNameParameterSet = "EventSubscriptionDomainTopicNameParameterSet"; protected const string TopicNameParameterSet = "TopicNameParameterSet"; + protected const string TopicEventSubscriptionParameterSet = "TopicEventSubscriptionParameterSet"; protected const string SystemTopicNameParameterSet = "SystemTopicNameParameterSet"; protected const string SystemTopicEventSuscriptionParameterSet = "SystemTopicEventSuscriptionParameterSet"; protected const string ResourceGroupNameParameterSet = "ResourceGroupNameParameterSet"; protected const string CustomTopicEventSubscriptionParameterSet = "CustomTopicEventSubscriptionParameterSet"; protected const string SubscriptionAndResourceGroupEventSubscriptionParameterSet = "SubscriptionAndResourceGroupEventSubscriptionParameterSet"; + protected const string ResourceIdTopicParameterSet = "ResourceIdTopicParameterSet"; protected const string ResourceIdDomainParameterSet = "ResourceIdDomainParameterSet"; protected const string ResourceIdDomainTopicParameterSet = "ResourceIdDomainTopicParameterSet"; protected const string ResourceIdEventSubscriptionParameterSet = "ResourceIdEventSubscriptionParameterSet"; + protected const string ResourceIdTopicEventSubscriptionParameterSet = "ResourceIdTopicEventSubscriptionParameterSet"; + protected const string ResourceIdDomainEventSubscriptionParameterSet = "ResourceIdDomainEventSubscriptionParameterSet"; + protected const string ResourceIdDomainTopicEventSubscriptionParameterSet = "ResourceIdDomainTopicEventSubscriptionParameterSet"; + protected const string ResourceIdPartnerTopicEventSubscriptionParameterSet = "ResourceIdPartnerTopicEventSubscriptionParameterSet"; protected const string EventSubscriptionNameParameterSet = "EventSubscriptionNameParameterSet"; protected const string NextLinkParameterSet = "NextLinkParameterSet"; @@ -73,6 +79,24 @@ public abstract class AzureEventGridCmdletBase : AzureRMCmdlet protected const string DomainNameParameterSet = "DomainNameParameterSet"; protected const string DomainTopicNameParameterSet = "DomainTopicNameParameterSet"; + protected const string VerifiedPartnerNameParameterSet = "VerifiedPartnerNameParameterSet"; + protected const string PartnerConfigurationListBySubscriptionParameterSet = "PartnerConfigurationListBySubscriptionParameterSet"; + protected const string PartnerRegistrationNameParameterSet = "PartnerRegistrationNameParameterSet"; + protected const string PartnerRegistrationListBySubscriptionParameterSet = "PartnerRegistrationListBySubscriptionParameterSet"; + protected const string PartnerDestinationNameParameterSet = "PartnerDestinationNameParameterSet"; + protected const string PartnerNamespaceNameParameterSet = "PartnerNamespaceNameParameterSet"; + protected const string PartnerNamespaceListBySubscriptionParameterSet = "PartnerNamespaceListBySubscriptionParameterSet"; + protected const string ChannelNameParameterSet = "ChannelNameParameterSet"; + protected const string ChannelListByPartnerNamespaceParameterSet = "ChannelListByPartnerNamespaceParameterSet"; + protected const string PartnerTopicNameParameterSet = "PartnerTopicNameParameterSet"; + protected const string PartnerTopicEventSubscriptionParameterSet = "PartnerTopicEventSubscriptionParameterSet"; + + protected const string PartnerConfigurationInputObjectParameterSet = "PartnerConfigurationInputObjectParameterSet"; + protected const string PartnerRegistrationInputObjectParameterSet = "PartnerRegistrationInputObjectParameterSet"; + protected const string PartnerTopicInputObjectParameterSet = "PartnerTopicInputObjectParameterSet"; + protected const string PartnerNamespaceInputObjectParameterSet = "PartnerNamespaceInputObjectParameterSet"; + protected const string ChannelInputObjectParameterSet = "ChannelInputObjectParameterSet"; + EventGridClient client; public EventGridClient Client diff --git a/src/EventGrid/EventGrid/ChangeLog.md b/src/EventGrid/EventGrid/ChangeLog.md index aeba276eb798..1b1ef03fbdd1 100644 --- a/src/EventGrid/EventGrid/ChangeLog.md +++ b/src/EventGrid/EventGrid/ChangeLog.md @@ -18,6 +18,16 @@ - Additional information about change #1 --> ## Upcoming Release +* Updated to use the 2022-06-15 API version. +* Added new features: + - Partner topics + - Partner topic event subscriptions + - Partner namespaces + - Partner namespace keys + - Partner configurations + - Partner registrations + - Verified partners + - Channels ## Version 1.4.1 * Add remaining advanced filters diff --git a/src/EventGrid/EventGrid/Channel/GetAzureEventGridChannel.cs b/src/EventGrid/EventGrid/Channel/GetAzureEventGridChannel.cs new file mode 100644 index 000000000000..4507ecfb35aa --- /dev/null +++ b/src/EventGrid/EventGrid/Channel/GetAzureEventGridChannel.cs @@ -0,0 +1,160 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections.Generic; +using System.Text; +using System.Management.Automation; +using Microsoft.Azure.Commands.EventGrid.Models; +using Microsoft.Azure.Management.EventGrid.Models; +using Microsoft.Azure.Commands.EventGrid.Utilities; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + +namespace Microsoft.Azure.Commands.EventGrid +{ + /// + /// 'Get-AzureEventGridChannel' Cmdlet gives the details of a / List of EventGrid channel(s) + /// If Channel name provided, a single Channel details will be returned + /// If Channel name not provided, list of Channels will be returned + /// + + [Cmdlet( + "Get", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventGridChannel", + DefaultParameterSetName = ChannelListByPartnerNamespaceParameterSet), + OutputType(typeof(PSChannelListInstance), typeof(PSChannel))] + + public class GetAzureEventGridChannel : AzureEventGridCmdletBase + { + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = ChannelListByPartnerNamespaceParameterSet)] + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = ChannelNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + [Alias(AliasResourceGroup)] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.PartnerNamespaceNameHelp, + ParameterSetName = ChannelListByPartnerNamespaceParameterSet)] + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.PartnerNamespaceNameHelp, + ParameterSetName = ChannelNameParameterSet)] + [ResourceNameCompleter("Microsoft.EventGrid/partnerNamespaces", nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + public string PartnerNamespaceName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.ChannelNameHelp, + ParameterSetName = ChannelNameParameterSet)] + [ResourceNameCompleter("Microsoft.EventGrid/channels", nameof(ResourceGroupName), nameof(PartnerNamespaceName))] + [ValidateNotNullOrEmpty] + [Alias("ChannelName")] + public string Name { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.ODataQueryHelp, + ParameterSetName = ChannelListByPartnerNamespaceParameterSet)] + [ValidateNotNullOrEmpty] + public string ODataQuery { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.TopHelp, + ParameterSetName = ChannelListByPartnerNamespaceParameterSet)] + [ValidateRange(1, 100)] + public int? Top { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.NextLinkHelp, + ParameterSetName = NextLinkParameterSet)] + [ValidateNotNullOrEmpty] + public string NextLink { get; set; } + + public override void ExecuteCmdlet() + { + string resourceGroupName = string.Empty; + IEnumerable partnerNamespacesList; + string newNextLink = null; + string partnerNamespaceName = null; + string channelName = null; + int? providedTop = null; + + if (MyInvocation.BoundParameters.ContainsKey(nameof(this.Top))) + { + providedTop = this.Top; + } + + if (!string.IsNullOrEmpty(this.ResourceGroupName)) + { + resourceGroupName = this.ResourceGroupName; + } + + if (!string.IsNullOrEmpty(this.PartnerNamespaceName)) + { + partnerNamespaceName = this.PartnerNamespaceName; + } + + if (!string.IsNullOrEmpty(this.Name)) + { + channelName = this.Name; + } + + if (!string.IsNullOrEmpty(this.NextLink)) + { + // Get next page of channels + Uri uri = new Uri(this.NextLink); + string path = uri.AbsolutePath; + + (partnerNamespacesList, newNextLink) = this.Client.ListChannelByPartnerNamespaceNext(this.NextLink); + + PSChannelListPagedInstance psChannelListPagedInstance = new PSChannelListPagedInstance(partnerNamespacesList, newNextLink); + this.WriteObject(psChannelListPagedInstance, true); + } + else if (!string.IsNullOrEmpty(channelName)) + { + // Get details of a channel + Channel partnerNamespace = this.Client.GetChannel(resourceGroupName, partnerNamespaceName, channelName); + PSChannel psPartnerConfigutation = new PSChannel(partnerNamespace); + this.WriteObject(psPartnerConfigutation); + } + else if (string.IsNullOrEmpty(channelName)) + { + // List channels at partner namespace scope + (partnerNamespacesList, newNextLink) = this.Client.ListChannelByPartnerNamespace(resourceGroupName, partnerNamespaceName, this.ODataQuery, providedTop); + PSChannelListPagedInstance psChannelListPagedInstance = new PSChannelListPagedInstance(partnerNamespacesList, newNextLink); + this.WriteObject(psChannelListPagedInstance, true); + } + } + } + +} \ No newline at end of file diff --git a/src/EventGrid/EventGrid/Channel/NewAzureEventGridChannel.cs b/src/EventGrid/EventGrid/Channel/NewAzureEventGridChannel.cs new file mode 100644 index 000000000000..cef187472b60 --- /dev/null +++ b/src/EventGrid/EventGrid/Channel/NewAzureEventGridChannel.cs @@ -0,0 +1,144 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.EventGrid.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.Tags; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.EventGrid.Models; +using Microsoft.Azure.Commands.EventGrid.Utilities; +using EventGridModels = Microsoft.Azure.Management.EventGrid.Models; +using System; + +namespace Microsoft.Azure.Commands.EventGrid +{ + [Cmdlet( + VerbsCommon.New, + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventGridChannel", + SupportsShouldProcess = true, + DefaultParameterSetName = ChannelNameParameterSet), + OutputType(typeof(PSChannel))] + + public class NewAzureEventGridChannel : AzureEventGridCmdletBase + { + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = ChannelNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + [Alias(AliasResourceGroup)] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 1, + HelpMessage = EventGridConstants.PartnerNamespaceNameHelp, + ParameterSetName = ChannelNameParameterSet)] + [ResourceNameCompleter("Microsoft.EventGrid/partnerNamespaces", nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + public string PartnerNamespaceName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 2, + HelpMessage = EventGridConstants.ChannelNameHelp, + ParameterSetName = ChannelNameParameterSet)] + [ResourceNameCompleter("Microsoft.EventGrid/channels", nameof(ResourceGroupName), nameof(PartnerNamespaceName))] + [ValidateNotNullOrEmpty] + [Alias("ChannelName")] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 3, + HelpMessage = EventGridConstants.ChannelTypeHelp, + ParameterSetName = ChannelNameParameterSet)] + [ValidateSet("PartnerTopic", IgnoreCase = true)] + public string ChannelType { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.PartnerTopicSourceHelp, + ParameterSetName = ChannelNameParameterSet)] + public string PartnerTopicSource { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.MessageForActivationHelp, + ParameterSetName = ChannelNameParameterSet)] + public string MessageForActivation { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.PartnerTopicNameHelp, + ParameterSetName = ChannelNameParameterSet)] + public string PartnerTopicName { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.EventTypeKindHelp, + ParameterSetName = ChannelNameParameterSet)] + public string EventTypeKind { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.InlineEventHelp, + ParameterSetName = ChannelNameParameterSet)] + [ValidateSet("Inline", IgnoreCase = true)] + public Hashtable InlineEvent { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.ExpirationTimeIfNotActivatedHelp, + ParameterSetName = ChannelNameParameterSet)] + public DateTime? ExpirationTimeIfNotActivatedUtc { get; set; } + + public override void ExecuteCmdlet() + { + // Create a new Event Grid Channel + if (this.ShouldProcess(this.ResourceGroupName, $"Create a new EventGrid partner channel {this.Name} under partner namespace {this.PartnerNamespaceName} in Resource Group {this.ResourceGroupName}")) + { + Channel channel = this.Client.CreateChannel( + azureSubscriptionId: this.DefaultContext.Subscription.Id, + resourceGroupName: this.ResourceGroupName, + partnerNamespaceName: this.PartnerNamespaceName, + channelName: this.Name, + channelType: this.ChannelType, + partnerTopicSource: this.PartnerTopicSource, + messageForActivation: this.MessageForActivation, + partnerTopicName: this.PartnerTopicName, + eventTypeKind: this.EventTypeKind, + inlineEvents: this.InlineEvent, + expirationTimeIfNotActivatedUtc: this.ExpirationTimeIfNotActivatedUtc); + + PSChannel psChannel = new PSChannel(channel); + this.WriteObject(psChannel); + } + } + } +} diff --git a/src/EventGrid/EventGrid/Channel/RemoveAzureEventGridChannel.cs b/src/EventGrid/EventGrid/Channel/RemoveAzureEventGridChannel.cs new file mode 100644 index 000000000000..320c5209c224 --- /dev/null +++ b/src/EventGrid/EventGrid/Channel/RemoveAzureEventGridChannel.cs @@ -0,0 +1,116 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.EventGrid.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.Tags; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.EventGrid.Models; +using Microsoft.Azure.Commands.EventGrid.Utilities; +using EventGridModels = Microsoft.Azure.Management.EventGrid.Models; + +namespace Microsoft.Azure.Commands.EventGrid +{ + [Cmdlet( + VerbsCommon.Remove, + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventGridChannel", + SupportsShouldProcess = true, + DefaultParameterSetName = ChannelNameParameterSet), + OutputType(typeof(bool))] + + public class RemoveAzureEventGridChannel : AzureEventGridCmdletBase + { + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = ChannelNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + [Alias(AliasResourceGroup)] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 1, + HelpMessage = EventGridConstants.PartnerNamespaceNameHelp, + ParameterSetName = ChannelNameParameterSet)] + [ResourceNameCompleter("Microsoft.EventGrid/partnerNamespaces", nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + public string PartnerNamespaceName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 2, + HelpMessage = EventGridConstants.ChannelNameHelp, + ParameterSetName = ChannelNameParameterSet)] + [ResourceNameCompleter("Microsoft.EventGrid/channels", nameof(ResourceGroupName), nameof(PartnerNamespaceName))] + [ValidateNotNullOrEmpty] + [Alias("ChannelName")] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.ChannelInputObjectHelp, + ParameterSetName = ChannelInputObjectParameterSet)] + public PSChannel InputObject { get; set; } + + /// + /// If present, do not ask for confirmation + /// + [Parameter(Mandatory = false, + HelpMessage = EventGridConstants.ForceHelp)] + public SwitchParameter Force { get; set; } + + [Parameter(Mandatory = false)] + public SwitchParameter PassThru { get; set; } + + public override void ExecuteCmdlet() + { + string resourceGroupName = string.Empty; + string partnerNamespaceName = string.Empty; + string channelName = string.Empty; + + if (this.InputObject != null) + { + resourceGroupName = this.InputObject.ResourceGroupName; + partnerNamespaceName = this.InputObject.PartnerNamespaceName; + channelName = this.InputObject.Name; + } + else + { + resourceGroupName = this.ResourceGroupName; + partnerNamespaceName = this.PartnerNamespaceName; + channelName = this.Name; + } + + if (this.ShouldProcess(channelName, $"Remove EventGrid channel {channelName} under partner namespace {partnerNamespaceName} in Resource Group {resourceGroupName}")) + { + this.Client.DeleteChannel(resourceGroupName, partnerNamespaceName, channelName); + + if (this.PassThru) + { + this.WriteObject(true); + } + } + } + } +} diff --git a/src/EventGrid/EventGrid/Channel/UpdateAzureEventGridChannel.cs b/src/EventGrid/EventGrid/Channel/UpdateAzureEventGridChannel.cs new file mode 100644 index 000000000000..e65aa77290a1 --- /dev/null +++ b/src/EventGrid/EventGrid/Channel/UpdateAzureEventGridChannel.cs @@ -0,0 +1,150 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.EventGrid.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.Tags; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.EventGrid.Models; +using Microsoft.Azure.Commands.EventGrid.Utilities; +using EventGridModels = Microsoft.Azure.Management.EventGrid.Models; +using System; + +namespace Microsoft.Azure.Commands.EventGrid +{ + [Cmdlet( + "Update", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventGridChannel", + SupportsShouldProcess = true, + DefaultParameterSetName = ChannelNameParameterSet), + OutputType(typeof(PSChannel))] + + public class UpdateAzureEventGridChannel : AzureEventGridCmdletBase + { + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = ChannelNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + [Alias(AliasResourceGroup)] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 1, + HelpMessage = EventGridConstants.PartnerNamespaceNameHelp, + ParameterSetName = ChannelNameParameterSet)] + [ResourceNameCompleter("Microsoft.EventGrid/partnerNamespaces", nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + public string PartnerNamespaceName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 2, + HelpMessage = EventGridConstants.ChannelNameHelp, + ParameterSetName = ChannelNameParameterSet)] + [ResourceNameCompleter("Microsoft.EventGrid/channels", nameof(ResourceGroupName), nameof(PartnerNamespaceName))] + [ValidateNotNullOrEmpty] + [Alias("ChannelName")] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.ChannelInputObjectHelp, + ParameterSetName = ChannelInputObjectParameterSet)] + public PSChannel InputObject { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.EventTypeKindHelp, + ParameterSetName = ChannelNameParameterSet)] + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.EventTypeKindHelp, + ParameterSetName = ChannelInputObjectParameterSet)] + public string EventTypeKind { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.InlineEventHelp, + ParameterSetName = ChannelNameParameterSet)] + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.InlineEventHelp, + ParameterSetName = ChannelInputObjectParameterSet)] + [ValidateSet("Inline", IgnoreCase = true)] + public Hashtable InlineEvent { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.ExpirationTimeIfNotActivatedHelp, + ParameterSetName = ChannelNameParameterSet)] + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.ExpirationTimeIfNotActivatedHelp, + ParameterSetName = ChannelInputObjectParameterSet)] + public DateTime? ExpirationTimeIfNotActivatedUtc { get; set; } + + public override void ExecuteCmdlet() + { + // Update an Event Grid Channel + string resourceGroupName = string.Empty; + string partnerNamespaceName = string.Empty; + string channelName = string.Empty; + + if (this.InputObject != null) + { + resourceGroupName = this.InputObject.ResourceGroupName; + partnerNamespaceName = this.InputObject.PartnerNamespaceName; + channelName = this.InputObject.Name; + } + else + { + resourceGroupName = this.ResourceGroupName; + partnerNamespaceName = this.PartnerNamespaceName; + channelName = this.Name; + } + + if (this.ShouldProcess(channelName, $"Update EventGrid channel {channelName} under partner namespace {partnerNamespaceName} in Resource Group {resourceGroupName}")) + { + Channel channel = this.Client.UpdateChannel( + resourceGroupName, + partnerNamespaceName, + channelName, + this.EventTypeKind, + this.InlineEvent, + this.ExpirationTimeIfNotActivatedUtc); + + PSChannel psChannel = new PSChannel(channel); + this.WriteObject(psChannel); + } + } + } +} + diff --git a/src/EventGrid/EventGrid/EventGrid.csproj b/src/EventGrid/EventGrid/EventGrid.csproj index 1bab904c5126..51dc3d010ce2 100644 --- a/src/EventGrid/EventGrid/EventGrid.csproj +++ b/src/EventGrid/EventGrid/EventGrid.csproj @@ -11,7 +11,7 @@ - + diff --git a/src/EventGrid/EventGrid/Models/PSChannel.cs b/src/EventGrid/EventGrid/Models/PSChannel.cs new file mode 100644 index 000000000000..a65f7bcc35f2 --- /dev/null +++ b/src/EventGrid/EventGrid/Models/PSChannel.cs @@ -0,0 +1,69 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.EventGrid.Utilities; +using Microsoft.Azure.Management.EventGrid.Models; +using Newtonsoft.Json; +using System; +using System.Collections.Generic; +using System.Text; + +namespace Microsoft.Azure.Commands.EventGrid.Models +{ + public class PSChannel + { + public PSChannel(Channel channel) + { + this.ResourceGroupName = EventGridUtils.ParseResourceGroupFromId(channel.Id); + this.PartnerNamespaceName = EventGridUtils.ParsePartnerNamespaceNameFromId(channel.Id); + this.Name = channel.Name; + this.Id = channel.Id; + this.ProvisioningState = channel.ProvisioningState; + this.ChannelType = channel.ChannelType; + this.PartnerTopicInfo = new PSPartnerTopicInfo(channel.PartnerTopicInfo); + this.MessageForActivation = channel.MessageForActivation; + this.ReadinessState = channel.ReadinessState; + this.ExpirationTimeIfNotActivatedUtc = channel.ExpirationTimeIfNotActivatedUtc; + } + + public string ResourceGroupName { get; set; } + + public string PartnerNamespaceName { get; set; } + + public string Name { get; set; } + + public string Id { get; set; } + + public string ChannelType { get; set; } + + public PSPartnerTopicInfo PartnerTopicInfo { get; set; } + + public string MessageForActivation { get; set; } + + public string ProvisioningState { get; set; } + + public string ReadinessState { get; set; } + + public DateTime? ExpirationTimeIfNotActivatedUtc { get; set; } + + /// + /// Return a string representation of this partner Namespace + /// + /// null + public override string ToString() + { + return null; + } + } +} diff --git a/src/EventGrid/EventGrid/Models/PSChannelListInstance.cs b/src/EventGrid/EventGrid/Models/PSChannelListInstance.cs new file mode 100644 index 000000000000..ae4752318c53 --- /dev/null +++ b/src/EventGrid/EventGrid/Models/PSChannelListInstance.cs @@ -0,0 +1,27 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.EventGrid.Models; + +namespace Microsoft.Azure.Commands.EventGrid.Models +{ + public class PSChannelListInstance : PSChannel + { + public PSChannelListInstance(Channel channel) : + base(channel) + { + } + } +} + diff --git a/src/EventGrid/EventGrid/Models/PSChannelListPagedInstance.cs b/src/EventGrid/EventGrid/Models/PSChannelListPagedInstance.cs new file mode 100644 index 000000000000..f28dc4fe85a5 --- /dev/null +++ b/src/EventGrid/EventGrid/Models/PSChannelListPagedInstance.cs @@ -0,0 +1,35 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.EventGrid.Models; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.EventGrid.Models +{ + public class PSChannelListPagedInstance + { + public List PsChannelsList = new List(); + public string NextLink; + + public PSChannelListPagedInstance(IEnumerable channelsList, string nextLink) + { + foreach (Channel channel in channelsList) + { + this.PsChannelsList.Add(new PSChannelListInstance(channel)); + } + + this.NextLink = nextLink; + } + } +} diff --git a/src/EventGrid/EventGrid/Models/PSConnectionState.cs b/src/EventGrid/EventGrid/Models/PSConnectionState.cs new file mode 100644 index 000000000000..6eecd656845a --- /dev/null +++ b/src/EventGrid/EventGrid/Models/PSConnectionState.cs @@ -0,0 +1,44 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections.Generic; +using System.Linq; +using Microsoft.Azure.Commands.EventGrid.Utilities; +using Microsoft.Azure.Management.EventGrid.Models; +using Newtonsoft.Json; + +namespace Microsoft.Azure.Commands.EventGrid.Models +{ + public class PSConnectionState + { + public PSConnectionState() + { + + } + + public PSConnectionState(ConnectionState connectionState) + { + this.Status = connectionState.Status; + this.Description = connectionState.Description; + this.ActionsRequired = connectionState.ActionsRequired; + } + + public string Status { get; set; } + + public string Description { get; set; } + + public string ActionsRequired { get; set; } + } +} diff --git a/src/EventGrid/EventGrid/Models/PSEventTypeInfo.cs b/src/EventGrid/EventGrid/Models/PSEventTypeInfo.cs new file mode 100644 index 000000000000..ff0783208ee0 --- /dev/null +++ b/src/EventGrid/EventGrid/Models/PSEventTypeInfo.cs @@ -0,0 +1,56 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.EventGrid.Utilities; +using Microsoft.Azure.Management.EventGrid.Models; +using Newtonsoft.Json; +using System; +using System.Collections.Generic; +using System.Text; + +namespace Microsoft.Azure.Commands.EventGrid.Models +{ + public class PSEventTypeInfo + { + public PSEventTypeInfo() + { + + } + + public PSEventTypeInfo(EventTypeInfo eventTypeInfo) + { + this.InlineEventTypes = new Dictionary(); + if (eventTypeInfo != null) + { + this.Kind = eventTypeInfo.Kind; + if (eventTypeInfo.InlineEventTypes != null) + { + foreach (var eventType in eventTypeInfo.InlineEventTypes) + { + this.InlineEventTypes[eventType.Key] = new PSInlineEventProperties((InlineEventProperties)eventType.Value); + } + } + } + } + + public string Kind { get; set; } + + public IDictionary InlineEventTypes { get; set; } + + public override string ToString() + { + return null; + } + } +} diff --git a/src/EventGrid/EventGrid/Models/PSInboundIpRule.cs b/src/EventGrid/EventGrid/Models/PSInboundIpRule.cs new file mode 100644 index 000000000000..0d1108db4317 --- /dev/null +++ b/src/EventGrid/EventGrid/Models/PSInboundIpRule.cs @@ -0,0 +1,41 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections.Generic; +using System.Linq; +using Microsoft.Azure.Commands.EventGrid.Utilities; +using Microsoft.Azure.Management.EventGrid.Models; +using Newtonsoft.Json; + +namespace Microsoft.Azure.Commands.EventGrid.Models +{ + public class PSInboundIpRule + { + public PSInboundIpRule() + { + + } + + public PSInboundIpRule(InboundIpRule inboundIpRules) + { + this.IpMask = inboundIpRules.IpMask; + this.Action = inboundIpRules.Action; + } + + public string IpMask { get; set; } + + public string Action { get; set; } + } +} diff --git a/src/EventGrid/EventGrid/Models/PSInlineEventProperties.cs b/src/EventGrid/EventGrid/Models/PSInlineEventProperties.cs new file mode 100644 index 000000000000..55eb0061920e --- /dev/null +++ b/src/EventGrid/EventGrid/Models/PSInlineEventProperties.cs @@ -0,0 +1,52 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.EventGrid.Utilities; +using Microsoft.Azure.Management.EventGrid.Models; +using Newtonsoft.Json; +using System; +using System.Collections.Generic; +using System.Text; + +namespace Microsoft.Azure.Commands.EventGrid.Models +{ + public class PSInlineEventProperties + { + public PSInlineEventProperties() + { + + } + + public PSInlineEventProperties(InlineEventProperties inlineEventProperties) + { + this.Description = inlineEventProperties.Description; + this.DisplayName = inlineEventProperties.DisplayName; + this.DocumentationUrl = inlineEventProperties.DocumentationUrl; + this.DataSchemaUrl = inlineEventProperties.DataSchemaUrl; + } + + public string Description { get; set; } + + public string DisplayName { get; set; } + + public string DocumentationUrl { get; set; } + + public string DataSchemaUrl { get; set; } + + public override string ToString() + { + return null; + } + } +} diff --git a/src/EventGrid/EventGrid/Models/PSPartner.cs b/src/EventGrid/EventGrid/Models/PSPartner.cs new file mode 100644 index 000000000000..d1e75adacda1 --- /dev/null +++ b/src/EventGrid/EventGrid/Models/PSPartner.cs @@ -0,0 +1,39 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections.Generic; +using Microsoft.Azure.Commands.EventGrid.Utilities; +using Microsoft.Azure.Management.EventGrid.Models; +using Newtonsoft.Json; + +namespace Microsoft.Azure.Commands.EventGrid.Models +{ + public class PSPartner + { + public PSPartner(Partner partner) + { + this.PartnerRegistrationImmutableId = partner.PartnerRegistrationImmutableId; + this.PartnerName = partner.PartnerName; + this.AuthorizationExpirationTimeInUtc = partner.AuthorizationExpirationTimeInUtc; + } + + public Guid? PartnerRegistrationImmutableId { get; set; } + + public string PartnerName { get; set; } + + public DateTime? AuthorizationExpirationTimeInUtc { get; set; } + + } +} diff --git a/src/EventGrid/EventGrid/Models/PSPartnerConfiguration.cs b/src/EventGrid/EventGrid/Models/PSPartnerConfiguration.cs new file mode 100644 index 000000000000..6ba5745dde66 --- /dev/null +++ b/src/EventGrid/EventGrid/Models/PSPartnerConfiguration.cs @@ -0,0 +1,60 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.EventGrid.Utilities; +using Microsoft.Azure.Management.EventGrid.Models; +using Newtonsoft.Json; +using System; +using System.Collections.Generic; +using System.Text; + +namespace Microsoft.Azure.Commands.EventGrid.Models +{ + public class PSPartnerConfiguration + { + public PSPartnerConfiguration(PartnerConfiguration partnerConfiguration) + { + this.ResourceGroupName = EventGridUtils.ParseResourceGroupFromId(partnerConfiguration.Id); + this.Id = partnerConfiguration.Id; + this.PartnerAuthorization = partnerConfiguration.PartnerAuthorization; + this.ProvisioningState = partnerConfiguration.ProvisioningState; + this.SystemData = partnerConfiguration.SystemData; + this.Location = partnerConfiguration.Location; + this.Tags = partnerConfiguration.Tags; + } + + public string ResourceGroupName { get; set; } + + public string Id { get; set; } + + public PartnerAuthorization PartnerAuthorization { get; set; } + + public string ProvisioningState { get; set; } + + public SystemData SystemData { get; private set; } + + public string Location { get; set; } + + public IDictionary Tags { get; set; } + + /// + /// Return a string representation of this partner configuration + /// + /// null + public override string ToString() + { + return null; + } + } +} diff --git a/src/EventGrid/EventGrid/Models/PSPartnerConfigurationListInstance.cs b/src/EventGrid/EventGrid/Models/PSPartnerConfigurationListInstance.cs new file mode 100644 index 000000000000..38cbefc945c2 --- /dev/null +++ b/src/EventGrid/EventGrid/Models/PSPartnerConfigurationListInstance.cs @@ -0,0 +1,26 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.EventGrid.Models; + +namespace Microsoft.Azure.Commands.EventGrid.Models +{ + public class PSPartnerConfigurationListInstance : PSPartnerConfiguration + { + public PSPartnerConfigurationListInstance(PartnerConfiguration partnerConfiguration) : + base(partnerConfiguration) + { + } + } +} diff --git a/src/EventGrid/EventGrid/Models/PSPartnerConfigurationListPagedInstance.cs b/src/EventGrid/EventGrid/Models/PSPartnerConfigurationListPagedInstance.cs new file mode 100644 index 000000000000..0a5257e53790 --- /dev/null +++ b/src/EventGrid/EventGrid/Models/PSPartnerConfigurationListPagedInstance.cs @@ -0,0 +1,35 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.EventGrid.Models; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.EventGrid.Models +{ + public class PSPartnerConfigurationListPagedInstance + { + public List PsPartnerConfigurationsList = new List(); + public string NextLink; + + public PSPartnerConfigurationListPagedInstance(IEnumerable partnerConfigurationsList, string nextLink) + { + foreach (PartnerConfiguration partnerConfiguration in partnerConfigurationsList) + { + this.PsPartnerConfigurationsList.Add(new PSPartnerConfigurationListInstance(partnerConfiguration)); + } + + this.NextLink = nextLink; + } + } +} diff --git a/src/EventGrid/EventGrid/Models/PSPartnerNamespace.cs b/src/EventGrid/EventGrid/Models/PSPartnerNamespace.cs new file mode 100644 index 000000000000..998af60d845a --- /dev/null +++ b/src/EventGrid/EventGrid/Models/PSPartnerNamespace.cs @@ -0,0 +1,86 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.EventGrid.Utilities; +using Microsoft.Azure.Management.EventGrid.Models; +using Newtonsoft.Json; +using System; +using System.Collections.Generic; +using System.Text; + +namespace Microsoft.Azure.Commands.EventGrid.Models +{ + public class PSPartnerNamespace + { + public PSPartnerNamespace(PartnerNamespace partnerNamespace) + { + this.ResourceGroupName = EventGridUtils.ParseResourceGroupFromId(partnerNamespace.Id); + this.PartnerNamespaceName = partnerNamespace.Name; + this.Id = partnerNamespace.Id; + this.ProvisioningState = partnerNamespace.ProvisioningState; + this.PartnerRegistrationFullyQualifiedId = partnerNamespace.PartnerRegistrationFullyQualifiedId; + this.Endpoint = partnerNamespace.Endpoint; + this.PublicNetworkAccess = partnerNamespace.PublicNetworkAccess; + this.DisableLocalAuth = partnerNamespace.DisableLocalAuth; + this.PartnerTopicRoutingMode = partnerNamespace.PartnerTopicRoutingMode; + + if (partnerNamespace.PrivateEndpointConnections != null) + { + foreach (PrivateEndpointConnection privateEndpointConnection in partnerNamespace.PrivateEndpointConnections) + { + this.PrivateEndpointConnections.Add(new PSPrivateEndpointConnection(privateEndpointConnection)); + } + } + + if (partnerNamespace.InboundIpRules != null) + { + foreach (InboundIpRule inboundIpRule in partnerNamespace.InboundIpRules) + { + this.InboundIpRules.Add(new PSInboundIpRule(inboundIpRule)); + } + } + } + + public string ResourceGroupName { get; set; } + + public string PartnerNamespaceName { get; set; } + + public string Id { get; set; } + + public IList PrivateEndpointConnections { get; private set; } + + public string ProvisioningState { get; private set; } + + public string PartnerRegistrationFullyQualifiedId { get; set; } + + public string Endpoint { get; private set; } + + public string PublicNetworkAccess { get; set; } + + public IList InboundIpRules { get; set; } + + public bool? DisableLocalAuth { get; set; } + + public string PartnerTopicRoutingMode { get; set; } + + /// + /// Return a string representation of this partner Namespace + /// + /// null + public override string ToString() + { + return null; + } + } +} diff --git a/src/EventGrid/EventGrid/Models/PSPartnerNamespaceListInstance.cs b/src/EventGrid/EventGrid/Models/PSPartnerNamespaceListInstance.cs new file mode 100644 index 000000000000..962bef1db8d5 --- /dev/null +++ b/src/EventGrid/EventGrid/Models/PSPartnerNamespaceListInstance.cs @@ -0,0 +1,27 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.EventGrid.Models; + +namespace Microsoft.Azure.Commands.EventGrid.Models +{ + public class PSPartnerNamespaceListInstance : PSPartnerNamespace + { + public PSPartnerNamespaceListInstance(PartnerNamespace partnerNamespace) : + base(partnerNamespace) + { + } + } +} + diff --git a/src/EventGrid/EventGrid/Models/PSPartnerNamespaceListPagedInstance.cs b/src/EventGrid/EventGrid/Models/PSPartnerNamespaceListPagedInstance.cs new file mode 100644 index 000000000000..0a32535b5a6e --- /dev/null +++ b/src/EventGrid/EventGrid/Models/PSPartnerNamespaceListPagedInstance.cs @@ -0,0 +1,35 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.EventGrid.Models; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.EventGrid.Models +{ + public class PSPartnerNamespaceListPagedInstance + { + public List PsPartnerNamespacesList = new List(); + public string NextLink; + + public PSPartnerNamespaceListPagedInstance(IEnumerable partnerNamespacesList, string nextLink) + { + foreach (PartnerNamespace partnerNamespace in partnerNamespacesList) + { + this.PsPartnerNamespacesList.Add(new PSPartnerNamespaceListInstance(partnerNamespace)); + } + + this.NextLink = nextLink; + } + } +} diff --git a/src/EventGrid/EventGrid/Models/PSPartnerNamespaceSharedAccessKeys.cs b/src/EventGrid/EventGrid/Models/PSPartnerNamespaceSharedAccessKeys.cs new file mode 100644 index 000000000000..a17c1fb606ea --- /dev/null +++ b/src/EventGrid/EventGrid/Models/PSPartnerNamespaceSharedAccessKeys.cs @@ -0,0 +1,45 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.EventGrid.Utilities; +using Microsoft.Azure.Management.EventGrid.Models; +using Newtonsoft.Json; +using System; +using System.Collections.Generic; +using System.Text; + +namespace Microsoft.Azure.Commands.EventGrid.Models +{ + public class PSPartnerNamespaceSharedAccessKeys + { + public PSPartnerNamespaceSharedAccessKeys(PartnerNamespaceSharedAccessKeys partnerNamespaceSharedAccessKeys) + { + this.Key1 = partnerNamespaceSharedAccessKeys.Key1; + this.Key2 = partnerNamespaceSharedAccessKeys.Key2; + } + + public string Key1 { get; set; } + + public string Key2 { get; set; } + + /// + /// Return a string representation of this PartnerNamespaceSharedAccessKeys + /// + /// null + public override string ToString() + { + return null; + } + } +} diff --git a/src/EventGrid/EventGrid/Models/PSPartnerRegistration.cs b/src/EventGrid/EventGrid/Models/PSPartnerRegistration.cs new file mode 100644 index 000000000000..801a66978784 --- /dev/null +++ b/src/EventGrid/EventGrid/Models/PSPartnerRegistration.cs @@ -0,0 +1,54 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.EventGrid.Utilities; +using Microsoft.Azure.Management.EventGrid.Models; +using Newtonsoft.Json; +using System; +using System.Collections.Generic; +using System.Text; + +namespace Microsoft.Azure.Commands.EventGrid.Models +{ + public class PSPartnerRegistration + { + public PSPartnerRegistration(PartnerRegistration partnerRegistration) + { + this.ResourceGroupName = EventGridUtils.ParseResourceGroupFromId(partnerRegistration.Id); + this.PartnerRegistrationName = partnerRegistration.Name; + this.Id = partnerRegistration.Id; + this.ProvisioningState = partnerRegistration.ProvisioningState; + this.PartnerRegistrationImmutableId = partnerRegistration.PartnerRegistrationImmutableId; + } + + public string ResourceGroupName { get; set; } + + public string PartnerRegistrationName { get; set; } + + public string Id { get; set; } + + public Guid? PartnerRegistrationImmutableId { get; set; } + + public string ProvisioningState { get; set; } + + /// + /// Return a string representation of this partner Registration + /// + /// null + public override string ToString() + { + return null; + } + } +} diff --git a/src/EventGrid/EventGrid/Models/PSPartnerRegistrationListInstance.cs b/src/EventGrid/EventGrid/Models/PSPartnerRegistrationListInstance.cs new file mode 100644 index 000000000000..07677cae4663 --- /dev/null +++ b/src/EventGrid/EventGrid/Models/PSPartnerRegistrationListInstance.cs @@ -0,0 +1,26 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.EventGrid.Models; + +namespace Microsoft.Azure.Commands.EventGrid.Models +{ + public class PSPartnerRegistrationListInstance : PSPartnerRegistration + { + public PSPartnerRegistrationListInstance(PartnerRegistration partnerRegistration) : + base(partnerRegistration) + { + } + } +} diff --git a/src/EventGrid/EventGrid/Models/PSPartnerRegistrationListPagedInstance.cs b/src/EventGrid/EventGrid/Models/PSPartnerRegistrationListPagedInstance.cs new file mode 100644 index 000000000000..f26e6ac4a396 --- /dev/null +++ b/src/EventGrid/EventGrid/Models/PSPartnerRegistrationListPagedInstance.cs @@ -0,0 +1,35 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.EventGrid.Models; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.EventGrid.Models +{ + public class PSPartnerRegistrationListPagedInstance + { + public List PsPartnerRegistrationsList = new List(); + public string NextLink; + + public PSPartnerRegistrationListPagedInstance(IEnumerable partnerRegistrationsList, string nextLink) + { + foreach (PartnerRegistration partnerRegistration in partnerRegistrationsList) + { + this.PsPartnerRegistrationsList.Add(new PSPartnerRegistrationListInstance(partnerRegistration)); + } + + this.NextLink = nextLink; + } + } +} diff --git a/src/EventGrid/EventGrid/Models/PSPartnerTopic.cs b/src/EventGrid/EventGrid/Models/PSPartnerTopic.cs new file mode 100644 index 000000000000..2780ed1d8e3a --- /dev/null +++ b/src/EventGrid/EventGrid/Models/PSPartnerTopic.cs @@ -0,0 +1,74 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections.Generic; +using Microsoft.Azure.Commands.EventGrid.Utilities; +using Microsoft.Azure.Management.EventGrid.Models; +using Newtonsoft.Json; + +namespace Microsoft.Azure.Commands.EventGrid.Models +{ + public class PSPartnerTopic + { + public PSPartnerTopic(PartnerTopic topic) + { + this.Id = topic.Id; + this.Identity = new PsIdentityInfo(topic.Identity); + this.Location = topic.Location; + this.Name = topic.Name; + this.ProvisioningState = topic.ProvisioningState; + this.Source = topic.Source; + this.Tags = topic.Tags; + this.Type = topic.Type; + this.ResourceGroupName = EventGridUtils.ParseResourceGroupFromId(topic.Id); + this.ExpirationTimeIfNotActivatedUtc = topic.ExpirationTimeIfNotActivatedUtc; + this.PartnerRegistrationImmutableId = topic.PartnerRegistrationImmutableId; + this.PartnerTopicFriendlyDescription = topic.PartnerTopicFriendlyDescription; + this.MessageForActivation = topic.MessageForActivation; + this.EventTypeInfo = topic.EventTypeInfo; + this.ActivationState = topic.ActivationState; + } + + public string ResourceGroupName { get; set; } + + public string Name { get; set; } + + public string Id { get; set; } + + public PsIdentityInfo Identity { get; set; } + + public string Type { get; set; } + + public string Location { get; set; } + + public string ProvisioningState { get; set; } + + public string Source { get; set; } + + public IDictionary Tags { get; set; } + + public EventTypeInfo EventTypeInfo { get; set; } + + public DateTime? ExpirationTimeIfNotActivatedUtc { get; set; } + + public Guid? PartnerRegistrationImmutableId { get; set; } + + public string PartnerTopicFriendlyDescription { get; set; } + + public string MessageForActivation { get; set; } + + public string ActivationState { get; set; } + } +} diff --git a/src/EventGrid/EventGrid/Models/PSPartnerTopicInfo.cs b/src/EventGrid/EventGrid/Models/PSPartnerTopicInfo.cs new file mode 100644 index 000000000000..c57166c887e0 --- /dev/null +++ b/src/EventGrid/EventGrid/Models/PSPartnerTopicInfo.cs @@ -0,0 +1,58 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.EventGrid.Utilities; +using Microsoft.Azure.Management.EventGrid.Models; +using Newtonsoft.Json; +using System; +using System.Collections.Generic; +using System.Text; + +namespace Microsoft.Azure.Commands.EventGrid.Models +{ + public class PSPartnerTopicInfo + { + public PSPartnerTopicInfo(PartnerTopicInfo partnerTopicInfo) + { + this.ResourceGroupName = partnerTopicInfo.ResourceGroupName; + this.PartnerTopicInfoName = partnerTopicInfo.Name; + this.AzureSubscriptionId = partnerTopicInfo.AzureSubscriptionId; + this.Name = partnerTopicInfo.Name; + this.EventTypeInfo = new PSEventTypeInfo(partnerTopicInfo.EventTypeInfo); + this.Source = partnerTopicInfo.Source; + + } + + public string ResourceGroupName { get; set; } + + public string PartnerTopicInfoName { get; set; } + + public string AzureSubscriptionId { get; set; } + + public string Name { get; set; } + + public PSEventTypeInfo EventTypeInfo { get; set; } + + public string Source { get; set; } + + /// + /// Return a string representation of this partner Namespace + /// + /// null + public override string ToString() + { + return null; + } + } +} diff --git a/src/EventGrid/EventGrid/Models/PSPartnerTopicListInstance.cs b/src/EventGrid/EventGrid/Models/PSPartnerTopicListInstance.cs new file mode 100644 index 000000000000..fd883055994a --- /dev/null +++ b/src/EventGrid/EventGrid/Models/PSPartnerTopicListInstance.cs @@ -0,0 +1,26 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.EventGrid.Models; + +namespace Microsoft.Azure.Commands.EventGrid.Models +{ + public class PSPartnerTopicListInstance : PSPartnerTopic + { + public PSPartnerTopicListInstance(PartnerTopic partnerTopic) : + base(partnerTopic) + { + } + } +} diff --git a/src/EventGrid/EventGrid/Models/PSPartnerTopicListPagedInstance.cs b/src/EventGrid/EventGrid/Models/PSPartnerTopicListPagedInstance.cs new file mode 100644 index 000000000000..de67da1ef79e --- /dev/null +++ b/src/EventGrid/EventGrid/Models/PSPartnerTopicListPagedInstance.cs @@ -0,0 +1,35 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.EventGrid.Models; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.EventGrid.Models +{ + public class PSPartnerTopicListPagedInstance + { + public List PsPartnerTopicsList = new List(); + public string NextLink; + + public PSPartnerTopicListPagedInstance(IEnumerable partnerTopicsList, string nextLink) + { + foreach (PartnerTopic partnerTopic in partnerTopicsList) + { + this.PsPartnerTopicsList.Add(new PSPartnerTopicListInstance(partnerTopic)); + } + + this.NextLink = nextLink; + } + } +} diff --git a/src/EventGrid/EventGrid/Models/PSPrivateEndpoint.cs b/src/EventGrid/EventGrid/Models/PSPrivateEndpoint.cs new file mode 100644 index 000000000000..0fe84bd6ca34 --- /dev/null +++ b/src/EventGrid/EventGrid/Models/PSPrivateEndpoint.cs @@ -0,0 +1,38 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections.Generic; +using System.Linq; +using Microsoft.Azure.Commands.EventGrid.Utilities; +using Microsoft.Azure.Management.EventGrid.Models; +using Newtonsoft.Json; + +namespace Microsoft.Azure.Commands.EventGrid.Models +{ + public class PSPrivateEndpoint + { + public PSPrivateEndpoint() + { + + } + + public PSPrivateEndpoint(PrivateEndpoint privateEndpoint) + { + this.Id = privateEndpoint.Id; + } + + public string Id { get; set; } + } +} diff --git a/src/EventGrid/EventGrid/Models/PSPrivateEndpointConnection.cs b/src/EventGrid/EventGrid/Models/PSPrivateEndpointConnection.cs new file mode 100644 index 000000000000..9ccd39f0a6f4 --- /dev/null +++ b/src/EventGrid/EventGrid/Models/PSPrivateEndpointConnection.cs @@ -0,0 +1,45 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections.Generic; +using System.Linq; +using Microsoft.Azure.Commands.EventGrid.Utilities; +using Microsoft.Azure.Management.EventGrid.Models; +using Newtonsoft.Json; + +namespace Microsoft.Azure.Commands.EventGrid.Models +{ + public class PSPrivateEndpointConnection + { + public PSPrivateEndpointConnection() + { + + } + + public PSPrivateEndpointConnection(PrivateEndpointConnection privateEndpointConnection) + { + this.PrivateEndpoint = new PSPrivateEndpoint(privateEndpointConnection.PrivateEndpoint); + this.GroupIds = privateEndpointConnection.GroupIds.ToArray(); + this.PrivateLinkServiceConnectionState = new PSConnectionState(privateEndpointConnection.PrivateLinkServiceConnectionState); + } + + public PSPrivateEndpoint PrivateEndpoint { get; set; } + + public string[] GroupIds { get; set; } + + public PSConnectionState PrivateLinkServiceConnectionState { get; set; } + + } +} diff --git a/src/EventGrid/EventGrid/Models/PSVerifiedPartner.cs b/src/EventGrid/EventGrid/Models/PSVerifiedPartner.cs new file mode 100644 index 000000000000..313881f006c8 --- /dev/null +++ b/src/EventGrid/EventGrid/Models/PSVerifiedPartner.cs @@ -0,0 +1,56 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.EventGrid.Models; +using Newtonsoft.Json; +using System; +using System.Collections.Generic; +using System.Text; + +namespace Microsoft.Azure.Commands.EventGrid.Models +{ + public class PSVerifiedPartner + { + public PSVerifiedPartner(VerifiedPartner verifiedPartner) + { + this.PartnerRegistrationImmutableId = verifiedPartner.PartnerRegistrationImmutableId; + this.OrganizationName = verifiedPartner.OrganizationName; + this.PartnerDisplayName = verifiedPartner.PartnerDisplayName; + this.PartnerTopicDetails = verifiedPartner.PartnerTopicDetails; + this.ProvisioningState = verifiedPartner.ProvisioningState; + this.SystemData = verifiedPartner.SystemData; + } + + public Guid? PartnerRegistrationImmutableId { get; set; } + + public string OrganizationName { get; set; } + + public string PartnerDisplayName { get; set; } + + public PartnerDetails PartnerTopicDetails { get; set; } + + public string ProvisioningState { get; set; } + + public SystemData SystemData { get; private set; } + + /// + /// Return a string representation of this verified partner + /// + /// null + public override string ToString() + { + return null; + } + } +} diff --git a/src/EventGrid/EventGrid/Models/PSVerifiedPartnerListInstance.cs b/src/EventGrid/EventGrid/Models/PSVerifiedPartnerListInstance.cs new file mode 100644 index 000000000000..27287405b89b --- /dev/null +++ b/src/EventGrid/EventGrid/Models/PSVerifiedPartnerListInstance.cs @@ -0,0 +1,26 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.EventGrid.Models; + +namespace Microsoft.Azure.Commands.EventGrid.Models +{ + public class PSVerifiedPartnerListInstance : PSVerifiedPartner + { + public PSVerifiedPartnerListInstance(VerifiedPartner verifiedPartner) : + base(verifiedPartner) + { + } + } +} diff --git a/src/EventGrid/EventGrid/Models/PSVerifiedPartnerListPagedInstance.cs b/src/EventGrid/EventGrid/Models/PSVerifiedPartnerListPagedInstance.cs new file mode 100644 index 000000000000..8a9a167c3b1f --- /dev/null +++ b/src/EventGrid/EventGrid/Models/PSVerifiedPartnerListPagedInstance.cs @@ -0,0 +1,35 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.EventGrid.Models; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.EventGrid.Models +{ + public class PSVerifiedPartnerListPagedInstance + { + public List PsVerifiedPartnersList = new List(); + public string NextLink; + + public PSVerifiedPartnerListPagedInstance(IEnumerable verifiedPartnersList, string nextLink) + { + foreach (VerifiedPartner verifiedPartner in verifiedPartnersList) + { + this.PsVerifiedPartnersList.Add(new PSVerifiedPartnerListInstance(verifiedPartner)); + } + + this.NextLink = nextLink; + } + } +} diff --git a/src/EventGrid/EventGrid/Models/PsIdentityInfo.cs b/src/EventGrid/EventGrid/Models/PsIdentityInfo.cs index ef748b7b1b20..d7c120efec35 100644 --- a/src/EventGrid/EventGrid/Models/PsIdentityInfo.cs +++ b/src/EventGrid/EventGrid/Models/PsIdentityInfo.cs @@ -20,10 +20,10 @@ public class PsIdentityInfo { public PsIdentityInfo(IdentityInfo identityInfo) { - if(identityInfo != null) + if (identityInfo != null) { this.IdentityType = identityInfo.Type; - if(identityInfo.UserAssignedIdentities != null && identityInfo.UserAssignedIdentities.Count > 0) + if (identityInfo.UserAssignedIdentities != null && identityInfo.UserAssignedIdentities.Count > 0) { this.UserAssignedIdentities = new List(); foreach (string userAssignedIdentity in identityInfo.UserAssignedIdentities.Keys) diff --git a/src/EventGrid/EventGrid/PartnerConfiguration/GetAzureEventGridPartnerConfiguration.cs b/src/EventGrid/EventGrid/PartnerConfiguration/GetAzureEventGridPartnerConfiguration.cs new file mode 100644 index 000000000000..a732b65c220b --- /dev/null +++ b/src/EventGrid/EventGrid/PartnerConfiguration/GetAzureEventGridPartnerConfiguration.cs @@ -0,0 +1,115 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections.Generic; +using System.Text; +using System.Management.Automation; +using Microsoft.Azure.Commands.EventGrid.Models; +using Microsoft.Azure.Management.EventGrid.Models; +using Microsoft.Azure.Commands.EventGrid.Utilities; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + +namespace Microsoft.Azure.Commands.EventGrid +{ + /// + /// 'Get-AzureEventGridPartnerConfiguration' Cmdlet gives the details of a / List of EventGrid partner configuration(s) + /// If ResourceGroup name provided, a single PartnerConfiguration details will be returned + /// If ResourceGroup name not provided, list of PartnerConfiguration will be returned + /// + + [Cmdlet( + "Get", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventGridPartnerConfiguration", + DefaultParameterSetName = ResourceGroupNameParameterSet), + OutputType(typeof(PSPartnerConfigurationListInstance), typeof(PSPartnerConfiguration))] + + public class GetAzureEventGridPartnerConfiguration : AzureEventGridCmdletBase + { + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = ResourceGroupNameParameterSet)] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.ODataQueryHelp, + ParameterSetName = ResourceGroupNameParameterSet)] + [ValidateNotNullOrEmpty] + public string ODataQuery { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.TopHelp, + ParameterSetName = ResourceGroupNameParameterSet)] + [ValidateRange(1, 100)] + public int? Top { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.NextLinkHelp, + ParameterSetName = NextLinkParameterSet)] + [ValidateNotNullOrEmpty] + public string NextLink { get; set; } + + public override void ExecuteCmdlet() + { + string resourceGroupName = string.Empty; + IEnumerable partnerConfigurationsList; + string newNextLink = null; + int? providedTop = null; + + if (MyInvocation.BoundParameters.ContainsKey(nameof(this.Top))) + { + providedTop = this.Top; + } + + if (!string.IsNullOrEmpty(this.ResourceGroupName)) + { + resourceGroupName = this.ResourceGroupName; + } + + if (!string.IsNullOrEmpty(this.NextLink)) + { + // Get next page of partner configurations + Uri uri = new Uri(this.NextLink); + string path = uri.AbsolutePath; + + (partnerConfigurationsList, newNextLink) = this.Client.ListPartnerConfigurationNext(this.NextLink); + PSPartnerConfigurationListPagedInstance psPartnerConfigurationListPagedInstance = new PSPartnerConfigurationListPagedInstance(partnerConfigurationsList, newNextLink); + this.WriteObject(psPartnerConfigurationListPagedInstance, true); + } + else if (!string.IsNullOrEmpty(resourceGroupName)) + { + // Get details of a partner configuration for a resource group + PartnerConfiguration partnerConfiguration = this.Client.GetPartnerConfiguration(resourceGroupName); + PSPartnerConfiguration psPartnerConfigutation = new PSPartnerConfiguration(partnerConfiguration); + this.WriteObject(psPartnerConfigutation); + } + else if (string.IsNullOrEmpty(resourceGroupName)) + { + // List all partner configurations in the current subscription + (partnerConfigurationsList, newNextLink) = this.Client.ListPartnerConfigurationsBySubscription(this.ODataQuery, providedTop); + PSPartnerConfigurationListPagedInstance psPartnerConfigurationListPagedInstance = new PSPartnerConfigurationListPagedInstance(partnerConfigurationsList, newNextLink); + this.WriteObject(psPartnerConfigurationListPagedInstance, true); + } + } + } + +} \ No newline at end of file diff --git a/src/EventGrid/EventGrid/PartnerConfiguration/GrantAzureEventGridPartnerConfiguration.cs b/src/EventGrid/EventGrid/PartnerConfiguration/GrantAzureEventGridPartnerConfiguration.cs new file mode 100644 index 000000000000..76402ce43537 --- /dev/null +++ b/src/EventGrid/EventGrid/PartnerConfiguration/GrantAzureEventGridPartnerConfiguration.cs @@ -0,0 +1,123 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.EventGrid.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.Tags; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.EventGrid.Models; +using Microsoft.Azure.Commands.EventGrid.Utilities; +using EventGridModels = Microsoft.Azure.Management.EventGrid.Models; +using System; + +namespace Microsoft.Azure.Commands.EventGrid +{ + [Cmdlet( + "Grant", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventGridPartnerConfiguration", + SupportsShouldProcess = true, + DefaultParameterSetName = ResourceGroupNameParameterSet), + OutputType(typeof(PSPartnerConfiguration))] + + public class GrantAzureEventGridPartnerConfiguration : AzureEventGridCmdletBase + { + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = ResourceGroupNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + [Alias(AliasResourceGroup)] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.PartnerConfigurationInputObjectHelp, + ParameterSetName = PartnerConfigurationInputObjectParameterSet)] + public PSPartnerConfiguration InputObject { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.PartnerRegistrationImmutableIdHelp, + ParameterSetName = PartnerConfigurationInputObjectParameterSet)] + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.PartnerRegistrationImmutableIdHelp, + ParameterSetName = ResourceGroupNameParameterSet)] + public Guid? PartnerRegistrationImmutableId { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.PartnerNameHelp, + ParameterSetName = ResourceGroupNameParameterSet)] + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.PartnerNameHelp, + ParameterSetName = PartnerConfigurationInputObjectParameterSet)] + public string PartnerName { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.AuthorizationExpirationTimeHelp, + ParameterSetName = ResourceGroupNameParameterSet)] + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.AuthorizationExpirationTimeHelp, + ParameterSetName = PartnerConfigurationInputObjectParameterSet)] + public DateTime? AuthorizationExpirationTime { get; set; } + + public override void ExecuteCmdlet() + { + string resourceGroupName = string.Empty; + + if (this.InputObject != null) + { + resourceGroupName = this.InputObject.ResourceGroupName; + } + else + { + resourceGroupName = this.ResourceGroupName; + } + + if (this.ShouldProcess(this.ResourceGroupName, $"Grant partner for EventGrid partner configuration in Resource Group {resourceGroupName}")) + { + PartnerConfiguration partnerConfiguration = this.Client.AuthorizePartnerConfiguration( + resourceGroupName, + this.PartnerRegistrationImmutableId, + this.PartnerName, + this.AuthorizationExpirationTime); + PSPartnerConfiguration psPartnerConfiguration = new PSPartnerConfiguration(partnerConfiguration); + this.WriteObject(psPartnerConfiguration); + } + } + } +} diff --git a/src/EventGrid/EventGrid/PartnerConfiguration/NewAzureEventGridPartnerCofiguration.cs b/src/EventGrid/EventGrid/PartnerConfiguration/NewAzureEventGridPartnerCofiguration.cs new file mode 100644 index 000000000000..f937d0e77a74 --- /dev/null +++ b/src/EventGrid/EventGrid/PartnerConfiguration/NewAzureEventGridPartnerCofiguration.cs @@ -0,0 +1,89 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.EventGrid.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.Tags; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.EventGrid.Models; +using Microsoft.Azure.Commands.EventGrid.Utilities; +using EventGridModels = Microsoft.Azure.Management.EventGrid.Models; + +namespace Microsoft.Azure.Commands.EventGrid +{ + [Cmdlet( + VerbsCommon.New, + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventGridPartnerConfiguration", + SupportsShouldProcess = true, + DefaultParameterSetName = ResourceGroupNameParameterSet), + OutputType(typeof(PSPartnerConfiguration))] + + public class NewAzureEventGridPartnerConfiguration : AzureEventGridCmdletBase + { + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = ResourceGroupNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + [Alias(AliasResourceGroup)] + public string ResourceGroupName { get; set; } + + /// + /// Hashtable which represents resource Tags. + /// + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.TagsHelp, + ParameterSetName = ResourceGroupNameParameterSet)] + public Hashtable Tag { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.MaxExpirationTimeInDaysHelp, + ParameterSetName = ResourceGroupNameParameterSet)] + public int? MaxExpirationTimeInDays { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.AuthorizedPartnersHelp, + ParameterSetName = ResourceGroupNameParameterSet)] + public Hashtable[] AuthorizedPartner { get; set; } + + public override void ExecuteCmdlet() + { + // Create a new Event Grid Partner Configuration + Dictionary tagDictionary = TagsConversionHelper.CreateTagDictionary(this.Tag, true); + + if (this.ShouldProcess(this.ResourceGroupName, $"Create a new EventGrid partner configuration in Resource Group {this.ResourceGroupName}")) + { + PartnerConfiguration partnerConfiguration = this.Client.CreatePartnerConfiguration( + this.ResourceGroupName, + this.AuthorizedPartner, + this.MaxExpirationTimeInDays, + tagDictionary); + + PSPartnerConfiguration psPartnerConfiguration = new PSPartnerConfiguration(partnerConfiguration); + this.WriteObject(psPartnerConfiguration); + } + } + } +} diff --git a/src/EventGrid/EventGrid/PartnerConfiguration/RemoveAzureEventGridPartnerCofiguration.cs b/src/EventGrid/EventGrid/PartnerConfiguration/RemoveAzureEventGridPartnerCofiguration.cs new file mode 100644 index 000000000000..5b1b29da3cdf --- /dev/null +++ b/src/EventGrid/EventGrid/PartnerConfiguration/RemoveAzureEventGridPartnerCofiguration.cs @@ -0,0 +1,88 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.EventGrid.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.Tags; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.EventGrid.Models; +using Microsoft.Azure.Commands.EventGrid.Utilities; +using EventGridModels = Microsoft.Azure.Management.EventGrid.Models; + +namespace Microsoft.Azure.Commands.EventGrid +{ + [Cmdlet( + VerbsCommon.Remove, + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventGridPartnerConfiguration", + SupportsShouldProcess = true, + DefaultParameterSetName = ResourceGroupNameParameterSet), + OutputType(typeof(bool))] + + public class RemoveAzureEventGridPartnerConfiguration : AzureEventGridCmdletBase + { + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = ResourceGroupNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + [Alias(AliasResourceGroup)] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.PartnerConfigurationInputObjectHelp, + ParameterSetName = PartnerConfigurationInputObjectParameterSet)] + public PSPartnerConfiguration InputObject { get; set; } + + /// + /// If present, do not ask for confirmation + /// + [Parameter(Mandatory = false, + HelpMessage = EventGridConstants.ForceHelp)] + public SwitchParameter Force { get; set; } + + [Parameter(Mandatory = false)] + public SwitchParameter PassThru { get; set; } + + public override void ExecuteCmdlet() + { + string resourceGroupName = string.Empty; + if (this.InputObject != null) + { + resourceGroupName = this.InputObject.ResourceGroupName; + } + else + { + resourceGroupName = this.ResourceGroupName; + } + + if (this.ShouldProcess(resourceGroupName, $"Remove an EventGrid partner configuration in Resource Group {resourceGroupName}")) + { + this.Client.DeletePartnerConfiguration(resourceGroupName); + + if (this.PassThru) + { + this.WriteObject(true); + } + } + } + } +} diff --git a/src/EventGrid/EventGrid/PartnerConfiguration/RevokeAzEventGridPartnerConfiguration.cs b/src/EventGrid/EventGrid/PartnerConfiguration/RevokeAzEventGridPartnerConfiguration.cs new file mode 100644 index 000000000000..f7c4fc38d576 --- /dev/null +++ b/src/EventGrid/EventGrid/PartnerConfiguration/RevokeAzEventGridPartnerConfiguration.cs @@ -0,0 +1,99 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.EventGrid.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.Tags; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.EventGrid.Models; +using Microsoft.Azure.Commands.EventGrid.Utilities; +using EventGridModels = Microsoft.Azure.Management.EventGrid.Models; +using System; + +namespace Microsoft.Azure.Commands.EventGrid +{ + [Cmdlet( + "Revoke", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventGridPartnerConfiguration", + SupportsShouldProcess = true, + DefaultParameterSetName = ResourceGroupNameParameterSet), + OutputType(typeof(PSPartnerConfiguration))] + + public class RevokeAzureEventGridPartnerConfiguration : AzureEventGridCmdletBase + { + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = ResourceGroupNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + [Alias(AliasResourceGroup)] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.PartnerConfigurationInputObjectHelp, + ParameterSetName = PartnerConfigurationInputObjectParameterSet)] + public PSPartnerConfiguration InputObject { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.PartnerRegistrationImmutableIdHelp)] + public Guid? PartnerRegistrationImmutableId { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.PartnerNameHelp)] + public string PartnerName { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.AuthorizationExpirationTimeHelp)] + public DateTime? AuthorizationExpirationTime { get; set; } + + public override void ExecuteCmdlet() + { + string resourceGroupName = string.Empty; + + if (this.InputObject != null) + { + resourceGroupName = this.InputObject.ResourceGroupName; + } + else + { + resourceGroupName = this.ResourceGroupName; + } + + if (this.ShouldProcess(this.ResourceGroupName, $"Revoke partner for EventGrid partner configuration in Resource Group {resourceGroupName}")) + { + PartnerConfiguration partnerConfiguration = this.Client.UnauthorizePartnerConfiguration( + resourceGroupName, + this.PartnerRegistrationImmutableId, + this.PartnerName, + this.AuthorizationExpirationTime); + PSPartnerConfiguration psPartnerConfiguration = new PSPartnerConfiguration(partnerConfiguration); + this.WriteObject(psPartnerConfiguration); + } + } + } +} diff --git a/src/EventGrid/EventGrid/PartnerConfiguration/UpdateAzureEventGridPartnerCofiguration.cs b/src/EventGrid/EventGrid/PartnerConfiguration/UpdateAzureEventGridPartnerCofiguration.cs new file mode 100644 index 000000000000..615c5804af00 --- /dev/null +++ b/src/EventGrid/EventGrid/PartnerConfiguration/UpdateAzureEventGridPartnerCofiguration.cs @@ -0,0 +1,108 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.EventGrid.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.Tags; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.EventGrid.Models; +using Microsoft.Azure.Commands.EventGrid.Utilities; +using EventGridModels = Microsoft.Azure.Management.EventGrid.Models; + +namespace Microsoft.Azure.Commands.EventGrid +{ + [Cmdlet( + "Update", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventGridPartnerConfiguration", + SupportsShouldProcess = true, + DefaultParameterSetName = ResourceGroupNameParameterSet), + OutputType(typeof(PSPartnerConfiguration))] + + public class UpdateAzureEventGridPartnerConfiguration : AzureEventGridCmdletBase + { + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = ResourceGroupNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + [Alias(AliasResourceGroup)] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.PartnerConfigurationInputObjectHelp, + ParameterSetName = PartnerConfigurationInputObjectParameterSet)] + public PSPartnerConfiguration InputObject { get; set; } + + /// + /// Hashtable which represents resource Tags. + /// + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.TagsHelp, + ParameterSetName = ResourceGroupNameParameterSet)] + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.TagsHelp, + ParameterSetName = PartnerConfigurationInputObjectParameterSet)] + public Hashtable Tag { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.MaxExpirationTimeInDaysHelp, + ParameterSetName = ResourceGroupNameParameterSet)] + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.MaxExpirationTimeInDaysHelp, + ParameterSetName = PartnerConfigurationInputObjectParameterSet)] + public int? MaxExpirationTimeInDays { get; set; } + + public override void ExecuteCmdlet() + { + // Update an Event Grid Partner Configuration + Dictionary tagDictionary = TagsConversionHelper.CreateTagDictionary(this.Tag, true); + string resourceGroupName = string.Empty; + if (this.InputObject != null) + { + resourceGroupName = this.InputObject.ResourceGroupName; + } + else + { + resourceGroupName = this.ResourceGroupName; + } + + if (this.ShouldProcess(resourceGroupName, $"Update an EventGrid partner configuration in Resource Group {resourceGroupName}")) + { + PartnerConfiguration partnerConfiguration = this.Client.UpdatePartnerConfiguration( + resourceGroupName, + this.MaxExpirationTimeInDays, + tagDictionary); + + PSPartnerConfiguration psPartnerConfiguration = new PSPartnerConfiguration(partnerConfiguration); + this.WriteObject(psPartnerConfiguration); + } + } + } +} diff --git a/src/EventGrid/EventGrid/PartnerNamespace/GetAzureEventGridPartnerNamespace.cs b/src/EventGrid/EventGrid/PartnerNamespace/GetAzureEventGridPartnerNamespace.cs new file mode 100644 index 000000000000..e8140fbbed08 --- /dev/null +++ b/src/EventGrid/EventGrid/PartnerNamespace/GetAzureEventGridPartnerNamespace.cs @@ -0,0 +1,164 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections.Generic; +using System.Text; +using System.Management.Automation; +using Microsoft.Azure.Commands.EventGrid.Models; +using Microsoft.Azure.Management.EventGrid.Models; +using Microsoft.Azure.Commands.EventGrid.Utilities; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + +namespace Microsoft.Azure.Commands.EventGrid +{ + /// + /// 'Get-AzureEventGridPartnerNamespace' Cmdlet gives the details of a / List of EventGrid partner registration(s) + /// If PartnerNamespace name provided, a single PartnerNamespace details will be returned + /// If PartnerNamespace name not provided, list of PartnerNamespaces will be returned + /// + + [Cmdlet( + "Get", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventGridPartnerNamespace", + DefaultParameterSetName = PartnerNamespaceListBySubscriptionParameterSet), + OutputType(typeof(PSPartnerNamespaceListInstance), typeof(PSPartnerNamespace))] + + public class GetAzureEventGridPartnerNamespace : AzureEventGridCmdletBase + { + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = ResourceGroupNameParameterSet)] + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = PartnerNamespaceNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + [Alias(AliasResourceGroup)] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.PartnerNamespaceNameHelp, + ParameterSetName = PartnerNamespaceNameParameterSet)] + [ResourceNameCompleter("Microsoft.EventGrid/partnerNamespaces", nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + [Alias("PartnerNamespaceName")] + public string Name { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.ODataQueryHelp, + ParameterSetName = PartnerNamespaceListBySubscriptionParameterSet)] + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = ResourceGroupNameParameterSet)] + [ValidateNotNullOrEmpty] + public string ODataQuery { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.TopHelp, + ParameterSetName = PartnerNamespaceListBySubscriptionParameterSet)] + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = ResourceGroupNameParameterSet)] + [ValidateRange(1, 100)] + public int? Top { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.NextLinkHelp, + ParameterSetName = NextLinkParameterSet)] + [ValidateNotNullOrEmpty] + public string NextLink { get; set; } + + public override void ExecuteCmdlet() + { + string resourceGroupName = string.Empty; + IEnumerable partnerNamespacesList; + string newNextLink = null; + string partnerNamespaceName = null; + int? providedTop = null; + + if (MyInvocation.BoundParameters.ContainsKey(nameof(this.Top))) + { + providedTop = this.Top; + } + + if (!string.IsNullOrEmpty(this.ResourceGroupName)) + { + resourceGroupName = this.ResourceGroupName; + } + + if (!string.IsNullOrEmpty(this.Name)) + { + partnerNamespaceName = this.Name; + } + + if (!string.IsNullOrEmpty(this.NextLink)) + { + // Get next page of partner namespaces + Uri uri = new Uri(this.NextLink); + string path = uri.AbsolutePath; + + if (path.IndexOf("/resourceGroups/", StringComparison.OrdinalIgnoreCase) != -1) + { + (partnerNamespacesList, newNextLink) = this.Client.ListPartnerNamespaceByResourceGroupNext(this.NextLink); + } + else + { + (partnerNamespacesList, newNextLink) = this.Client.ListPartnerNamespaceBySubscriptionNext(this.NextLink); + } + + PSPartnerNamespaceListPagedInstance psPartnerNamespaceListPagedInstance = new PSPartnerNamespaceListPagedInstance(partnerNamespacesList, newNextLink); + this.WriteObject(psPartnerNamespaceListPagedInstance, true); + } + else if (!string.IsNullOrEmpty(resourceGroupName) && !string.IsNullOrEmpty(partnerNamespaceName)) + { + // Get details of a partner namespace + PartnerNamespace partnerNamespace = this.Client.GetPartnerNamespace(resourceGroupName, partnerNamespaceName); + PSPartnerNamespace psPartnerConfigutation = new PSPartnerNamespace(partnerNamespace); + this.WriteObject(psPartnerConfigutation); + } + else if (!string.IsNullOrEmpty(resourceGroupName) && string.IsNullOrEmpty(partnerNamespaceName)) + { + // List partner namespaces at resource group scope + (partnerNamespacesList, newNextLink) = this.Client.ListPartnerNamespaceByResourceGroup(resourceGroupName, this.ODataQuery, providedTop); + PSPartnerNamespaceListPagedInstance psPartnerNamespaceListPagedInstance = new PSPartnerNamespaceListPagedInstance(partnerNamespacesList, newNextLink); + this.WriteObject(psPartnerNamespaceListPagedInstance, true); + } + else if (string.IsNullOrEmpty(resourceGroupName)) + { + // List all partner namespaces in the current subscription + (partnerNamespacesList, newNextLink) = this.Client.ListPartnerNamespaceBySubscription(this.ODataQuery, providedTop); + PSPartnerNamespaceListPagedInstance psPartnerNamespaceListPagedInstance = new PSPartnerNamespaceListPagedInstance(partnerNamespacesList, newNextLink); + this.WriteObject(psPartnerNamespaceListPagedInstance, true); + } + } + } + +} \ No newline at end of file diff --git a/src/EventGrid/EventGrid/PartnerNamespace/NewAzureEventGridPartnerNamespace.cs b/src/EventGrid/EventGrid/PartnerNamespace/NewAzureEventGridPartnerNamespace.cs new file mode 100644 index 000000000000..24f1284bfd08 --- /dev/null +++ b/src/EventGrid/EventGrid/PartnerNamespace/NewAzureEventGridPartnerNamespace.cs @@ -0,0 +1,156 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.EventGrid.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.Tags; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.EventGrid.Models; +using Microsoft.Azure.Commands.EventGrid.Utilities; +using EventGridModels = Microsoft.Azure.Management.EventGrid.Models; +using System; + +namespace Microsoft.Azure.Commands.EventGrid +{ + [Cmdlet( + VerbsCommon.New, + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventGridPartnerNamespace", + SupportsShouldProcess = true, + DefaultParameterSetName = PartnerNamespaceNameParameterSet), + OutputType(typeof(PSPartnerNamespace))] + + public class NewAzureEventGridPartnerNamespace : AzureEventGridCmdletBase + { + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = PartnerNamespaceNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + [Alias(AliasResourceGroup)] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 1, + HelpMessage = EventGridConstants.PartnerNamespaceNameHelp, + ParameterSetName = PartnerNamespaceNameParameterSet)] + [ResourceNameCompleter("Microsoft.EventGrid/partnerNamespaces", nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + [Alias("PartnerNamespaceName")] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 2, + HelpMessage = EventGridConstants.PartnerNamespaceLocationHelp, + ParameterSetName = PartnerNamespaceNameParameterSet)] + [LocationCompleter("Microsoft.EventGrid/partnerNamespaces")] + [ValidateNotNullOrEmpty] + public string Location { get; set; } + + /// + /// Hashtable which represents resource Tags. + /// + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.TagsHelp, + ParameterSetName = PartnerNamespaceNameParameterSet)] + public Hashtable Tag { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.PrivateEndpointConnectionsHelp, + ParameterSetName = PartnerNamespaceNameParameterSet)] + public PSPrivateEndpointConnection[] PrivateEndpointConnection { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.PSInboundIpRuleHelp, + ParameterSetName = PartnerNamespaceNameParameterSet)] + public PSInboundIpRule[] InboundIpRule { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.PartnerRegistrationFullyQualifiedIdHelp, + ParameterSetName = PartnerNamespaceNameParameterSet)] + public string PartnerRegistrationFullyQualifiedId { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.PartnerNamespaceEndpointHelp, + ParameterSetName = PartnerNamespaceNameParameterSet)] + public string Endpoint { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.PublicNetworkAccessHelp, + ParameterSetName = PartnerNamespaceNameParameterSet)] + public string PublicNetworkAccess { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.DisableLocalAuthHelp, + ParameterSetName = PartnerNamespaceNameParameterSet)] + public bool? DisableLocalAuth { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.PartnerTopicRoutingModeHelp, + ParameterSetName = PartnerNamespaceNameParameterSet)] + [ValidateSet("SourceEventAttribute", "ChannelNameHeader", IgnoreCase = true)] + public string PartnerTopicRoutingMode { get; set; } + + public override void ExecuteCmdlet() + { + // Create a new Event Grid Partner Namespace + Dictionary tagDictionary = TagsConversionHelper.CreateTagDictionary(this.Tag, true); + List privateEndpointConnectionsList = this.Client.CreatePrivateEndpointConnectionList(this.PrivateEndpointConnection); + List inboundIpRulesList = this.Client.CreateInboundIpRuleList(this.InboundIpRule); + + if (this.ShouldProcess(this.ResourceGroupName, $"Create a new EventGrid partner namespace {this.Name} in Resource Group {this.ResourceGroupName}")) + { + PartnerNamespace partnerNamespace = this.Client.CreatePartnerNamespace( + this.ResourceGroupName, + this.Name, + this.Location, + tagDictionary, + privateEndpointConnectionsList, + inboundIpRulesList, + this.PartnerRegistrationFullyQualifiedId, + this.Endpoint, + this.PublicNetworkAccess, + this.DisableLocalAuth, + this.PartnerTopicRoutingMode); + + PSPartnerNamespace psPartnerNamespace = new PSPartnerNamespace(partnerNamespace); + this.WriteObject(psPartnerNamespace); + } + } + } +} diff --git a/src/EventGrid/EventGrid/PartnerNamespace/RemoveAzureEventGridPartnerNamespace.cs b/src/EventGrid/EventGrid/PartnerNamespace/RemoveAzureEventGridPartnerNamespace.cs new file mode 100644 index 000000000000..cb2f89225cda --- /dev/null +++ b/src/EventGrid/EventGrid/PartnerNamespace/RemoveAzureEventGridPartnerNamespace.cs @@ -0,0 +1,103 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.EventGrid.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.Tags; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.EventGrid.Models; +using Microsoft.Azure.Commands.EventGrid.Utilities; +using EventGridModels = Microsoft.Azure.Management.EventGrid.Models; + +namespace Microsoft.Azure.Commands.EventGrid +{ + [Cmdlet( + VerbsCommon.Remove, + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventGridPartnerNamespace", + SupportsShouldProcess = true, + DefaultParameterSetName = PartnerNamespaceNameParameterSet), + OutputType(typeof(bool))] + + public class RemoveAzureEventGridPartnerNamespace : AzureEventGridCmdletBase + { + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = PartnerNamespaceNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + [Alias(AliasResourceGroup)] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 1, + HelpMessage = EventGridConstants.PartnerNamespaceNameHelp, + ParameterSetName = PartnerNamespaceNameParameterSet)] + [ResourceNameCompleter("Microsoft.EventGrid/partnerNamespaces", nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + [Alias("PartnerNamespaceName")] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.PartnerNamespaceInputObjectHelp, + ParameterSetName = PartnerNamespaceInputObjectParameterSet)] + public PSPartnerNamespace InputObject { get; set; } + + /// + /// If present, do not ask for confirmation + /// + [Parameter(Mandatory = false, + HelpMessage = EventGridConstants.ForceHelp)] + public SwitchParameter Force { get; set; } + + [Parameter(Mandatory = false)] + public SwitchParameter PassThru { get; set; } + + public override void ExecuteCmdlet() + { + string resourceGroupName = string.Empty; + string partnerNamespaceName = string.Empty; + + if (this.InputObject != null) + { + resourceGroupName = this.InputObject.ResourceGroupName; + partnerNamespaceName = this.InputObject.PartnerNamespaceName; + } + else + { + resourceGroupName = this.ResourceGroupName; + partnerNamespaceName = this.Name; + } + + if (this.ShouldProcess(partnerNamespaceName, $"Remove EventGrid partner namespace {partnerNamespaceName} in Resource Group {resourceGroupName}")) + { + this.Client.DeletePartnerNamespace(resourceGroupName, partnerNamespaceName); + + if (this.PassThru) + { + this.WriteObject(true); + } + } + } + } +} diff --git a/src/EventGrid/EventGrid/PartnerNamespace/UpdateAzureEventGridPartnerNamespace.cs b/src/EventGrid/EventGrid/PartnerNamespace/UpdateAzureEventGridPartnerNamespace.cs new file mode 100644 index 000000000000..4da397ce6274 --- /dev/null +++ b/src/EventGrid/EventGrid/PartnerNamespace/UpdateAzureEventGridPartnerNamespace.cs @@ -0,0 +1,153 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.EventGrid.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.Tags; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.EventGrid.Models; +using Microsoft.Azure.Commands.EventGrid.Utilities; +using EventGridModels = Microsoft.Azure.Management.EventGrid.Models; +using System; + +namespace Microsoft.Azure.Commands.EventGrid +{ + [Cmdlet( + "Update", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventGridPartnerNamespace", + SupportsShouldProcess = true, + DefaultParameterSetName = PartnerNamespaceNameParameterSet), + OutputType(typeof(PSPartnerNamespace))] + + public class UpdateAzureEventGridPartnerNamespace : AzureEventGridCmdletBase + { + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = PartnerNamespaceNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + [Alias(AliasResourceGroup)] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 1, + HelpMessage = EventGridConstants.PartnerNamespaceNameHelp, + ParameterSetName = PartnerNamespaceNameParameterSet)] + [ResourceNameCompleter("Microsoft.EventGrid/partnerNamespaces", nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + [Alias("PartnerNamespaceName")] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.PartnerNamespaceInputObjectHelp, + ParameterSetName = PartnerNamespaceInputObjectParameterSet)] + public PSPartnerNamespace InputObject { get; set; } + + /// + /// Hashtable which represents resource Tags. + /// + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.TagsHelp, + ParameterSetName = PartnerNamespaceNameParameterSet)] + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.TagsHelp, + ParameterSetName = PartnerNamespaceInputObjectParameterSet)] + public Hashtable Tag { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.PSInboundIpRuleHelp, + ParameterSetName = PartnerNamespaceNameParameterSet)] + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.PSInboundIpRuleHelp, + ParameterSetName = PartnerNamespaceInputObjectParameterSet)] + public PSInboundIpRule[] InboundIpRule { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.PublicNetworkAccessHelp, + ParameterSetName = PartnerNamespaceNameParameterSet)] + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.PublicNetworkAccessHelp, + ParameterSetName = PartnerNamespaceInputObjectParameterSet)] + public string PublicNetworkAccess { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.DisableLocalAuthHelp, + ParameterSetName = PartnerNamespaceNameParameterSet)] + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.DisableLocalAuthHelp, + ParameterSetName = PartnerNamespaceInputObjectParameterSet)] + public bool? DisableLocalAuth { get; set; } + + public override void ExecuteCmdlet() + { + // Update an Event Grid Partner Namespace + Dictionary tagDictionary = TagsConversionHelper.CreateTagDictionary(this.Tag, true); + List inboundIpRulesList = this.Client.CreateInboundIpRuleList(this.InboundIpRule); + string resourceGroupName = string.Empty; + string partnerNamespaceName = string.Empty; + + if (this.InputObject != null) + { + resourceGroupName = this.InputObject.ResourceGroupName; + partnerNamespaceName = this.InputObject.PartnerNamespaceName; + } + else + { + resourceGroupName = this.ResourceGroupName; + partnerNamespaceName = this.Name; + } + + if (this.ShouldProcess(partnerNamespaceName, $"Update EventGrid partner namespace {partnerNamespaceName} in Resource Group {resourceGroupName}")) + { + PartnerNamespace partnerNamespace = this.Client.UpdatePartnerNamespace( + resourceGroupName, + partnerNamespaceName, + tagDictionary, + this.PublicNetworkAccess, + inboundIpRulesList, + this.DisableLocalAuth); + + PSPartnerNamespace psPartnerNamespace = new PSPartnerNamespace(partnerNamespace); + this.WriteObject(psPartnerNamespace); + } + } + } +} + diff --git a/src/EventGrid/EventGrid/PartnerNamespaceKeys/GetAzureEventGridPartnerNamespaceKey.cs b/src/EventGrid/EventGrid/PartnerNamespaceKeys/GetAzureEventGridPartnerNamespaceKey.cs new file mode 100644 index 000000000000..fb7834229f1c --- /dev/null +++ b/src/EventGrid/EventGrid/PartnerNamespaceKeys/GetAzureEventGridPartnerNamespaceKey.cs @@ -0,0 +1,87 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections.Generic; +using System.Text; +using System.Management.Automation; +using Microsoft.Azure.Commands.EventGrid.Models; +using Microsoft.Azure.Management.EventGrid.Models; +using Microsoft.Azure.Commands.EventGrid.Utilities; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + +namespace Microsoft.Azure.Commands.EventGrid +{ + /// + /// 'Get-AzureEventGridPartnerNamespace' Cmdlet gives the details of a / List of EventGrid partner registration(s) + /// If PartnerNamespace name provided, a single PartnerNamespace details will be returned + /// If PartnerNamespace name not provided, list of PartnerNamespaces will be returned + /// + + [Cmdlet( + "Get", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventGridPartnerNamespaceKey", + DefaultParameterSetName = PartnerNamespaceNameParameterSet), + OutputType(typeof(PSPartnerNamespaceListInstance), typeof(PSPartnerNamespace))] + + public class GetAzureEventGridPartnerNamespaceKey : AzureEventGridCmdletBase + { + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = PartnerNamespaceNameParameterSet)] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.PartnerNamespaceNameHelp, + ParameterSetName = PartnerNamespaceNameParameterSet)] + [ResourceNameCompleter("Microsoft.EventGrid/partnerNamespaces", nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + public string PartnerNamespaceName { get; set; } + + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.PartnerNamespaceInputObjectHelp, + ParameterSetName = PartnerNamespaceInputObjectParameterSet)] + public PSPartnerNamespace InputObject { get; set; } + + public override void ExecuteCmdlet() + { + string resourceGroupName = string.Empty; + string partnerNamespaceName = string.Empty; + + if (this.InputObject != null) + { + resourceGroupName = this.InputObject.ResourceGroupName; + partnerNamespaceName = this.InputObject.PartnerNamespaceName; + } + else + { + resourceGroupName = this.ResourceGroupName; + partnerNamespaceName = this.PartnerNamespaceName; + } + + // Get details of a partner namespace shared access key + PartnerNamespaceSharedAccessKeys partnerNamespaceSharedAccessKeys = this.Client.ListPartnerNamespaceKeys(resourceGroupName, partnerNamespaceName); + PSPartnerNamespaceSharedAccessKeys psPartnerNamespaceSharedAccessKeys = new PSPartnerNamespaceSharedAccessKeys(partnerNamespaceSharedAccessKeys); + this.WriteObject(psPartnerNamespaceSharedAccessKeys); + } + } + +} \ No newline at end of file diff --git a/src/EventGrid/EventGrid/PartnerNamespaceKeys/NewAzureEventGridPartnerNamespaceKey.cs b/src/EventGrid/EventGrid/PartnerNamespaceKeys/NewAzureEventGridPartnerNamespaceKey.cs new file mode 100644 index 000000000000..ca5b57ced839 --- /dev/null +++ b/src/EventGrid/EventGrid/PartnerNamespaceKeys/NewAzureEventGridPartnerNamespaceKey.cs @@ -0,0 +1,105 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.EventGrid.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.Tags; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.EventGrid.Models; +using Microsoft.Azure.Commands.EventGrid.Utilities; +using EventGridModels = Microsoft.Azure.Management.EventGrid.Models; +using System; + +namespace Microsoft.Azure.Commands.EventGrid +{ + [Cmdlet( + VerbsCommon.New, + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventGridPartnerNamespaceKey", + SupportsShouldProcess = true, + DefaultParameterSetName = PartnerNamespaceNameParameterSet), + OutputType(typeof(PSPartnerNamespace))] + + public class NewAzureEventGridPartnerNamespaceKey : AzureEventGridCmdletBase + { + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = PartnerNamespaceNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + [Alias(AliasResourceGroup)] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 1, + HelpMessage = EventGridConstants.PartnerNamespaceNameHelp, + ParameterSetName = PartnerNamespaceNameParameterSet)] + [ResourceNameCompleter("Microsoft.EventGrid/partnerNamespaces", nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + public string PartnerNamespaceName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 2, + HelpMessage = EventGridConstants.PartnerNamespaceKeyNameHelp, + ParameterSetName = PartnerNamespaceNameParameterSet)] + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.PartnerNamespaceKeyNameHelp, + ParameterSetName = PartnerNamespaceInputObjectParameterSet)] + [Alias("KeyName")] + [ValidateSet("key1", "key2", IgnoreCase = true)] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.PartnerNamespaceInputObjectHelp, + ParameterSetName = PartnerNamespaceInputObjectParameterSet)] + public PSPartnerNamespace InputObject { get; set; } + + public override void ExecuteCmdlet() + { + string resourceGroupName = string.Empty; + string partnerNamespaceName = string.Empty; + + if (this.InputObject != null) + { + resourceGroupName = this.InputObject.ResourceGroupName; + partnerNamespaceName = this.InputObject.PartnerNamespaceName; + } + else + { + resourceGroupName = this.ResourceGroupName; + partnerNamespaceName = this.PartnerNamespaceName; + } + + if (this.ShouldProcess(this.Name, $"Regenerate key {this.Name} for EventGrid partner namespace {partnerNamespaceName} in Resource Group {resourceGroupName}")) + { + PartnerNamespaceSharedAccessKeys partnerNamespaceSharedAccessKeys = this.Client.RegeneratePartnerNamespaceKey(resourceGroupName, partnerNamespaceName, this.Name); + PSPartnerNamespaceSharedAccessKeys psPartnerNamespaceSharedAccessKeys = new PSPartnerNamespaceSharedAccessKeys(partnerNamespaceSharedAccessKeys); + this.WriteObject(psPartnerNamespaceSharedAccessKeys); + } + } + } +} diff --git a/src/EventGrid/EventGrid/PartnerRegistration/GetAzureEventGridPartnerRegistration.cs b/src/EventGrid/EventGrid/PartnerRegistration/GetAzureEventGridPartnerRegistration.cs new file mode 100644 index 000000000000..59df9706e5fe --- /dev/null +++ b/src/EventGrid/EventGrid/PartnerRegistration/GetAzureEventGridPartnerRegistration.cs @@ -0,0 +1,154 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections.Generic; +using System.Text; +using System.Management.Automation; +using Microsoft.Azure.Commands.EventGrid.Models; +using Microsoft.Azure.Management.EventGrid.Models; +using Microsoft.Azure.Commands.EventGrid.Utilities; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + +namespace Microsoft.Azure.Commands.EventGrid +{ + /// + /// 'Get-AzureEventGridPartnerRegistration' Cmdlet gives the details of a / List of EventGrid partner registration(s) + /// If PartnerRegistration name provided, a single PartnerRegistration details will be returned + /// If PartnerRegistration name not provided, list of PartnerRegistrations will be returned + /// + + [Cmdlet( + "Get", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventGridPartnerRegistration", + DefaultParameterSetName = ResourceGroupNameParameterSet), + OutputType(typeof(PSPartnerRegistrationListInstance), typeof(PSPartnerRegistration))] + + public class GetAzureEventGridPartnerRegistration : AzureEventGridCmdletBase + { + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = PartnerRegistrationNameParameterSet)] + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = ResourceGroupNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + [Alias(AliasResourceGroup)] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.PartnerRegistrationNameHelp, + ParameterSetName = PartnerRegistrationNameParameterSet)] + [ResourceNameCompleter("Microsoft.EventGrid/partnerRegistrations", nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + [Alias("PartnerRegistrationName")] + public string Name { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.ODataQueryHelp, + ParameterSetName = ResourceGroupNameParameterSet)] + [ValidateNotNullOrEmpty] + public string ODataQuery { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.TopHelp, + ParameterSetName = ResourceGroupNameParameterSet)] + [ValidateRange(1, 100)] + public int? Top { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.NextLinkHelp, + ParameterSetName = NextLinkParameterSet)] + [ValidateNotNullOrEmpty] + public string NextLink { get; set; } + + public override void ExecuteCmdlet() + { + string resourceGroupName = string.Empty; + IEnumerable partnerRegistrationsList; + string newNextLink = null; + string partnerRegistrationName = null; + int? providedTop = null; + + if (MyInvocation.BoundParameters.ContainsKey(nameof(this.Top))) + { + providedTop = this.Top; + } + + if (!string.IsNullOrEmpty(this.ResourceGroupName)) + { + resourceGroupName = this.ResourceGroupName; + } + + if (!string.IsNullOrEmpty(this.Name)) + { + partnerRegistrationName = this.Name; + } + + if (!string.IsNullOrEmpty(this.NextLink)) + { + // Get next page of partner registrations + Uri uri = new Uri(this.NextLink); + string path = uri.AbsolutePath; + + if (path.IndexOf("/resourceGroups/", StringComparison.OrdinalIgnoreCase) != -1) + { + (partnerRegistrationsList, newNextLink) = this.Client.ListPartnerRegistrationsByResourceGroupNext(this.NextLink); + } + else + { + (partnerRegistrationsList, newNextLink) = this.Client.ListPartnerRegistrationsBySubscriptionNext(this.NextLink); + } + + PSPartnerRegistrationListPagedInstance psPartnerRegistrationListPagedInstance = new PSPartnerRegistrationListPagedInstance(partnerRegistrationsList, newNextLink); + this.WriteObject(psPartnerRegistrationListPagedInstance, true); + } + else if (!string.IsNullOrEmpty(resourceGroupName) && !string.IsNullOrEmpty(partnerRegistrationName)) + { + // Get details of a partner registration + PartnerRegistration partnerRegistration = this.Client.GetPartnerRegistration(resourceGroupName, partnerRegistrationName); + PSPartnerRegistration psPartnerConfigutation = new PSPartnerRegistration(partnerRegistration); + this.WriteObject(psPartnerConfigutation); + } + else if (!string.IsNullOrEmpty(resourceGroupName) && string.IsNullOrEmpty(partnerRegistrationName)) + { + // List partner registers at resource group scope + (partnerRegistrationsList, newNextLink) = this.Client.ListPartnerRegistrationsByResourceGroup(resourceGroupName, this.ODataQuery, providedTop); + PSPartnerRegistrationListPagedInstance psPartnerRegistrationListPagedInstance = new PSPartnerRegistrationListPagedInstance(partnerRegistrationsList, newNextLink); + this.WriteObject(psPartnerRegistrationListPagedInstance, true); + } + else if (string.IsNullOrEmpty(resourceGroupName)) + { + // List all partner registrations in the current subscription + (partnerRegistrationsList, newNextLink) = this.Client.ListPartnerRegistrationsBySubscription(this.ODataQuery, providedTop); + PSPartnerRegistrationListPagedInstance psPartnerRegistrationListPagedInstance = new PSPartnerRegistrationListPagedInstance(partnerRegistrationsList, newNextLink); + this.WriteObject(psPartnerRegistrationListPagedInstance, true); + } + } + } + +} \ No newline at end of file diff --git a/src/EventGrid/EventGrid/PartnerRegistration/NewAzureEventGridPartnerRegistration.cs b/src/EventGrid/EventGrid/PartnerRegistration/NewAzureEventGridPartnerRegistration.cs new file mode 100644 index 000000000000..ee12a074462b --- /dev/null +++ b/src/EventGrid/EventGrid/PartnerRegistration/NewAzureEventGridPartnerRegistration.cs @@ -0,0 +1,86 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.EventGrid.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.Tags; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.EventGrid.Models; +using Microsoft.Azure.Commands.EventGrid.Utilities; +using EventGridModels = Microsoft.Azure.Management.EventGrid.Models; +using System; + +namespace Microsoft.Azure.Commands.EventGrid +{ + [Cmdlet( + VerbsCommon.New, + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventGridPartnerRegistration", + SupportsShouldProcess = true, + DefaultParameterSetName = PartnerRegistrationNameParameterSet), + OutputType(typeof(PSPartnerRegistration))] + + public class NewAzureEventGridPartnerRegistration : AzureEventGridCmdletBase + { + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = PartnerRegistrationNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + [Alias(AliasResourceGroup)] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 1, + HelpMessage = EventGridConstants.PartnerRegistrationNameHelp, + ParameterSetName = PartnerRegistrationNameParameterSet)] + [ResourceNameCompleter("Microsoft.EventGrid/partnerRegistrations", nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + [Alias("PartnerRegistrationName")] + public string Name { get; set; } + + /// + /// Hashtable which represents resource Tags. + /// + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.TagsHelp, + ParameterSetName = PartnerRegistrationNameParameterSet)] + public Hashtable Tag { get; set; } + + public override void ExecuteCmdlet() + { + // Create a new Event Grid Partner Registration + Dictionary tagDictionary = TagsConversionHelper.CreateTagDictionary(this.Tag, true); + + if (this.ShouldProcess(this.ResourceGroupName, $"Create a new EventGrid partner registration {this.Name} in Resource Group {this.ResourceGroupName}")) + { + PartnerRegistration partnerRegistration = this.Client.CreatePartnerRegistration( + this.ResourceGroupName, + this.Name, + tagDictionary); + + PSPartnerRegistration psPartnerRegistration = new PSPartnerRegistration(partnerRegistration); + this.WriteObject(psPartnerRegistration); + } + } + } +} diff --git a/src/EventGrid/EventGrid/PartnerRegistration/RemoveAzureEventGridPartnerRegistration.cs b/src/EventGrid/EventGrid/PartnerRegistration/RemoveAzureEventGridPartnerRegistration.cs new file mode 100644 index 000000000000..4d863ea1518a --- /dev/null +++ b/src/EventGrid/EventGrid/PartnerRegistration/RemoveAzureEventGridPartnerRegistration.cs @@ -0,0 +1,103 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.EventGrid.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.Tags; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.EventGrid.Models; +using Microsoft.Azure.Commands.EventGrid.Utilities; +using EventGridModels = Microsoft.Azure.Management.EventGrid.Models; + +namespace Microsoft.Azure.Commands.EventGrid +{ + [Cmdlet( + VerbsCommon.Remove, + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventGridPartnerRegistration", + SupportsShouldProcess = true, + DefaultParameterSetName = PartnerRegistrationNameParameterSet), + OutputType(typeof(bool))] + + public class RemoveAzureEventGridPartnerRegistration : AzureEventGridCmdletBase + { + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = PartnerRegistrationNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + [Alias(AliasResourceGroup)] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 1, + HelpMessage = EventGridConstants.PartnerRegistrationNameHelp, + ParameterSetName = PartnerRegistrationNameParameterSet)] + [ResourceNameCompleter("Microsoft.EventGrid/partnerRegistrations", nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + [Alias("PartnerRegistrationName")] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.PartnerRegistrationInputObjectHelp, + ParameterSetName = PartnerRegistrationInputObjectParameterSet)] + public PSPartnerRegistration InputObject { get; set; } + + /// + /// If present, do not ask for confirmation + /// + [Parameter(Mandatory = false, + HelpMessage = EventGridConstants.ForceHelp)] + public SwitchParameter Force { get; set; } + + [Parameter(Mandatory = false)] + public SwitchParameter PassThru { get; set; } + + public override void ExecuteCmdlet() + { + string resourceGroupName = string.Empty; + string partnerRegistrationName = string.Empty; + + if (this.InputObject != null) + { + resourceGroupName = this.InputObject.ResourceGroupName; + partnerRegistrationName = this.InputObject.PartnerRegistrationName; + } + else + { + resourceGroupName = this.ResourceGroupName; + partnerRegistrationName = this.Name; + } + + if (this.ShouldProcess(partnerRegistrationName, $"Remove EventGrid partner registration {partnerRegistrationName} in Resource Group {resourceGroupName}")) + { + this.Client.DeletePartnerRegistration(resourceGroupName, partnerRegistrationName); + + if (this.PassThru) + { + this.WriteObject(true); + } + } + } + } +} diff --git a/src/EventGrid/EventGrid/PartnerRegistration/UpdateAzureEventGridPartnerRegistration.cs b/src/EventGrid/EventGrid/PartnerRegistration/UpdateAzureEventGridPartnerRegistration.cs new file mode 100644 index 000000000000..934811c4757f --- /dev/null +++ b/src/EventGrid/EventGrid/PartnerRegistration/UpdateAzureEventGridPartnerRegistration.cs @@ -0,0 +1,111 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.EventGrid.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.Tags; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.EventGrid.Models; +using Microsoft.Azure.Commands.EventGrid.Utilities; +using EventGridModels = Microsoft.Azure.Management.EventGrid.Models; + +namespace Microsoft.Azure.Commands.EventGrid +{ + [Cmdlet( + "Update", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventGridPartnerRegistration", + SupportsShouldProcess = true, + DefaultParameterSetName = PartnerRegistrationNameParameterSet), + OutputType(typeof(PSPartnerRegistration))] + + public class UpdateAzureEventGridPartnerRegistration : AzureEventGridCmdletBase + { + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = PartnerRegistrationNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + [Alias(AliasResourceGroup)] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.PartnerRegistrationInputObjectHelp, + ParameterSetName = PartnerRegistrationInputObjectParameterSet)] + public PSPartnerRegistration InputObject { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 1, + HelpMessage = EventGridConstants.PartnerRegistrationNameHelp, + ParameterSetName = PartnerRegistrationNameParameterSet)] + [ResourceNameCompleter("Microsoft.EventGrid/partnerRegistrations", nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + [Alias("PartnerRegistrationName")] + public string Name { get; set; } + + /// + /// Hashtable which represents resource Tags. + /// + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.TagsHelp, + ParameterSetName = ResourceGroupNameParameterSet)] + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.TagsHelp, + ParameterSetName = PartnerRegistrationInputObjectParameterSet)] + public Hashtable Tag { get; set; } + + public override void ExecuteCmdlet() + { + // Update an Event Grid Partner Registration + Dictionary tagDictionary = TagsConversionHelper.CreateTagDictionary(this.Tag, true); + string resourceGroupName = string.Empty; + string partnerRegistrationName = string.Empty; + + if (this.InputObject != null) + { + resourceGroupName = this.InputObject.ResourceGroupName; + partnerRegistrationName = this.InputObject.PartnerRegistrationName; + } + else + { + resourceGroupName = this.ResourceGroupName; + partnerRegistrationName = this.Name; + } + + if (this.ShouldProcess(partnerRegistrationName, $"Update EventGrid partner registration {partnerRegistrationName} in Resource Group {resourceGroupName}")) + { + PartnerRegistration partnerRegistration = this.Client.UpdatePartnerRegistration( + resourceGroupName, + partnerRegistrationName, + tagDictionary); + + PSPartnerRegistration psPartnerRegistration = new PSPartnerRegistration(partnerRegistration); + this.WriteObject(psPartnerRegistration); + } + } + } +} diff --git a/src/EventGrid/EventGrid/PartnerTopic/EnableAzureEventGridPartnerTopic.cs b/src/EventGrid/EventGrid/PartnerTopic/EnableAzureEventGridPartnerTopic.cs new file mode 100644 index 000000000000..e13774a6ffa3 --- /dev/null +++ b/src/EventGrid/EventGrid/PartnerTopic/EnableAzureEventGridPartnerTopic.cs @@ -0,0 +1,90 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.EventGrid.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.Tags; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.EventGrid.Models; +using Microsoft.Azure.Commands.EventGrid.Utilities; +using EventGridModels = Microsoft.Azure.Management.EventGrid.Models; + +namespace Microsoft.Azure.Commands.EventGrid +{ + [Cmdlet( + "Enable", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventGridPartnerTopic", + SupportsShouldProcess = true, + DefaultParameterSetName = PartnerTopicNameParameterSet), + OutputType(typeof(PSPartnerTopic))] + + public class EnableAzureEventGridPartnerTopic : AzureEventGridCmdletBase + { + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = PartnerTopicNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + [Alias(AliasResourceGroup)] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 1, + HelpMessage = EventGridConstants.PartnerTopicNameHelp, + ParameterSetName = PartnerTopicNameParameterSet)] + [ResourceNameCompleter("Microsoft.EventGrid/partnerTopics", nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + [Alias("PartnerTopicName")] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.PartnerTopicInputObjectHelp, + ParameterSetName = PartnerTopicInputObjectParameterSet)] + public PSPartnerTopic InputObject { get; set; } + + public override void ExecuteCmdlet() + { + string resourceGroupName = string.Empty; + string partnerTopicName = string.Empty; + + if (this.InputObject != null) + { + resourceGroupName = this.InputObject.ResourceGroupName; + partnerTopicName = this.InputObject.Name; + } + else + { + resourceGroupName = this.ResourceGroupName; + partnerTopicName = this.Name; + } + + if (this.ShouldProcess(this.ResourceGroupName, $"Enable EventGrid partner topic {partnerTopicName} in Resource Group {resourceGroupName}")) + { + PartnerTopic partnerTopic = this.Client.ActivatePartnerTopic(resourceGroupName, partnerTopicName); + PSPartnerTopic psPartnerTopic = new PSPartnerTopic(partnerTopic); + this.WriteObject(psPartnerTopic); + } + } + } +} diff --git a/src/EventGrid/EventGrid/PartnerTopic/GetAzureEventGridFullUrlForPartnerTopicEventSubscription.cs b/src/EventGrid/EventGrid/PartnerTopic/GetAzureEventGridFullUrlForPartnerTopicEventSubscription.cs new file mode 100644 index 000000000000..78f0952cc8f5 --- /dev/null +++ b/src/EventGrid/EventGrid/PartnerTopic/GetAzureEventGridFullUrlForPartnerTopicEventSubscription.cs @@ -0,0 +1,100 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections; +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.EventGrid.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.Tags; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.EventGrid.Models; +using Microsoft.Azure.Commands.EventGrid.Utilities; +using EventGridModels = Microsoft.Azure.Management.EventGrid.Models; +using Microsoft.WindowsAzure.Commands.Utilities.Common; + +namespace Microsoft.Azure.Commands.EventGrid +{ + [Cmdlet( + "Get", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventGridFullUrlForPartnerTopicEventSubscription", + DefaultParameterSetName = PartnerTopicEventSubscriptionParameterSet), + OutputType(typeof(string))] + + public class GetAzureEventGridFullUrlForPartnerTopicEventSubscription : AzureEventGridCmdletBase + { + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.EventSubscriptionNameHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter("Microsoft.EventGrid/partnerTopics/eventSubscriptions", nameof(ResourceGroupName), nameof(PartnerTopicName))] + [Alias("EventSubscriptionName")] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + [Alias(AliasResourceGroup)] + [ResourceGroupCompleter] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.PartnerTopicNameHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter("Microsoft.EventGrid/partnerTopics", nameof(ResourceGroupName))] + public string PartnerTopicName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.EventSubscriptionResourceIdHelp, + ParameterSetName = ResourceIdPartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + public override void ExecuteCmdlet() + { + string resourceGroupName = string.Empty; + string partnerTopicName = string.Empty; + string eventSubscriptionName = string.Empty; + + if (!string.IsNullOrEmpty(this.ResourceId)) + { + EventGridUtils.GetResourceGroupNameAndTopicNameAndEventSubscriptionName( + this.ResourceId, + out resourceGroupName, + out partnerTopicName, + out eventSubscriptionName); + } + else + { + resourceGroupName = this.ResourceGroupName; + partnerTopicName = this.PartnerTopicName; + eventSubscriptionName = this.Name; + } + + EventSubscriptionFullUrl eventSubscriptionFullUrl = this.Client.GetAzFullUrlForPartnerTopicEventSubscription(resourceGroupName, partnerTopicName, eventSubscriptionName); + this.WriteObject(eventSubscriptionFullUrl.EndpointUrl, true); + } + } +} diff --git a/src/EventGrid/EventGrid/PartnerTopic/GetAzureEventGridPartnerTopic.cs b/src/EventGrid/EventGrid/PartnerTopic/GetAzureEventGridPartnerTopic.cs new file mode 100644 index 000000000000..896751b74020 --- /dev/null +++ b/src/EventGrid/EventGrid/PartnerTopic/GetAzureEventGridPartnerTopic.cs @@ -0,0 +1,160 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.EventGrid.Models; +using Microsoft.Azure.Commands.EventGrid.Utilities; +using Microsoft.Azure.Management.EventGrid.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + +namespace Microsoft.Azure.Commands.EventGrid +{ + /// + /// 'Get-AzEventGridPartnerTopic' Cmdlet gives the details of a / List of EventGrid topic(s) + /// If Topic name provided, a single Topic details will be returned + /// If Topic name not provided, list of Topics will be returned + /// + + [Cmdlet( + "Get", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventGridPartnerTopic", + DefaultParameterSetName = ResourceGroupNameParameterSet), + OutputType(typeof(PSPartnerTopic), typeof(PSSytemTopicListInstance))] + + public class GetAzureRmEventGridPartnerTopic : AzureEventGridCmdletBase + { + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = PartnerTopicNameParameterSet)] + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = ResourceGroupNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + [Alias(AliasResourceGroup)] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.PartnerTopicNameHelp, + ParameterSetName = PartnerTopicNameParameterSet)] + [ResourceNameCompleter("Microsoft.EventGrid/partnerTopics", nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + [Alias("PartnerTopicName")] + public string Name { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.ODataQueryHelp, + ParameterSetName = ResourceGroupNameParameterSet)] + [ValidateNotNullOrEmpty] + public string ODataQuery { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.TopHelp, + ParameterSetName = ResourceGroupNameParameterSet)] + [ValidateRange(1, 100)] + public int? Top { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.NextLinkHelp, + ParameterSetName = NextLinkParameterSet)] + [ValidateNotNullOrEmpty] + public string NextLink { get; set; } + + public override void ExecuteCmdlet() + { + string resourceGroupName = string.Empty; + string topicName = string.Empty; + IEnumerable topicsList; + string nextLink = null; + string newNextLink = null; + int? providedTop = null; + + if (MyInvocation.BoundParameters.ContainsKey(nameof(this.Top))) + { + providedTop = this.Top; + } + + else if (!string.IsNullOrEmpty(this.Name)) + { + // If Name is provided, ResourceGroup should be non-empty as well + resourceGroupName = this.ResourceGroupName; + topicName = this.Name; + } + else if (!string.IsNullOrEmpty(this.ResourceGroupName)) + { + resourceGroupName = this.ResourceGroupName; + } + else if (!string.IsNullOrEmpty(this.NextLink)) + { + // Other parameters should be null or ignored if nextLink is specified. + nextLink = this.NextLink; + } + + if (!string.IsNullOrEmpty(nextLink)) + { + // Get Next page of topics. Get the proper next API to be called based on the nextLink. + Uri uri = new Uri(nextLink); + string path = uri.AbsolutePath; + + if (path.IndexOf("/resourceGroups/", StringComparison.OrdinalIgnoreCase) != -1) + { + (topicsList, newNextLink) = this.Client.ListPartnerTopicByResourceGroupNext(nextLink); + } + else + { + (topicsList, newNextLink) = this.Client.ListPartnerTopicBySubscriptionNext(nextLink); + } + + PSPartnerTopicListPagedInstance pSTopicListPagedInstance = new PSPartnerTopicListPagedInstance(topicsList, newNextLink); + this.WriteObject(pSTopicListPagedInstance, true); + } + else if (!string.IsNullOrEmpty(resourceGroupName) && !string.IsNullOrEmpty(topicName)) + { + // Get details of the Event Grid topic + PartnerTopic topic = this.Client.GetPartnerTopic(resourceGroupName, topicName); + PSPartnerTopic psTopic = new PSPartnerTopic(topic); + this.WriteObject(psTopic); + } + else if (!string.IsNullOrEmpty(resourceGroupName) && string.IsNullOrEmpty(topicName)) + { + // List all Event Grid topics in the given resource group + (topicsList, newNextLink) = this.Client.ListPartnerTopicByResourceGroup(resourceGroupName, this.ODataQuery, providedTop); + PSPartnerTopicListPagedInstance pSTopicListPagedInstance = new PSPartnerTopicListPagedInstance(topicsList, newNextLink); + this.WriteObject(pSTopicListPagedInstance, true); + } + else if (string.IsNullOrEmpty(resourceGroupName) && string.IsNullOrEmpty(topicName)) + { + // List all Event Grid topics in the given subscription + (topicsList, newNextLink) = this.Client.ListPartnerTopicBySubscription(this.ODataQuery, providedTop); + PSPartnerTopicListPagedInstance pSTopicListPagedInstance = new PSPartnerTopicListPagedInstance(topicsList, newNextLink); + this.WriteObject(pSTopicListPagedInstance, true); + } + } + } +} diff --git a/src/EventGrid/EventGrid/PartnerTopic/GetAzureEventGridPartnerTopicEventSubscription.cs b/src/EventGrid/EventGrid/PartnerTopic/GetAzureEventGridPartnerTopicEventSubscription.cs new file mode 100644 index 000000000000..e07f0c5f4b06 --- /dev/null +++ b/src/EventGrid/EventGrid/PartnerTopic/GetAzureEventGridPartnerTopicEventSubscription.cs @@ -0,0 +1,215 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections; +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.EventGrid.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.Tags; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.EventGrid.Models; +using Microsoft.Azure.Commands.EventGrid.Utilities; +using EventGridModels = Microsoft.Azure.Management.EventGrid.Models; +using Microsoft.WindowsAzure.Commands.Utilities.Common; + +namespace Microsoft.Azure.Commands.EventGrid +{ + [Cmdlet( + "Get", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventGridPartnerTopicEventSubscription", + DefaultParameterSetName = PartnerTopicNameParameterSet), + OutputType(typeof(PSEventSubscription), typeof(PSEventSubscriptionListInstance))] + + public class GetAzureEventGridPartnerTopicEventSubscription : AzureEventGridCmdletBase + { + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.EventSubscriptionNameHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter("Microsoft.EventGrid/partnerTopics/eventSubscriptions", nameof(ResourceGroupName), nameof(PartnerTopicName))] + [Alias("EventSubscriptionName")] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = PartnerTopicNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + [Alias(AliasResourceGroup)] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.PartnerTopicNameHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = PartnerTopicNameParameterSet)] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter("Microsoft.EventGrid/partnerTopics", nameof(ResourceGroupName))] + public string PartnerTopicName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.EventSubscriptionResourceIdHelp, + ParameterSetName = ResourceIdPartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = EventGridConstants.EventSubscriptionFullUrlInResponseHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [Parameter( + Mandatory = false, + HelpMessage = EventGridConstants.EventSubscriptionFullUrlInResponseHelp, + ParameterSetName = PartnerTopicNameParameterSet)] + [Parameter( + Mandatory = false, + HelpMessage = EventGridConstants.EventSubscriptionFullUrlInResponseHelp, + ParameterSetName = ResourceIdPartnerTopicEventSubscriptionParameterSet)] + public SwitchParameter IncludeFullEndpointUrl { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.ODataQueryHelp, + ParameterSetName = PartnerTopicNameParameterSet)] + [ValidateNotNullOrEmpty] + public string ODataQuery { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.TopHelp, + ParameterSetName = PartnerTopicNameParameterSet)] + [ValidateRange(1, 100)] + public int? Top { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.NextLinkHelp, + ParameterSetName = PartnerTopicNameParameterSet)] + [ValidateNotNullOrEmpty] + public string NextLink { get; set; } + + public override void ExecuteCmdlet() + { + string newNextLink = null; + int? providedTop = null; + bool includeFullEndpointUrl = this.IncludeFullEndpointUrl.IsPresent; + string resourceGroupName = string.Empty; + string partnerTopicName = string.Empty; + string eventSubscriptionName = string.Empty; + + if (!string.IsNullOrEmpty(this.ResourceId)) + { + EventGridUtils.GetResourceGroupNameAndTopicNameAndEventSubscriptionName( + this.ResourceId, + out resourceGroupName, + out partnerTopicName, + out eventSubscriptionName); + } + else + { + resourceGroupName = this.ResourceGroupName; + partnerTopicName = this.PartnerTopicName; + eventSubscriptionName = this.Name; + } + + if (string.IsNullOrEmpty(resourceGroupName)) + { + throw new ArgumentNullException( + resourceGroupName, + "Resource Group Name should be specified to retrieve event subscriptions for a partnerTopic"); + } + + if (string.IsNullOrEmpty(partnerTopicName)) + { + throw new ArgumentNullException( + partnerTopicName, + "PartnerTopic Name should be specified to retrieve event subscriptions for a partnerTopic"); + } + + if (MyInvocation.BoundParameters.ContainsKey(nameof(this.Top))) + { + providedTop = this.Top; + } + + if (!string.IsNullOrEmpty(eventSubscriptionName)) + { + EventSubscription eventSubscription = this.Client.GetPartnerTopicEventSubscription(resourceGroupName, partnerTopicName, eventSubscriptionName); + PSEventSubscription psEventSubscription; + + if (includeFullEndpointUrl && + eventSubscription.Destination is WebHookEventSubscriptionDestination) + { + EventSubscriptionFullUrl fullUrl = this.Client.GetAzFullUrlForPartnerTopicEventSubscription(resourceGroupName, partnerTopicName, eventSubscriptionName); + psEventSubscription = new PSEventSubscription(eventSubscription, fullUrl.EndpointUrl); + } + else + { + psEventSubscription = new PSEventSubscription(eventSubscription); + } + + this.WriteObject(psEventSubscription); + } + else + { + // EventSubscription name was not specified, we need to retrieve a list of + // event subscriptions based on the provided parameters. + IEnumerable eventSubscriptionsList = null; + + // Other parameters should be null or ignored if this.NextLink is specified. + if (!string.IsNullOrEmpty(this.NextLink)) + { + (eventSubscriptionsList, newNextLink) = this.Client.ListPartnerTopicEventSubscriptionsNext(this.NextLink); + } + else + { + (eventSubscriptionsList, newNextLink) = this.Client.ListPartnerTopicEventSubscriptions(resourceGroupName, partnerTopicName, this.ODataQuery, providedTop); + } + + this.WritePSEventSubscriptionsList(eventSubscriptionsList, includeFullEndpointUrl, newNextLink); + } + } + + void WritePSEventSubscriptionsList(IEnumerable eventSubscriptionsList, bool includeFullEndpointUrl, string nextLink) + { + if (eventSubscriptionsList == null) + { + return; + } + + PSEventSubscriptionListPagedInstance pSPartnerTopicListPagedInstance = new PSEventSubscriptionListPagedInstance(eventSubscriptionsList, this.Client, includeFullEndpointUrl, nextLink); + this.WriteObject(pSPartnerTopicListPagedInstance, true); + } + } +} diff --git a/src/EventGrid/EventGrid/PartnerTopic/GetAzureEventGridPartnerTopicEventSubscriptionDeliveryAttribute.cs b/src/EventGrid/EventGrid/PartnerTopic/GetAzureEventGridPartnerTopicEventSubscriptionDeliveryAttribute.cs new file mode 100644 index 000000000000..36e2b2a2670e --- /dev/null +++ b/src/EventGrid/EventGrid/PartnerTopic/GetAzureEventGridPartnerTopicEventSubscriptionDeliveryAttribute.cs @@ -0,0 +1,101 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections; +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.EventGrid.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.Tags; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.EventGrid.Models; +using Microsoft.Azure.Commands.EventGrid.Utilities; +using EventGridModels = Microsoft.Azure.Management.EventGrid.Models; +using Microsoft.WindowsAzure.Commands.Utilities.Common; + +namespace Microsoft.Azure.Commands.EventGrid +{ + [Cmdlet( + "Get", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventGridPartnerTopicEventSubscriptionDeliveryAttribute", + DefaultParameterSetName = PartnerTopicNameParameterSet), + OutputType(typeof(PsDeliveryAttribute))] + + public class GetAzureEventGridPartnerTopicEventSubscriptionDeliveryAttribute : AzureEventGridCmdletBase + { + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.EventSubscriptionNameHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter("Microsoft.EventGrid/partnerTopics/eventSubscriptions", nameof(ResourceGroupName), nameof(PartnerTopicName))] + [Alias("EventSubscriptionName")] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + [Alias(AliasResourceGroup)] + [ResourceGroupCompleter] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.PartnerTopicNameHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter("Microsoft.EventGrid/partnerTopics", nameof(ResourceGroupName))] + public string PartnerTopicName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.EventSubscriptionResourceIdHelp, + ParameterSetName = ResourceIdPartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + public override void ExecuteCmdlet() + { + string resourceGroupName = string.Empty; + string partnerTopicName = string.Empty; + string eventSubscriptionName = string.Empty; + + if (!string.IsNullOrEmpty(this.ResourceId)) + { + EventGridUtils.GetResourceGroupNameAndTopicNameAndEventSubscriptionName( + this.ResourceId, + out resourceGroupName, + out partnerTopicName, + out eventSubscriptionName); + } + else + { + resourceGroupName = this.ResourceGroupName; + partnerTopicName = this.PartnerTopicName; + eventSubscriptionName = this.Name; + } + + DeliveryAttributeListResult deliveryAttributeListResult = this.Client.GetAzPartnerTopicEventSubscriptionsDeliveryAttribute(resourceGroupName, partnerTopicName, eventSubscriptionName); + PsDeliveryAttribute PsDeliveryAttribute = new PsDeliveryAttribute(deliveryAttributeListResult); + this.WriteObject(PsDeliveryAttribute, true); + } + } +} diff --git a/src/EventGrid/EventGrid/PartnerTopic/NewAzureEventGridPartnerTopic.cs b/src/EventGrid/EventGrid/PartnerTopic/NewAzureEventGridPartnerTopic.cs new file mode 100644 index 000000000000..c74aa83dd27d --- /dev/null +++ b/src/EventGrid/EventGrid/PartnerTopic/NewAzureEventGridPartnerTopic.cs @@ -0,0 +1,189 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections; +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.EventGrid.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.Tags; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.EventGrid.Models; +using Microsoft.Azure.Commands.EventGrid.Utilities; +using EventGridModels = Microsoft.Azure.Management.EventGrid.Models; +using Newtonsoft.Json; + +namespace Microsoft.Azure.Commands.EventGrid +{ + [Cmdlet( + "New", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventGridPartnerTopic", + SupportsShouldProcess = true, + DefaultParameterSetName = TopicNameParameterSet), + OutputType(typeof(PSPartnerTopic))] + + public class NewAzureEventGridPartnerTopic : AzureEventGridCmdletBase + { + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = PartnerTopicNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + [Alias(AliasResourceGroup)] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.TopicNameHelp, + ParameterSetName = PartnerTopicNameParameterSet)] + [ResourceNameCompleter("Microsoft.EventGrid/partnerTopics", nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + [Alias("PartnerTopicName")] + public string Name { get; set; } + + /// + /// string which represents the source. + /// + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.SourceHelp, + ParameterSetName = PartnerTopicNameParameterSet)] + [ValidateNotNullOrEmpty] + public string Source { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.TopicLocationHelp, + ParameterSetName = PartnerTopicNameParameterSet)] + [LocationCompleter("Microsoft.EventGrid/systemTopics")] + [ValidateNotNullOrEmpty] + public string Location { get; set; } + + /// + /// string which represents the IdentityType. + /// + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.IdentityTypeHelp, + ParameterSetName = PartnerTopicNameParameterSet)] + [ValidateSet("SystemAssigned", "UserAssigned", "SystemAssigned, UserAssigned", "None", IgnoreCase = true)] + public string IdentityType { get; set; } + + /// + /// string array of identity ids for user assigned identities + /// + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.IdentityIdsHelp, + ParameterSetName = PartnerTopicNameParameterSet)] + public string[] IdentityId { get; set; } + + /// + /// Hashtable which represents resource Tags. + /// + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.TagsHelp, + ParameterSetName = PartnerTopicNameParameterSet)] + public Hashtable Tag { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.TagsHelp, + ParameterSetName = PartnerTopicNameParameterSet)] + public string PartnerTopicFriendlyDescription { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.MessageForActivationHelp, + ParameterSetName = PartnerTopicNameParameterSet)] + public string MessageForActivation { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.ExpirationTimeIfNotActivatedHelp, + ParameterSetName = PartnerTopicNameParameterSet)] + public DateTime? ExpirationTimeIfNotActivatedUtc { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.PartnerRegistrationImmutableIdHelp, + ParameterSetName = PartnerTopicNameParameterSet)] + public Guid? PartnerRegistrationImmutableId { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.EventTypeKindHelp, + ParameterSetName = PartnerTopicNameParameterSet)] + [ValidateSet("Inline", IgnoreCase = true)] + public string EventTypeKind { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.InlineEventHelp, + ParameterSetName = PartnerTopicNameParameterSet)] + [ValidateSet("Inline", IgnoreCase = true)] + public Hashtable InlineEvent { get; set; } + + public override void ExecuteCmdlet() + { + // Create a new Event Grid Partner Topic + Dictionary tagDictionary = TagsConversionHelper.CreateTagDictionary(this.Tag, true); + Dictionary userAssignedIdentities = null; + if (IdentityId != null && IdentityId.Length > 0) + { + userAssignedIdentities = new Dictionary(); + foreach (string identityId in IdentityId) + { + userAssignedIdentities.Add(identityId, new UserIdentityProperties()); + } + } + + if (this.ShouldProcess(this.Name, $"Create a new EventGrid partner topic {this.Name} in Resource Group {this.ResourceGroupName}")) + { + PartnerTopic topic = this.Client.CreatePartnerTopic( + this.ResourceGroupName, + this.Name, + this.Location, + this.Source, + this.IdentityType, + userAssignedIdentities, + tagDictionary, + this.PartnerRegistrationImmutableId, + this.ExpirationTimeIfNotActivatedUtc, + this.PartnerTopicFriendlyDescription, + this.MessageForActivation, + this.EventTypeKind, + this.InlineEvent); + + PSPartnerTopic psTopic = new PSPartnerTopic(topic); + this.WriteObject(psTopic); + } + } + } +} diff --git a/src/EventGrid/EventGrid/PartnerTopic/NewAzureEventGridPartnerTopicEventSubscription.cs b/src/EventGrid/EventGrid/PartnerTopic/NewAzureEventGridPartnerTopicEventSubscription.cs new file mode 100644 index 000000000000..73dba6268230 --- /dev/null +++ b/src/EventGrid/EventGrid/PartnerTopic/NewAzureEventGridPartnerTopicEventSubscription.cs @@ -0,0 +1,300 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections; +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.EventGrid.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.Tags; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.EventGrid.Models; +using Microsoft.Azure.Commands.EventGrid.Utilities; +using EventGridModels = Microsoft.Azure.Management.EventGrid.Models; +using Microsoft.WindowsAzure.Commands.Utilities.Common; + +namespace Microsoft.Azure.Commands.EventGrid +{ + [Cmdlet( + "New", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventGridPartnerTopicEventSubscription", + SupportsShouldProcess = true, + DefaultParameterSetName = PartnerTopicEventSubscriptionParameterSet), + OutputType(typeof(PSEventSubscription))] + + public class NewAzureEventGridPartnerTopicEventSubscription : AzureEventGridCmdletBase + { + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.EventSubscriptionNameHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + [Alias("EventSubscriptionName")] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + [Alias(AliasResourceGroup)] + [ResourceGroupCompleter] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.PartnerTopicNameHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter("Microsoft.EventGrid/partnerTopics", nameof(ResourceGroupName))] + public string PartnerTopicName { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.AzureActiveDirectoryApplicationIdOrUriHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + public string AzureActiveDirectoryApplicationIdOrUri { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.AzureActiveDirectoryTenantIdHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + public string AzureActiveDirectoryTenantId { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.DeadletterEndpointHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + public string DeadLetterEndpoint { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.DeliveryAttributeMappingHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + public string[] DeliveryAttributeMapping { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.EndpointHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + public string Endpoint { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.EndpointTypeHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + public string EndpointType { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.DeliverySchemaHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + public string DeliverySchema { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.EventTtlHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + public int EventTtl { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.ExpirationDateHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + public DateTime ExpirationDate { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.LabelsHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + public string[] Label { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.MaxDeliveryAttemptHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + public int MaxDeliveryAttempt { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.MaxEventsPerBatchHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + public int MaxEventsPerBatch { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.PreferredBatchSizeInKiloByteHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + public int PreferredBatchSizeInKiloByte { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.StorageQueueMessageTtlHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + public long StorageQueueMessageTtl { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.AdvancedFilterHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + public Hashtable[] AdvancedFilter { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.AdvancedFilteringOnArraysHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + public SwitchParameter AdvancedFilteringOnArray { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.IncludedEventTypesHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + public string[] IncludedEventType { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.SubjectBeginsWithHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + public string SubjectBeginsWith { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.SubjectEndsWithHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + public string SubjectEndsWith { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.SubjectCaseSensitiveHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + public SwitchParameter SubjectCaseSensitive { get; set; } + + + public override void ExecuteCmdlet() + { + PSEventSubscription psEventSubscription = null; + if (this.ShouldProcess(this.Name, $"Create a new Event Grid subscription {this.Name} under partnerTopic {this.PartnerTopicName}")) + { + + bool isSubjectCaseSensitive = this.SubjectCaseSensitive.IsPresent; + bool enableAdvancedFilteringOnArrays = this.AdvancedFilteringOnArray.IsPresent; + RetryPolicy retryPolicy = null; + + + if (this.IsParameterBound(c => c.MaxDeliveryAttempt) || this.IsParameterBound(c => c.EventTtl)) + { + retryPolicy = new RetryPolicy( + maxDeliveryAttempts: this.MaxDeliveryAttempt == 0 ? (int?)null : this.MaxDeliveryAttempt, + eventTimeToLiveInMinutes: this.EventTtl == 0 ? (int?)null : this.EventTtl); + } + + if (!string.Equals(this.EndpointType, EventGridConstants.Webhook, StringComparison.OrdinalIgnoreCase)) + { + if (this.IsParameterBound(c => c.MaxEventsPerBatch) || this.IsParameterBound(c => c.PreferredBatchSizeInKiloByte)) + { + throw new ArgumentException("MaxEventsPerBatch and PreferredBatchSizeInKiloByte are supported when EndpointType is webhook only."); + } + + if (this.IsParameterBound(c => c.AzureActiveDirectoryApplicationIdOrUri) || this.IsParameterBound(c => c.AzureActiveDirectoryTenantId)) + { + throw new ArgumentException("AzureActiveDirectoryApplicationIdOrUri and AzureActiveDirectoryTenantId are supported when EndpointType is webhook only."); + } + } + + if (EventGridUtils.ShouldShowEventSubscriptionWarningMessage(this.Endpoint, this.EndpointType)) + { + WriteWarning(EventGridConstants.EventSubscriptionHandshakeValidationMessage); + } + + if (this.IncludedEventType != null && this.IncludedEventType.Length == 1 && string.Equals(this.IncludedEventType[0], "All", StringComparison.OrdinalIgnoreCase)) + { + // Show Warning message for user + this.IncludedEventType = null; + WriteWarning(EventGridConstants.IncludedEventTypeDeprecationMessage); + } + + EventSubscription eventSubscription = this.Client.CreatePartnerTopicEventSubscription( + this.Name, + this.ResourceGroupName, + this.PartnerTopicName, + this.AzureActiveDirectoryApplicationIdOrUri, + this.AzureActiveDirectoryTenantId, + this.DeadLetterEndpoint, + this.DeliveryAttributeMapping, + this.Endpoint, + this.EndpointType, + this.DeliverySchema, + retryPolicy, + this.ExpirationDate, + this.Label, + this.MaxEventsPerBatch, + this.PreferredBatchSizeInKiloByte, + this.StorageQueueMessageTtl, + this.AdvancedFilter, + enableAdvancedFilteringOnArrays, + this.IncludedEventType, + this.SubjectBeginsWith, + this.SubjectEndsWith, + isSubjectCaseSensitive); + + psEventSubscription = new PSEventSubscription(eventSubscription); + + } + this.WriteObject(psEventSubscription, true); + } + } +} diff --git a/src/EventGrid/EventGrid/PartnerTopic/RemoveAzureEventGridPartnerTopic.cs b/src/EventGrid/EventGrid/PartnerTopic/RemoveAzureEventGridPartnerTopic.cs new file mode 100644 index 000000000000..5188357002df --- /dev/null +++ b/src/EventGrid/EventGrid/PartnerTopic/RemoveAzureEventGridPartnerTopic.cs @@ -0,0 +1,103 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.EventGrid.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.Tags; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.EventGrid.Models; +using Microsoft.Azure.Commands.EventGrid.Utilities; +using EventGridModels = Microsoft.Azure.Management.EventGrid.Models; + +namespace Microsoft.Azure.Commands.EventGrid +{ + [Cmdlet( + VerbsCommon.Remove, + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventGridPartnerTopic", + SupportsShouldProcess = true, + DefaultParameterSetName = PartnerTopicNameParameterSet), + OutputType(typeof(bool))] + + public class RemoveAzureEventGridPartnerTopic : AzureEventGridCmdletBase + { + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = PartnerTopicNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + [Alias(AliasResourceGroup)] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 1, + HelpMessage = EventGridConstants.PartnerTopicNameHelp, + ParameterSetName = PartnerTopicNameParameterSet)] + [ResourceNameCompleter("Microsoft.EventGrid/partnerTopics", nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + [Alias("PartnerTopicName")] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.PartnerTopicInputObjectHelp, + ParameterSetName = PartnerTopicInputObjectParameterSet)] + public PSPartnerTopic InputObject { get; set; } + + /// + /// If present, do not ask for confirmation + /// + [Parameter(Mandatory = false, + HelpMessage = EventGridConstants.ForceHelp)] + public SwitchParameter Force { get; set; } + + [Parameter(Mandatory = false)] + public SwitchParameter PassThru { get; set; } + + public override void ExecuteCmdlet() + { + string resourceGroupName = string.Empty; + string partnerTopicName = string.Empty; + + if (this.InputObject != null) + { + resourceGroupName = this.InputObject.ResourceGroupName; + partnerTopicName = this.InputObject.Name; + } + else + { + resourceGroupName = this.ResourceGroupName; + partnerTopicName = this.Name; + } + + if (this.ShouldProcess(partnerTopicName, $"Remove EventGrid partner topic {partnerTopicName} in Resource Group {resourceGroupName}")) + { + this.Client.DeletePartnerTopic(resourceGroupName, partnerTopicName); + + if (this.PassThru) + { + this.WriteObject(true); + } + } + } + } +} diff --git a/src/EventGrid/EventGrid/PartnerTopic/RemoveAzureEventGridPartnerTopicEventSubscription.cs b/src/EventGrid/EventGrid/PartnerTopic/RemoveAzureEventGridPartnerTopicEventSubscription.cs new file mode 100644 index 000000000000..e5df90fc0b54 --- /dev/null +++ b/src/EventGrid/EventGrid/PartnerTopic/RemoveAzureEventGridPartnerTopicEventSubscription.cs @@ -0,0 +1,122 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections; +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.EventGrid.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.Tags; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.EventGrid.Models; +using Microsoft.Azure.Commands.EventGrid.Utilities; +using EventGridModels = Microsoft.Azure.Management.EventGrid.Models; +using Microsoft.WindowsAzure.Commands.Utilities.Common; + +namespace Microsoft.Azure.Commands.EventGrid +{ + [Cmdlet( + "Remove", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventGridPartnerTopicEventSubscription", + SupportsShouldProcess = true, + DefaultParameterSetName = PartnerTopicNameParameterSet), + OutputType(typeof(bool))] + + public class RemoveAzureEventGridPartnerTopicEventSubscription : AzureEventGridCmdletBase + { + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.EventSubscriptionNameHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter("Microsoft.EventGrid/partnerTopics/eventSubscriptions", nameof(ResourceGroupName), nameof(PartnerTopicName))] + [Alias("EventSubscriptionName")] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + [Alias(AliasResourceGroup)] + [ResourceGroupCompleter] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.PartnerTopicNameHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter("Microsoft.EventGrid/partnerTopics", nameof(ResourceGroupName))] + public string PartnerTopicName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.EventSubscriptionResourceIdHelp, + ParameterSetName = ResourceIdPartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + /// + /// If present, do not ask for confirmation + /// + [Parameter(Mandatory = false, + HelpMessage = EventGridConstants.ForceHelp)] + public SwitchParameter Force { get; set; } + + [Parameter( + Mandatory = false)] + public SwitchParameter PassThru { get; set; } + + public override void ExecuteCmdlet() + { + string resourceGroupName = string.Empty; + string partnerTopicName = string.Empty; + string eventSubscriptionName = string.Empty; + + if (!string.IsNullOrEmpty(this.ResourceId)) + { + EventGridUtils.GetResourceGroupNameAndTopicNameAndEventSubscriptionName( + this.ResourceId, + out resourceGroupName, + out partnerTopicName, + out eventSubscriptionName); + } + else + { + resourceGroupName = this.ResourceGroupName; + partnerTopicName = this.PartnerTopicName; + eventSubscriptionName = this.Name; + } + + ConfirmAction(Force.IsPresent, + $"Remove event subscription {eventSubscriptionName}", + $"Removing event subscription {eventSubscriptionName}", + eventSubscriptionName, + () => + { + this.Client.DeletePartnerTopicEventSubscription(resourceGroupName, partnerTopicName, eventSubscriptionName); + if (PassThru) + { + WriteObject(true); + } + }); + } + } +} diff --git a/src/EventGrid/EventGrid/PartnerTopic/UpdateAzureEventGridPartnerTopic.cs b/src/EventGrid/EventGrid/PartnerTopic/UpdateAzureEventGridPartnerTopic.cs new file mode 100644 index 000000000000..9e67dae914e4 --- /dev/null +++ b/src/EventGrid/EventGrid/PartnerTopic/UpdateAzureEventGridPartnerTopic.cs @@ -0,0 +1,153 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Collections; +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.EventGrid.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.Tags; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.EventGrid.Models; +using Microsoft.Azure.Commands.EventGrid.Utilities; +using EventGridModels = Microsoft.Azure.Management.EventGrid.Models; + +namespace Microsoft.Azure.Commands.EventGrid +{ + [Cmdlet( + "Update", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventGridPartnerTopic", + SupportsShouldProcess = true, + DefaultParameterSetName = PartnerTopicNameParameterSet), + OutputType(typeof(PSPartnerTopic))] + + public class UpdateAzureEventGridPartnerTopic : AzureEventGridCmdletBase + { + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = PartnerTopicNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + [Alias(AliasResourceGroup)] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.PartnerTopicInputObjectHelp, + ParameterSetName = PartnerTopicInputObjectParameterSet)] + public PSPartnerTopic InputObject { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 1, + HelpMessage = EventGridConstants.PartnerTopicNameHelp, + ParameterSetName = PartnerTopicNameParameterSet)] + [ResourceNameCompleter("Microsoft.EventGrid/partnerTopics", nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + [Alias("PartnerTopicName")] + public string Name { get; set; } + + /// + /// Hashtable which represents resource Tags. + /// + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.TagsHelp, + ParameterSetName = PartnerTopicNameParameterSet)] + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.TagsHelp, + ParameterSetName = PartnerTopicInputObjectParameterSet)] + public Hashtable Tag { get; set; } + + /// + /// string which represents the IdentityType. + /// + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.IdentityTypeHelp, + ParameterSetName = PartnerTopicNameParameterSet)] + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.IdentityTypeHelp, + ParameterSetName = PartnerTopicInputObjectParameterSet)] + [ValidateSet("SystemAssigned", "UserAssigned", "SystemAssigned, UserAssigned", "None", IgnoreCase = true)] + public string IdentityType { get; set; } + + /// + /// string array of identity ids for user assigned identities + /// + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.IdentityIdsHelp, + ParameterSetName = PartnerTopicNameParameterSet)] + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.IdentityIdsHelp, + ParameterSetName = PartnerTopicInputObjectParameterSet)] + public string[] IdentityId { get; set; } + + public override void ExecuteCmdlet() + { + // Update an Event Grid Partner Topic + Dictionary tagDictionary = TagsConversionHelper.CreateTagDictionary(this.Tag, true); + string resourceGroupName = string.Empty; + string partnerTopicName = string.Empty; + Dictionary userAssignedIdentities = null; + if (this.IdentityId != null && this.IdentityId.Length > 0) + { + userAssignedIdentities = new Dictionary(); + foreach (string identityId in this.IdentityId) + { + userAssignedIdentities.Add(identityId, new UserIdentityProperties()); + } + } + + if (this.InputObject != null) + { + resourceGroupName = this.InputObject.ResourceGroupName; + partnerTopicName = this.InputObject.Name; + } + else + { + resourceGroupName = this.ResourceGroupName; + partnerTopicName = this.Name; + } + + if (this.ShouldProcess(resourceGroupName, $"Update an EventGrid partner topic in Resource Group {resourceGroupName}")) + { + PartnerTopic partnerTopic = this.Client.UpdatePartnerTopic( + resourceGroupName, + partnerTopicName, + this.IdentityType, + userAssignedIdentities, + tagDictionary); + + PSPartnerTopic psPartnerTopic = new PSPartnerTopic(partnerTopic); + this.WriteObject(psPartnerTopic); + } + } + } +} diff --git a/src/EventGrid/EventGrid/PartnerTopic/UpdateAzureEventGridPartnerTopicEventSubscription.cs b/src/EventGrid/EventGrid/PartnerTopic/UpdateAzureEventGridPartnerTopicEventSubscription.cs new file mode 100644 index 000000000000..4cab9f6445d0 --- /dev/null +++ b/src/EventGrid/EventGrid/PartnerTopic/UpdateAzureEventGridPartnerTopicEventSubscription.cs @@ -0,0 +1,308 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections; +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.EventGrid.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.Tags; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.EventGrid.Models; +using Microsoft.Azure.Commands.EventGrid.Utilities; +using EventGridModels = Microsoft.Azure.Management.EventGrid.Models; +using Microsoft.WindowsAzure.Commands.Utilities.Common; + +namespace Microsoft.Azure.Commands.EventGrid +{ + [Cmdlet( + "Update", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventGridPartnerTopicEventSubscription", + SupportsShouldProcess = true, + DefaultParameterSetName = PartnerTopicNameParameterSet), + OutputType(typeof(PSEventSubscription))] + + public class UpdateAzureEventGridPartnerTopicEventSubscription : AzureEventGridCmdletBase + { + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.EventSubscriptionNameHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter("Microsoft.EventGrid/partnerTopics/eventSubscriptions", nameof(ResourceGroupName), nameof(PartnerTopicName))] + [Alias("EventSubscriptionName")] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.ResourceGroupNameHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + [Alias(AliasResourceGroup)] + [ResourceGroupCompleter] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.PartnerTopicNameHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter("Microsoft.EventGrid/partnerTopics", nameof(ResourceGroupName))] + public string PartnerTopicName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.EventSubscriptionResourceIdHelp, + ParameterSetName = ResourceIdPartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.DeadletterEndpointHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.DeadletterEndpointHelp, + ParameterSetName = ResourceIdPartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + public string DeadLetterEndpoint { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.DeliveryAttributeMappingHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.DeliveryAttributeMappingHelp, + ParameterSetName = ResourceIdPartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + public string[] DeliveryAttributeMapping { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.EndpointHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.EndpointHelp, + ParameterSetName = ResourceIdPartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + public string Endpoint { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.EndpointTypeHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.EndpointTypeHelp, + ParameterSetName = ResourceIdPartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + public string EndpointType { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.LabelsHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.LabelsHelp, + ParameterSetName = ResourceIdPartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + public string[] Label { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.StorageQueueMessageTtlHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.StorageQueueMessageTtlHelp, + ParameterSetName = ResourceIdPartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + public long StorageQueueMessageTtl { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.AdvancedFilterHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.AdvancedFilterHelp, + ParameterSetName = ResourceIdPartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + public Hashtable[] AdvancedFilter { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.AdvancedFilteringOnArraysHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.AdvancedFilteringOnArraysHelp, + ParameterSetName = ResourceIdPartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + public SwitchParameter AdvancedFilteringOnArray { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.IncludedEventTypesHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.IncludedEventTypesHelp, + ParameterSetName = ResourceIdPartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + public string[] IncludedEventType { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.SubjectBeginsWithHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.SubjectBeginsWithHelp, + ParameterSetName = ResourceIdPartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + public string SubjectBeginsWith { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.SubjectEndsWithHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.SubjectEndsWithHelp, + ParameterSetName = ResourceIdPartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + public string SubjectEndsWith { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.SubjectCaseSensitiveHelp, + ParameterSetName = PartnerTopicEventSubscriptionParameterSet)] + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = EventGridConstants.SubjectCaseSensitiveHelp, + ParameterSetName = ResourceIdPartnerTopicEventSubscriptionParameterSet)] + [ValidateNotNullOrEmpty] + public SwitchParameter SubjectCaseSensitive { get; set; } + + + public override void ExecuteCmdlet() + { + PSEventSubscription psEventSubscription = null; + string resourceGroupName = string.Empty; + string partnerTopicName = string.Empty; + string eventSubscriptionName = string.Empty; + + if (!string.IsNullOrEmpty(this.ResourceId)) + { + EventGridUtils.GetResourceGroupNameAndTopicNameAndEventSubscriptionName( + this.ResourceId, + out resourceGroupName, + out partnerTopicName, + out eventSubscriptionName); + } + else + { + resourceGroupName = this.ResourceGroupName; + partnerTopicName = this.PartnerTopicName; + eventSubscriptionName = this.Name; + } + + if (this.ShouldProcess(eventSubscriptionName, $"Update Event Grid subscription {eventSubscriptionName} under partnerTopic {partnerTopicName}")) + { + + bool isSubjectCaseSensitive = this.SubjectCaseSensitive.IsPresent; + bool enableAdvancedFilteringOnArrays = this.AdvancedFilteringOnArray.IsPresent; + + if (EventGridUtils.ShouldShowEventSubscriptionWarningMessage(this.Endpoint, this.EndpointType)) + { + WriteWarning(EventGridConstants.EventSubscriptionHandshakeValidationMessage); + } + + if (this.IncludedEventType != null && this.IncludedEventType.Length == 1 && string.Equals(this.IncludedEventType[0], "All", StringComparison.OrdinalIgnoreCase)) + { + // Show Warning message for user + this.IncludedEventType = null; + WriteWarning(EventGridConstants.IncludedEventTypeDeprecationMessage); + } + + EventSubscription eventSubscription = this.Client.UpdatePartnerTopicEventSubscription( + eventSubscriptionName, + resourceGroupName, + partnerTopicName, + this.DeadLetterEndpoint, + this.DeliveryAttributeMapping, + this.Endpoint, + this.EndpointType, + this.Label, + this.StorageQueueMessageTtl, + this.AdvancedFilter, + enableAdvancedFilteringOnArrays, + this.IncludedEventType, + this.SubjectBeginsWith, + this.SubjectEndsWith, + isSubjectCaseSensitive); + + psEventSubscription = new PSEventSubscription(eventSubscription); + + } + this.WriteObject(psEventSubscription, true); + } + } +} diff --git a/src/EventGrid/EventGrid/SystemTopic/GetAzureEventGridSystemTopicEventSubscription.cs b/src/EventGrid/EventGrid/SystemTopic/GetAzureEventGridSystemTopicEventSubscription.cs index c6d81bd85fa9..c3414864b3f4 100644 --- a/src/EventGrid/EventGrid/SystemTopic/GetAzureEventGridSystemTopicEventSubscription.cs +++ b/src/EventGrid/EventGrid/SystemTopic/GetAzureEventGridSystemTopicEventSubscription.cs @@ -115,7 +115,7 @@ public override void ExecuteCmdlet() if (!string.IsNullOrEmpty(this.EventSubscriptionName)) { - EventSubscription eventSubscription = this.Client.GetSystemTopicEventSubscriptiion(this.ResourceGroupName, this.SystemTopicName, this.EventSubscriptionName); + EventSubscription eventSubscription = this.Client.GetSystemTopicEventSubscription(this.ResourceGroupName, this.SystemTopicName, this.EventSubscriptionName); PSEventSubscription psEventSubscription; if (includeFullEndpointUrl && diff --git a/src/EventGrid/EventGrid/SystemTopic/GetAzureEventGridSystemTopicEventSubscriptionDeliveryAttribute.cs b/src/EventGrid/EventGrid/SystemTopic/GetAzureEventGridSystemTopicEventSubscriptionDeliveryAttribute.cs index fbc9d2f0e30d..9da7e63d27cf 100644 --- a/src/EventGrid/EventGrid/SystemTopic/GetAzureEventGridSystemTopicEventSubscriptionDeliveryAttribute.cs +++ b/src/EventGrid/EventGrid/SystemTopic/GetAzureEventGridSystemTopicEventSubscriptionDeliveryAttribute.cs @@ -60,7 +60,7 @@ public class GetAzureEventGridSystemTopicEventSubscriptionDeliveryAttribute : Az public override void ExecuteCmdlet() { - DeliveryAttributeListResult deliveryAttributeListResult = this.Client.GetAzEventSubscriptionsDeliveryAttribute(this.ResourceGroupName, this.SystemTopicName, this.EventSubscriptionName); + DeliveryAttributeListResult deliveryAttributeListResult = this.Client.GetAzSystemTopicEventSubscriptionsDeliveryAttribute(this.ResourceGroupName, this.SystemTopicName, this.EventSubscriptionName); PsDeliveryAttribute PsDeliveryAttribute = new PsDeliveryAttribute(deliveryAttributeListResult); this.WriteObject(PsDeliveryAttribute, true); } diff --git a/src/EventGrid/EventGrid/SystemTopic/NewAzureEventGridSystemTopicEventSubscription.cs b/src/EventGrid/EventGrid/SystemTopic/NewAzureEventGridSystemTopicEventSubscription.cs index b25f255c4264..d76889a7d15f 100644 --- a/src/EventGrid/EventGrid/SystemTopic/NewAzureEventGridSystemTopicEventSubscription.cs +++ b/src/EventGrid/EventGrid/SystemTopic/NewAzureEventGridSystemTopicEventSubscription.cs @@ -263,7 +263,7 @@ public override void ExecuteCmdlet() WriteWarning(EventGridConstants.IncludedEventTypeDeprecationMessage); } - EventSubscription eventSubscription = this.Client.createSystemTopicEventSubscriptiion( + EventSubscription eventSubscription = this.Client.createSystemTopicEventSubscription( this.EventSubscriptionName, this.ResourceGroupName, this.SystemTopicName, diff --git a/src/EventGrid/EventGrid/SystemTopic/RemoveAzureEventGridSystemTopicEventSubscription.cs b/src/EventGrid/EventGrid/SystemTopic/RemoveAzureEventGridSystemTopicEventSubscription.cs index 485efb831ac7..6655a2ec9c4a 100644 --- a/src/EventGrid/EventGrid/SystemTopic/RemoveAzureEventGridSystemTopicEventSubscription.cs +++ b/src/EventGrid/EventGrid/SystemTopic/RemoveAzureEventGridSystemTopicEventSubscription.cs @@ -78,7 +78,7 @@ public override void ExecuteCmdlet() this.EventSubscriptionName, () => { - this.Client.DeleteSystemTopicEventSubscriptiion(this.ResourceGroupName, this.SystemTopicName, this.EventSubscriptionName); + this.Client.DeleteSystemTopicEventSubscription(this.ResourceGroupName, this.SystemTopicName, this.EventSubscriptionName); if (PassThru) { WriteObject(true); diff --git a/src/EventGrid/EventGrid/SystemTopic/UpdateAzureEventGridSystemTopicEventSubscription.cs b/src/EventGrid/EventGrid/SystemTopic/UpdateAzureEventGridSystemTopicEventSubscription.cs index e3d9d8a64a6f..b39b40e7c388 100644 --- a/src/EventGrid/EventGrid/SystemTopic/UpdateAzureEventGridSystemTopicEventSubscription.cs +++ b/src/EventGrid/EventGrid/SystemTopic/UpdateAzureEventGridSystemTopicEventSubscription.cs @@ -177,7 +177,7 @@ public override void ExecuteCmdlet() WriteWarning(EventGridConstants.IncludedEventTypeDeprecationMessage); } - EventSubscription eventSubscription = this.Client.UpdateSystemTopicEventSubscriptiion( + EventSubscription eventSubscription = this.Client.UpdateSystemTopicEventSubscription( this.EventSubscriptionName, this.ResourceGroupName, this.SystemTopicName, diff --git a/src/EventGrid/EventGrid/Utilities/EventGridClient.cs b/src/EventGrid/EventGrid/Utilities/EventGridClient.cs index 54afc50ebf95..651edd0179f0 100644 --- a/src/EventGrid/EventGrid/Utilities/EventGridClient.cs +++ b/src/EventGrid/EventGrid/Utilities/EventGridClient.cs @@ -23,6 +23,8 @@ using Microsoft.Azure.Commands.EventGrid.Utilities; using Microsoft.Rest.Azure; using System.Security.Cryptography; +using Microsoft.Azure.Commands.EventGrid.Models; +using Microsoft.Azure.Commands.Common.Strategies; namespace Microsoft.Azure.Commands.EventGrid { @@ -359,13 +361,18 @@ public SystemTopic CreateSystemTopic( systemTopic.Location = location; systemTopic.Source = source; systemTopic.TopicType = topicType; - if(identityType != null) + if (identityType != null) { IdentityInfo identityInfo = new IdentityInfo(); identityInfo.Type = identityType; identityInfo.UserAssignedIdentities = userAssignedIdentities; systemTopic.Identity = identityInfo; } + + if (tags != null) + { + systemTopic.Tags = tags; + } return this.Client.SystemTopics.CreateOrUpdate(resourceGroupName, systemTopicName, systemTopic); } @@ -396,61 +403,20 @@ public void DeleteSystemTopic(string resourceGroupName, string systemTopicName) #endregion - #region SystemTopicEventSubscription - - public EventSubscription GetSystemTopicEventSubscriptiion(string resourceGroupName, string systemTopicName, string eventSubscriptionName) - { - var systemTopicEventSubscription = this.Client.SystemTopicEventSubscriptions.Get(resourceGroupName, systemTopicName, eventSubscriptionName); - return systemTopicEventSubscription; - } - - public (IEnumerable, string) ListSystemTopicEventSubscriptions(string resourceGroupName, string systemTopic, string oDataQuery, int? top) - { - List eventSubscriptionsList = new List(); - IPage eventSubscriptionsPage = this.Client.SystemTopicEventSubscriptions.ListBySystemTopic(resourceGroupName, systemTopic, oDataQuery, top); - bool isAllResultsNeeded = top == null; - string nextLink = null; - if (eventSubscriptionsPage != null) - { - eventSubscriptionsList.AddRange(eventSubscriptionsPage); - nextLink = eventSubscriptionsPage.NextPageLink; - while (nextLink != null && isAllResultsNeeded) - { - IEnumerable newEventSubscriptionsList; - (newEventSubscriptionsList, nextLink) = this.ListRegionalEventSubscriptionsByResourceGroupNext(nextLink); - eventSubscriptionsList.AddRange(newEventSubscriptionsList); - } - } - - return (eventSubscriptionsList, nextLink); - } - - public (IEnumerable, string) ListSystemTopicEventSubscriptionsNext(string nextLink) - { - List eventSubscriptionsList = new List(); - string newNextLink = null; - IPage eventSubscriptionsPage = this.Client.SystemTopicEventSubscriptions.ListBySystemTopicNext(nextLink); - if (eventSubscriptionsPage != null) - { - eventSubscriptionsList.AddRange(eventSubscriptionsPage); - newNextLink = eventSubscriptionsPage.NextPageLink; - } - - return (eventSubscriptionsList, newNextLink); - } + #region PartnerTopicEventSubscription - public EventSubscription createSystemTopicEventSubscriptiion( + public EventSubscription CreatePartnerTopicEventSubscription( string eventSubscriptionName, string resourceGroupName, - string systemTopicName, + string partnerTopicName, string aadAppIdOrUri, string aadTenantId, string deadLetterEndpoint, - string[] deliveryAttributeMapping , + string[] deliveryAttributeMapping, string endpoint, string endpointType, string deliverySchema, - RetryPolicy retryPolicy, + RetryPolicy retryPolicy, DateTime expirationDate, string[] labels, int maxEventsPerBatch, @@ -570,14 +536,14 @@ bool isSubjectCaseSensitive { eventSubscription.ExpirationTimeUtc = expirationDate; } - var systemTopicEventSubscription = this.Client.SystemTopicEventSubscriptions.CreateOrUpdate(resourceGroupName, systemTopicName, eventSubscriptionName, eventSubscription); - return systemTopicEventSubscription; + var partnerTopicEventSubscription = this.Client.PartnerTopicEventSubscriptions.CreateOrUpdate(resourceGroupName, partnerTopicName, eventSubscriptionName, eventSubscription); + return partnerTopicEventSubscription; } - public EventSubscription UpdateSystemTopicEventSubscriptiion( + public EventSubscription UpdatePartnerTopicEventSubscription( string eventSubscriptionName, string resourceGroupName, - string systemTopicName, + string partnerTopicName, string deadLetterEndpoint, string[] deliveryAttributeMapping, string endpoint, @@ -679,7 +645,7 @@ public EventSubscription UpdateSystemTopicEventSubscriptiion( } EventSubscriptionUpdateParameters eventSubscriptionUpdateParameters = new EventSubscriptionUpdateParameters(); - if(!string.IsNullOrEmpty(endpoint)) + if (!string.IsNullOrEmpty(endpoint)) { eventSubscriptionUpdateParameters.Destination = destination; } @@ -690,293 +656,2319 @@ public EventSubscription UpdateSystemTopicEventSubscriptiion( eventSubscriptionUpdateParameters.DeadLetterWithResourceIdentity = null; //(EventSubscriptionDestination destination = null, DeliveryWithResourceIdentity deliveryWithResourceIdentity = null, EventSubscriptionFilter filter = null, IList labels = null, DateTime ? expirationTimeUtc = null, string eventDeliverySchema = null, RetryPolicy retryPolicy = null, DeadLetterDestination deadLetterDestination = null, DeadLetterWithResourceIdentity deadLetterWithResourceIdentity = null); - var systemTopicEventSubscription = this.Client.SystemTopicEventSubscriptions.Update(resourceGroupName, systemTopicName, eventSubscriptionName, eventSubscriptionUpdateParameters); - return systemTopicEventSubscription; + var partnerTopicEventSubscription = this.Client.PartnerTopicEventSubscriptions.Update(resourceGroupName, partnerTopicName, eventSubscriptionName, eventSubscriptionUpdateParameters); + return partnerTopicEventSubscription; } - public void DeleteSystemTopicEventSubscriptiion(string resourceGroupName, string systemTopicName, string eventSubscriptionName) + public EventSubscription GetPartnerTopicEventSubscription(string resourceGroupName, string partnerTopicName, string eventSubscriptionName) { - this.Client.SystemTopicEventSubscriptions.Delete(resourceGroupName, systemTopicName, eventSubscriptionName); + var partnerTopicEventSubscription = this.Client.PartnerTopicEventSubscriptions.Get(resourceGroupName, partnerTopicName, eventSubscriptionName); + return partnerTopicEventSubscription; } - public EventSubscriptionFullUrl GetAzFullUrlForSystemTopicEventSubscription(string resourceGroupName, string systemTopicName, string eventSubscriptionName) + public (IEnumerable, string) ListPartnerTopicEventSubscriptions(string resourceGroupName, string partnerTopic, string oDataQuery, int? top) { - return this.Client.SystemTopicEventSubscriptions.GetFullUrl(resourceGroupName, systemTopicName, eventSubscriptionName); + List eventSubscriptionsList = new List(); + IPage eventSubscriptionsPage = this.Client.PartnerTopicEventSubscriptions.ListByPartnerTopic(resourceGroupName, partnerTopic, oDataQuery, top); + bool isAllResultsNeeded = top == null; + string nextLink = null; + if (eventSubscriptionsPage != null) + { + eventSubscriptionsList.AddRange(eventSubscriptionsPage); + nextLink = eventSubscriptionsPage.NextPageLink; + while (nextLink != null && isAllResultsNeeded) + { + IEnumerable newEventSubscriptionsList; + (newEventSubscriptionsList, nextLink) = this.ListRegionalEventSubscriptionsByResourceGroupNext(nextLink); + eventSubscriptionsList.AddRange(newEventSubscriptionsList); + } + } + + return (eventSubscriptionsList, nextLink); } - public DeliveryAttributeListResult GetAzEventSubscriptionsDeliveryAttribute(string resourceGroupName, string systemTopicName, string eventSubscriptionName) + public (IEnumerable, string) ListPartnerTopicEventSubscriptionsNext(string nextLink) { - return this.Client.SystemTopicEventSubscriptions.GetDeliveryAttributes(resourceGroupName, systemTopicName, eventSubscriptionName); + List eventSubscriptionsList = new List(); + string newNextLink = null; + IPage eventSubscriptionsPage = this.Client.PartnerTopicEventSubscriptions.ListByPartnerTopicNext(nextLink); + if (eventSubscriptionsPage != null) + { + eventSubscriptionsList.AddRange(eventSubscriptionsPage); + newNextLink = eventSubscriptionsPage.NextPageLink; + } + + return (eventSubscriptionsList, newNextLink); } + public void DeletePartnerTopicEventSubscription(string resourceGroupName, string partnerTopicName, string eventSubscriptionName) + { + this.Client.PartnerTopicEventSubscriptions.Delete(resourceGroupName, partnerTopicName, eventSubscriptionName); + } - #endregion + public EventSubscriptionFullUrl GetAzFullUrlForPartnerTopicEventSubscription(string resourceGroupName, string partnerTopicName, string eventSubscriptionName) + { + return this.Client.PartnerTopicEventSubscriptions.GetFullUrl(resourceGroupName, partnerTopicName, eventSubscriptionName); + } - #region Domain - public Domain GetDomain(string resourceGroupName, string domainName) + public DeliveryAttributeListResult GetAzPartnerTopicEventSubscriptionsDeliveryAttribute(string resourceGroupName, string partnerTopicName, string eventSubscriptionName) { - var domain = this.Client.Domains.Get(resourceGroupName, domainName); - return domain; + return this.Client.PartnerTopicEventSubscriptions.GetDeliveryAttributes(resourceGroupName, partnerTopicName, eventSubscriptionName); } - public (IEnumerable, string) ListDomainsByResourceGroup(string resourceGroupName, string oDataQuery, int? top) + #endregion + + #region DomainTopicEventSubscription + + public EventSubscription CreateDomainTopicEventSubscription( + string eventSubscriptionName, + string resourceGroupName, + string domainName, + string domainTopicName, + string aadAppIdOrUri, + string aadTenantId, + string deadLetterEndpoint, + string[] deliveryAttributeMapping, + string endpoint, + string endpointType, + string deliverySchema, + RetryPolicy retryPolicy, + DateTime expirationDate, + string[] labels, + int maxEventsPerBatch, + int preferredBatchSizeInKiloByte, + long storageQueueMessageTtl, + Hashtable[] advancedFilter, + bool enableAdvancedFilteringOnArrays, + string[] includedEventTypes, + string subjectBeginsWith, + string subjectEndsWith, + bool isSubjectCaseSensitive + ) { - List domainsList = new List(); - IPage domainsPage = this.Client.Domains.ListByResourceGroup(resourceGroupName, oDataQuery, top); - bool isAllResultsNeeded = top == null; - string nextLink = null; + EventSubscription eventSubscription = new EventSubscription(); + EventSubscriptionDestination destination = null; - if (domainsPage != null) + if (string.IsNullOrEmpty(endpointType) || + string.Equals(endpointType, EventGridConstants.Webhook, StringComparison.OrdinalIgnoreCase)) { - domainsList.AddRange(domainsPage); - nextLink = domainsPage.NextPageLink; - while (nextLink != null && isAllResultsNeeded) + destination = new WebHookEventSubscriptionDestination() { - IEnumerable newDomainsList; - (newDomainsList, nextLink) = this.ListDomainsByResourceGroupNext(nextLink); - domainsList.AddRange(newDomainsList); - } + EndpointUrl = endpoint, + MaxEventsPerBatch = (maxEventsPerBatch == 0) ? (int?)null : maxEventsPerBatch, + PreferredBatchSizeInKilobytes = (preferredBatchSizeInKiloByte == 0) ? (int?)null : preferredBatchSizeInKiloByte, + AzureActiveDirectoryApplicationIdOrUri = aadAppIdOrUri, + AzureActiveDirectoryTenantId = aadTenantId, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.EventHub, StringComparison.OrdinalIgnoreCase)) + { + destination = new EventHubEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.StorageQueue, StringComparison.OrdinalIgnoreCase)) + { + destination = this.GetStorageQueueEventSubscriptionDestinationFromEndpoint(endpoint, storageQueueMessageTtl); + } + else if (string.Equals(endpointType, EventGridConstants.HybridConnection, StringComparison.OrdinalIgnoreCase)) + { + destination = new HybridConnectionEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.ServiceBusQueue, StringComparison.OrdinalIgnoreCase)) + { + destination = new ServiceBusQueueEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.ServiceBusTopic, StringComparison.OrdinalIgnoreCase)) + { + destination = new ServiceBusTopicEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.AzureFunction, StringComparison.OrdinalIgnoreCase)) + { + destination = new AzureFunctionEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else + { + throw new ArgumentNullException(nameof(endpointType), "Invalid EndpointType. Allowed values are WebHook, EventHub, StorageQueue, HybridConnection or ServiceBusQueue."); } - return (domainsList, nextLink); + eventSubscription.Destination = destination; + + var filter = new EventSubscriptionFilter() + { + SubjectBeginsWith = subjectBeginsWith, + SubjectEndsWith = subjectEndsWith, + IsSubjectCaseSensitive = isSubjectCaseSensitive, + EnableAdvancedFilteringOnArrays = enableAdvancedFilteringOnArrays + }; + + if (includedEventTypes != null) + { + filter.IncludedEventTypes = new List(includedEventTypes); + } + + eventSubscription.Filter = filter; + + if (advancedFilter != null && advancedFilter.Count() > 0) + { + this.UpdatedAdvancedFilterParameters(advancedFilter, eventSubscription.Filter); + } + + if (labels != null) + { + eventSubscription.Labels = new List(labels); + } + + + eventSubscription.RetryPolicy = retryPolicy; + + if (!string.IsNullOrEmpty(deadLetterEndpoint)) + { + eventSubscription.DeadLetterDestination = this.GetStorageBlobDeadLetterDestinationFromEndPoint(deadLetterEndpoint); + } + + eventSubscription.EventDeliverySchema = deliverySchema; + + if (expirationDate != null && expirationDate != DateTime.MinValue) + { + eventSubscription.ExpirationTimeUtc = expirationDate; + } + var domainTopicEventSubscription = this.Client.DomainTopicEventSubscriptions.CreateOrUpdate(resourceGroupName, domainName, domainTopicName, eventSubscriptionName, eventSubscription); + return domainTopicEventSubscription; } - public (IEnumerable, string) ListDomainsByResourceGroupNext(string nextLink) + public EventSubscription UpdateDomainTopicEventSubscription( + string eventSubscriptionName, + string resourceGroupName, + string domainName, + string domainTopicName, + string deadLetterEndpoint, + string[] deliveryAttributeMapping, + string endpoint, + string endpointType, + string[] labels, + long storageQueueMessageTtl, + Hashtable[] advancedFilter, + bool enableAdvancedFilteringOnArrays, + string[] includedEventTypes, + string subjectBeginsWith, + string subjectEndsWith, + bool isSubjectCaseSensitive) { - List domainsList = new List(); - string newNextLink = null; - IPage domainsPage = this.Client.Domains.ListByResourceGroupNext(nextLink); + EventSubscriptionDestination destination = null; + DeadLetterDestination deadLetterDestination = null; + EventSubscriptionFilter eventSubscriptionFilter = null; + + if (string.IsNullOrEmpty(endpointType) || + string.Equals(endpointType, EventGridConstants.Webhook, StringComparison.OrdinalIgnoreCase)) + { + destination = new WebHookEventSubscriptionDestination() + { + EndpointUrl = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.EventHub, StringComparison.OrdinalIgnoreCase)) + { + destination = new EventHubEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.StorageQueue, StringComparison.OrdinalIgnoreCase)) + { + destination = this.GetStorageQueueEventSubscriptionDestinationFromEndpoint(endpoint, storageQueueMessageTtl); + } + else if (string.Equals(endpointType, EventGridConstants.HybridConnection, StringComparison.OrdinalIgnoreCase)) + { + destination = new HybridConnectionEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.ServiceBusQueue, StringComparison.OrdinalIgnoreCase)) + { + destination = new ServiceBusQueueEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.ServiceBusTopic, StringComparison.OrdinalIgnoreCase)) + { + destination = new ServiceBusTopicEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.AzureFunction, StringComparison.OrdinalIgnoreCase)) + { + destination = new AzureFunctionEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else + { + throw new ArgumentNullException(nameof(endpointType), "Invalid EndpointType. Allowed values are WebHook, EventHub, StorageQueue, HybridConnection or ServiceBusQueue."); + } + + + var filter = new EventSubscriptionFilter() + { + SubjectBeginsWith = subjectBeginsWith, + SubjectEndsWith = subjectEndsWith, + IsSubjectCaseSensitive = isSubjectCaseSensitive, + EnableAdvancedFilteringOnArrays = enableAdvancedFilteringOnArrays + }; + + if (includedEventTypes != null) + { + filter.IncludedEventTypes = new List(includedEventTypes); + } + + eventSubscriptionFilter = filter; + + if (advancedFilter != null && advancedFilter.Count() > 0) + { + this.UpdatedAdvancedFilterParameters(advancedFilter, eventSubscriptionFilter); + } + if (!string.IsNullOrEmpty(deadLetterEndpoint)) + { + deadLetterDestination = this.GetStorageBlobDeadLetterDestinationFromEndPoint(deadLetterEndpoint); + } + + EventSubscriptionUpdateParameters eventSubscriptionUpdateParameters = new EventSubscriptionUpdateParameters(); + if (!string.IsNullOrEmpty(endpoint)) + { + eventSubscriptionUpdateParameters.Destination = destination; + } + eventSubscriptionUpdateParameters.DeliveryWithResourceIdentity = null; + eventSubscriptionUpdateParameters.Filter = filter; + eventSubscriptionUpdateParameters.Labels = labels; + eventSubscriptionUpdateParameters.DeadLetterDestination = deadLetterDestination; + eventSubscriptionUpdateParameters.DeadLetterWithResourceIdentity = null; + //(EventSubscriptionDestination destination = null, DeliveryWithResourceIdentity deliveryWithResourceIdentity = null, EventSubscriptionFilter filter = null, IList labels = null, DateTime ? expirationTimeUtc = null, string eventDeliverySchema = null, RetryPolicy retryPolicy = null, DeadLetterDestination deadLetterDestination = null, DeadLetterWithResourceIdentity deadLetterWithResourceIdentity = null); + + var domainTopicEventSubscription = this.Client.DomainTopicEventSubscriptions.Update(resourceGroupName, domainName, domainTopicName, eventSubscriptionName, eventSubscriptionUpdateParameters); + return domainTopicEventSubscription; + } + + public EventSubscription GetDomainTopicEventSubscription(string resourceGroupName, string domainName, string domainTopicName, string eventSubscriptionName) + { + var domainTopicEventSubscription = this.Client.DomainTopicEventSubscriptions.Get(resourceGroupName, domainName, domainTopicName, eventSubscriptionName); + return domainTopicEventSubscription; + } + + public (IEnumerable, string) ListDomainTopicEventSubscriptions(string resourceGroupName, string domainName, string domainTopicName, string oDataQuery, int? top) + { + List eventSubscriptionsList = new List(); + IPage eventSubscriptionsPage = this.Client.DomainTopicEventSubscriptions.List(resourceGroupName, domainName, domainTopicName, oDataQuery, top); + bool isAllResultsNeeded = top == null; + string nextLink = null; + if (eventSubscriptionsPage != null) + { + eventSubscriptionsList.AddRange(eventSubscriptionsPage); + nextLink = eventSubscriptionsPage.NextPageLink; + while (nextLink != null && isAllResultsNeeded) + { + IEnumerable newEventSubscriptionsList; + (newEventSubscriptionsList, nextLink) = this.ListRegionalEventSubscriptionsByResourceGroupNext(nextLink); + eventSubscriptionsList.AddRange(newEventSubscriptionsList); + } + } + + return (eventSubscriptionsList, nextLink); + } + + public (IEnumerable, string) ListDomainTopicEventSubscriptionsNext(string nextLink) + { + List eventSubscriptionsList = new List(); + string newNextLink = null; + IPage eventSubscriptionsPage = this.Client.DomainTopicEventSubscriptions.ListNext(nextLink); + if (eventSubscriptionsPage != null) + { + eventSubscriptionsList.AddRange(eventSubscriptionsPage); + newNextLink = eventSubscriptionsPage.NextPageLink; + } + + return (eventSubscriptionsList, newNextLink); + } + + public void DeleteDomainTopicEventSubscription(string resourceGroupName, string domainName, string domainTopicName, string eventSubscriptionName) + { + this.Client.DomainTopicEventSubscriptions.Delete(resourceGroupName, domainName, domainTopicName, eventSubscriptionName); + } + + public EventSubscriptionFullUrl GetAzFullUrlForDomainTopicEventSubscription(string resourceGroupName, string domainName, string domainTopicName, string eventSubscriptionName) + { + return this.Client.DomainTopicEventSubscriptions.GetFullUrl(resourceGroupName, domainName, domainTopicName, eventSubscriptionName); + } + + public DeliveryAttributeListResult GetAzDomainTopicEventSubscriptionsDeliveryAttribute(string resourceGroupName, string domainName, string domainTopicName, string eventSubscriptionName) + { + return this.Client.DomainTopicEventSubscriptions.GetDeliveryAttributes(resourceGroupName, domainName, domainTopicName, eventSubscriptionName); + } + + #endregion + + #region DomainEventSubscription + + public EventSubscription CreateDomainEventSubscription( + string eventSubscriptionName, + string resourceGroupName, + string domainName, + string aadAppIdOrUri, + string aadTenantId, + string deadLetterEndpoint, + string[] deliveryAttributeMapping, + string endpoint, + string endpointType, + string deliverySchema, + RetryPolicy retryPolicy, + DateTime expirationDate, + string[] labels, + int maxEventsPerBatch, + int preferredBatchSizeInKiloByte, + long storageQueueMessageTtl, + Hashtable[] advancedFilter, + bool enableAdvancedFilteringOnArrays, + string[] includedEventTypes, + string subjectBeginsWith, + string subjectEndsWith, + bool isSubjectCaseSensitive + ) + { + EventSubscription eventSubscription = new EventSubscription(); + EventSubscriptionDestination destination = null; + + if (string.IsNullOrEmpty(endpointType) || + string.Equals(endpointType, EventGridConstants.Webhook, StringComparison.OrdinalIgnoreCase)) + { + destination = new WebHookEventSubscriptionDestination() + { + EndpointUrl = endpoint, + MaxEventsPerBatch = (maxEventsPerBatch == 0) ? (int?)null : maxEventsPerBatch, + PreferredBatchSizeInKilobytes = (preferredBatchSizeInKiloByte == 0) ? (int?)null : preferredBatchSizeInKiloByte, + AzureActiveDirectoryApplicationIdOrUri = aadAppIdOrUri, + AzureActiveDirectoryTenantId = aadTenantId, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.EventHub, StringComparison.OrdinalIgnoreCase)) + { + destination = new EventHubEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.StorageQueue, StringComparison.OrdinalIgnoreCase)) + { + destination = this.GetStorageQueueEventSubscriptionDestinationFromEndpoint(endpoint, storageQueueMessageTtl); + } + else if (string.Equals(endpointType, EventGridConstants.HybridConnection, StringComparison.OrdinalIgnoreCase)) + { + destination = new HybridConnectionEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.ServiceBusQueue, StringComparison.OrdinalIgnoreCase)) + { + destination = new ServiceBusQueueEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.ServiceBusTopic, StringComparison.OrdinalIgnoreCase)) + { + destination = new ServiceBusTopicEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.AzureFunction, StringComparison.OrdinalIgnoreCase)) + { + destination = new AzureFunctionEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else + { + throw new ArgumentNullException(nameof(endpointType), "Invalid EndpointType. Allowed values are WebHook, EventHub, StorageQueue, HybridConnection or ServiceBusQueue."); + } + + eventSubscription.Destination = destination; + + var filter = new EventSubscriptionFilter() + { + SubjectBeginsWith = subjectBeginsWith, + SubjectEndsWith = subjectEndsWith, + IsSubjectCaseSensitive = isSubjectCaseSensitive, + EnableAdvancedFilteringOnArrays = enableAdvancedFilteringOnArrays + }; + + if (includedEventTypes != null) + { + filter.IncludedEventTypes = new List(includedEventTypes); + } + + eventSubscription.Filter = filter; + + if (advancedFilter != null && advancedFilter.Count() > 0) + { + this.UpdatedAdvancedFilterParameters(advancedFilter, eventSubscription.Filter); + } + + if (labels != null) + { + eventSubscription.Labels = new List(labels); + } + + + eventSubscription.RetryPolicy = retryPolicy; + + if (!string.IsNullOrEmpty(deadLetterEndpoint)) + { + eventSubscription.DeadLetterDestination = this.GetStorageBlobDeadLetterDestinationFromEndPoint(deadLetterEndpoint); + } + + eventSubscription.EventDeliverySchema = deliverySchema; + + if (expirationDate != null && expirationDate != DateTime.MinValue) + { + eventSubscription.ExpirationTimeUtc = expirationDate; + } + var domainEventSubscription = this.Client.DomainEventSubscriptions.CreateOrUpdate(resourceGroupName, domainName, eventSubscriptionName, eventSubscription); + return domainEventSubscription; + } + + public EventSubscription UpdateDomainEventSubscription( + string eventSubscriptionName, + string resourceGroupName, + string domainName, + string deadLetterEndpoint, + string[] deliveryAttributeMapping, + string endpoint, + string endpointType, + string[] labels, + long storageQueueMessageTtl, + Hashtable[] advancedFilter, + bool enableAdvancedFilteringOnArrays, + string[] includedEventTypes, + string subjectBeginsWith, + string subjectEndsWith, + bool isSubjectCaseSensitive) + { + EventSubscriptionDestination destination = null; + DeadLetterDestination deadLetterDestination = null; + EventSubscriptionFilter eventSubscriptionFilter = null; + + if (string.IsNullOrEmpty(endpointType) || + string.Equals(endpointType, EventGridConstants.Webhook, StringComparison.OrdinalIgnoreCase)) + { + destination = new WebHookEventSubscriptionDestination() + { + EndpointUrl = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.EventHub, StringComparison.OrdinalIgnoreCase)) + { + destination = new EventHubEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.StorageQueue, StringComparison.OrdinalIgnoreCase)) + { + destination = this.GetStorageQueueEventSubscriptionDestinationFromEndpoint(endpoint, storageQueueMessageTtl); + } + else if (string.Equals(endpointType, EventGridConstants.HybridConnection, StringComparison.OrdinalIgnoreCase)) + { + destination = new HybridConnectionEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.ServiceBusQueue, StringComparison.OrdinalIgnoreCase)) + { + destination = new ServiceBusQueueEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.ServiceBusTopic, StringComparison.OrdinalIgnoreCase)) + { + destination = new ServiceBusTopicEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.AzureFunction, StringComparison.OrdinalIgnoreCase)) + { + destination = new AzureFunctionEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else + { + throw new ArgumentNullException(nameof(endpointType), "Invalid EndpointType. Allowed values are WebHook, EventHub, StorageQueue, HybridConnection or ServiceBusQueue."); + } + + + var filter = new EventSubscriptionFilter() + { + SubjectBeginsWith = subjectBeginsWith, + SubjectEndsWith = subjectEndsWith, + IsSubjectCaseSensitive = isSubjectCaseSensitive, + EnableAdvancedFilteringOnArrays = enableAdvancedFilteringOnArrays + }; + + if (includedEventTypes != null) + { + filter.IncludedEventTypes = new List(includedEventTypes); + } + + eventSubscriptionFilter = filter; + + if (advancedFilter != null && advancedFilter.Count() > 0) + { + this.UpdatedAdvancedFilterParameters(advancedFilter, eventSubscriptionFilter); + } + if (!string.IsNullOrEmpty(deadLetterEndpoint)) + { + deadLetterDestination = this.GetStorageBlobDeadLetterDestinationFromEndPoint(deadLetterEndpoint); + } + + EventSubscriptionUpdateParameters eventSubscriptionUpdateParameters = new EventSubscriptionUpdateParameters(); + if (!string.IsNullOrEmpty(endpoint)) + { + eventSubscriptionUpdateParameters.Destination = destination; + } + eventSubscriptionUpdateParameters.DeliveryWithResourceIdentity = null; + eventSubscriptionUpdateParameters.Filter = filter; + eventSubscriptionUpdateParameters.Labels = labels; + eventSubscriptionUpdateParameters.DeadLetterDestination = deadLetterDestination; + eventSubscriptionUpdateParameters.DeadLetterWithResourceIdentity = null; + //(EventSubscriptionDestination destination = null, DeliveryWithResourceIdentity deliveryWithResourceIdentity = null, EventSubscriptionFilter filter = null, IList labels = null, DateTime ? expirationTimeUtc = null, string eventDeliverySchema = null, RetryPolicy retryPolicy = null, DeadLetterDestination deadLetterDestination = null, DeadLetterWithResourceIdentity deadLetterWithResourceIdentity = null); + + var domainEventSubscription = this.Client.DomainEventSubscriptions.Update(resourceGroupName, domainName, eventSubscriptionName, eventSubscriptionUpdateParameters); + return domainEventSubscription; + } + + public EventSubscription GetDomainEventSubscription(string resourceGroupName, string domainName, string eventSubscriptionName) + { + var domainEventSubscription = this.Client.DomainEventSubscriptions.Get(resourceGroupName, domainName, eventSubscriptionName); + return domainEventSubscription; + } + + public (IEnumerable, string) ListDomainEventSubscriptions(string resourceGroupName, string domain, string oDataQuery, int? top) + { + List eventSubscriptionsList = new List(); + IPage eventSubscriptionsPage = this.Client.DomainEventSubscriptions.List(resourceGroupName, domain, oDataQuery, top); + bool isAllResultsNeeded = top == null; + string nextLink = null; + if (eventSubscriptionsPage != null) + { + eventSubscriptionsList.AddRange(eventSubscriptionsPage); + nextLink = eventSubscriptionsPage.NextPageLink; + while (nextLink != null && isAllResultsNeeded) + { + IEnumerable newEventSubscriptionsList; + (newEventSubscriptionsList, nextLink) = this.ListRegionalEventSubscriptionsByResourceGroupNext(nextLink); + eventSubscriptionsList.AddRange(newEventSubscriptionsList); + } + } + + return (eventSubscriptionsList, nextLink); + } + + public (IEnumerable, string) ListDomainEventSubscriptionsNext(string nextLink) + { + List eventSubscriptionsList = new List(); + string newNextLink = null; + IPage eventSubscriptionsPage = this.Client.DomainEventSubscriptions.ListNext(nextLink); + if (eventSubscriptionsPage != null) + { + eventSubscriptionsList.AddRange(eventSubscriptionsPage); + newNextLink = eventSubscriptionsPage.NextPageLink; + } + + return (eventSubscriptionsList, newNextLink); + } + + public void DeleteDomainEventSubscription(string resourceGroupName, string domainName, string eventSubscriptionName) + { + this.Client.DomainEventSubscriptions.Delete(resourceGroupName, domainName, eventSubscriptionName); + } + + public EventSubscriptionFullUrl GetAzFullUrlForDomainEventSubscription(string resourceGroupName, string domainName, string eventSubscriptionName) + { + return this.Client.DomainEventSubscriptions.GetFullUrl(resourceGroupName, domainName, eventSubscriptionName); + } + + public DeliveryAttributeListResult GetAzDomainEventSubscriptionsDeliveryAttribute(string resourceGroupName, string domainName, string eventSubscriptionName) + { + return this.Client.DomainEventSubscriptions.GetDeliveryAttributes(resourceGroupName, domainName, eventSubscriptionName); + } + + #endregion + + #region TopicEventSubscription + public EventSubscription CreateTopicEventSubscription( + string eventSubscriptionName, + string resourceGroupName, + string topicName, + string aadAppIdOrUri, + string aadTenantId, + string deadLetterEndpoint, + string[] deliveryAttributeMapping, + string endpoint, + string endpointType, + string deliverySchema, + RetryPolicy retryPolicy, + DateTime expirationDate, + string[] labels, + int maxEventsPerBatch, + int preferredBatchSizeInKiloByte, + long storageQueueMessageTtl, + Hashtable[] advancedFilter, + bool enableAdvancedFilteringOnArrays, + string[] includedEventTypes, + string subjectBeginsWith, + string subjectEndsWith, + bool isSubjectCaseSensitive + ) + { + EventSubscription eventSubscription = new EventSubscription(); + EventSubscriptionDestination destination = null; + + if (string.IsNullOrEmpty(endpointType) || + string.Equals(endpointType, EventGridConstants.Webhook, StringComparison.OrdinalIgnoreCase)) + { + destination = new WebHookEventSubscriptionDestination() + { + EndpointUrl = endpoint, + MaxEventsPerBatch = (maxEventsPerBatch == 0) ? (int?)null : maxEventsPerBatch, + PreferredBatchSizeInKilobytes = (preferredBatchSizeInKiloByte == 0) ? (int?)null : preferredBatchSizeInKiloByte, + AzureActiveDirectoryApplicationIdOrUri = aadAppIdOrUri, + AzureActiveDirectoryTenantId = aadTenantId, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.EventHub, StringComparison.OrdinalIgnoreCase)) + { + destination = new EventHubEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.StorageQueue, StringComparison.OrdinalIgnoreCase)) + { + destination = this.GetStorageQueueEventSubscriptionDestinationFromEndpoint(endpoint, storageQueueMessageTtl); + } + else if (string.Equals(endpointType, EventGridConstants.HybridConnection, StringComparison.OrdinalIgnoreCase)) + { + destination = new HybridConnectionEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.ServiceBusQueue, StringComparison.OrdinalIgnoreCase)) + { + destination = new ServiceBusQueueEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.ServiceBusTopic, StringComparison.OrdinalIgnoreCase)) + { + destination = new ServiceBusTopicEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.AzureFunction, StringComparison.OrdinalIgnoreCase)) + { + destination = new AzureFunctionEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else + { + throw new ArgumentNullException(nameof(endpointType), "Invalid EndpointType. Allowed values are WebHook, EventHub, StorageQueue, HybridConnection or ServiceBusQueue."); + } + + eventSubscription.Destination = destination; + + var filter = new EventSubscriptionFilter() + { + SubjectBeginsWith = subjectBeginsWith, + SubjectEndsWith = subjectEndsWith, + IsSubjectCaseSensitive = isSubjectCaseSensitive, + EnableAdvancedFilteringOnArrays = enableAdvancedFilteringOnArrays + }; + + if (includedEventTypes != null) + { + filter.IncludedEventTypes = new List(includedEventTypes); + } + + eventSubscription.Filter = filter; + + if (advancedFilter != null && advancedFilter.Count() > 0) + { + this.UpdatedAdvancedFilterParameters(advancedFilter, eventSubscription.Filter); + } + + if (labels != null) + { + eventSubscription.Labels = new List(labels); + } + + + eventSubscription.RetryPolicy = retryPolicy; + + if (!string.IsNullOrEmpty(deadLetterEndpoint)) + { + eventSubscription.DeadLetterDestination = this.GetStorageBlobDeadLetterDestinationFromEndPoint(deadLetterEndpoint); + } + + eventSubscription.EventDeliverySchema = deliverySchema; + + if (expirationDate != null && expirationDate != DateTime.MinValue) + { + eventSubscription.ExpirationTimeUtc = expirationDate; + } + var topicEventSubscription = this.Client.TopicEventSubscriptions.CreateOrUpdate(resourceGroupName, topicName, eventSubscriptionName, eventSubscription); + return topicEventSubscription; + } + + public EventSubscription UpdateTopicEventSubscription( + string eventSubscriptionName, + string resourceGroupName, + string topicName, + string deadLetterEndpoint, + string[] deliveryAttributeMapping, + string endpoint, + string endpointType, + string[] labels, + long storageQueueMessageTtl, + Hashtable[] advancedFilter, + bool enableAdvancedFilteringOnArrays, + string[] includedEventTypes, + string subjectBeginsWith, + string subjectEndsWith, + bool isSubjectCaseSensitive) + { + EventSubscriptionDestination destination = null; + DeadLetterDestination deadLetterDestination = null; + EventSubscriptionFilter eventSubscriptionFilter = null; + + if (string.IsNullOrEmpty(endpointType) || + string.Equals(endpointType, EventGridConstants.Webhook, StringComparison.OrdinalIgnoreCase)) + { + destination = new WebHookEventSubscriptionDestination() + { + EndpointUrl = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.EventHub, StringComparison.OrdinalIgnoreCase)) + { + destination = new EventHubEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.StorageQueue, StringComparison.OrdinalIgnoreCase)) + { + destination = this.GetStorageQueueEventSubscriptionDestinationFromEndpoint(endpoint, storageQueueMessageTtl); + } + else if (string.Equals(endpointType, EventGridConstants.HybridConnection, StringComparison.OrdinalIgnoreCase)) + { + destination = new HybridConnectionEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.ServiceBusQueue, StringComparison.OrdinalIgnoreCase)) + { + destination = new ServiceBusQueueEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.ServiceBusTopic, StringComparison.OrdinalIgnoreCase)) + { + destination = new ServiceBusTopicEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.AzureFunction, StringComparison.OrdinalIgnoreCase)) + { + destination = new AzureFunctionEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else + { + throw new ArgumentNullException(nameof(endpointType), "Invalid EndpointType. Allowed values are WebHook, EventHub, StorageQueue, HybridConnection or ServiceBusQueue."); + } + + + var filter = new EventSubscriptionFilter() + { + SubjectBeginsWith = subjectBeginsWith, + SubjectEndsWith = subjectEndsWith, + IsSubjectCaseSensitive = isSubjectCaseSensitive, + EnableAdvancedFilteringOnArrays = enableAdvancedFilteringOnArrays + }; + + if (includedEventTypes != null) + { + filter.IncludedEventTypes = new List(includedEventTypes); + } + + eventSubscriptionFilter = filter; + + if (advancedFilter != null && advancedFilter.Count() > 0) + { + this.UpdatedAdvancedFilterParameters(advancedFilter, eventSubscriptionFilter); + } + if (!string.IsNullOrEmpty(deadLetterEndpoint)) + { + deadLetterDestination = this.GetStorageBlobDeadLetterDestinationFromEndPoint(deadLetterEndpoint); + } + + EventSubscriptionUpdateParameters eventSubscriptionUpdateParameters = new EventSubscriptionUpdateParameters(); + if (!string.IsNullOrEmpty(endpoint)) + { + eventSubscriptionUpdateParameters.Destination = destination; + } + eventSubscriptionUpdateParameters.DeliveryWithResourceIdentity = null; + eventSubscriptionUpdateParameters.Filter = filter; + eventSubscriptionUpdateParameters.Labels = labels; + eventSubscriptionUpdateParameters.DeadLetterDestination = deadLetterDestination; + eventSubscriptionUpdateParameters.DeadLetterWithResourceIdentity = null; + //(EventSubscriptionDestination destination = null, DeliveryWithResourceIdentity deliveryWithResourceIdentity = null, EventSubscriptionFilter filter = null, IList labels = null, DateTime ? expirationTimeUtc = null, string eventDeliverySchema = null, RetryPolicy retryPolicy = null, DeadLetterDestination deadLetterDestination = null, DeadLetterWithResourceIdentity deadLetterWithResourceIdentity = null); + + var topicEventSubscription = this.Client.TopicEventSubscriptions.Update(resourceGroupName, topicName, eventSubscriptionName, eventSubscriptionUpdateParameters); + return topicEventSubscription; + } + + public EventSubscription GetTopicEventSubscription(string resourceGroupName, string topicName, string eventSubscriptionName) + { + var topicEventSubscription = this.Client.TopicEventSubscriptions.Get(resourceGroupName, topicName, eventSubscriptionName); + return topicEventSubscription; + } + + public (IEnumerable, string) ListTopicEventSubscriptions(string resourceGroupName, string topic, string oDataQuery, int? top) + { + List eventSubscriptionsList = new List(); + IPage eventSubscriptionsPage = this.Client.TopicEventSubscriptions.List(resourceGroupName, topic, oDataQuery, top); + bool isAllResultsNeeded = top == null; + string nextLink = null; + if (eventSubscriptionsPage != null) + { + eventSubscriptionsList.AddRange(eventSubscriptionsPage); + nextLink = eventSubscriptionsPage.NextPageLink; + while (nextLink != null && isAllResultsNeeded) + { + IEnumerable newEventSubscriptionsList; + (newEventSubscriptionsList, nextLink) = this.ListRegionalEventSubscriptionsByResourceGroupNext(nextLink); + eventSubscriptionsList.AddRange(newEventSubscriptionsList); + } + } + + return (eventSubscriptionsList, nextLink); + } + + public (IEnumerable, string) ListTopicEventSubscriptionsNext(string nextLink) + { + List eventSubscriptionsList = new List(); + string newNextLink = null; + IPage eventSubscriptionsPage = this.Client.TopicEventSubscriptions.ListNext(nextLink); + if (eventSubscriptionsPage != null) + { + eventSubscriptionsList.AddRange(eventSubscriptionsPage); + newNextLink = eventSubscriptionsPage.NextPageLink; + } + + return (eventSubscriptionsList, newNextLink); + } + + public void DeleteTopicEventSubscription(string resourceGroupName, string topicName, string eventSubscriptionName) + { + this.Client.TopicEventSubscriptions.Delete(resourceGroupName, topicName, eventSubscriptionName); + } + + public EventSubscriptionFullUrl GetAzFullUrlForTopicEventSubscription(string resourceGroupName, string topicName, string eventSubscriptionName) + { + return this.Client.TopicEventSubscriptions.GetFullUrl(resourceGroupName, topicName, eventSubscriptionName); + } + + public DeliveryAttributeListResult GetAzTopicEventSubscriptionsDeliveryAttribute(string resourceGroupName, string topicName, string eventSubscriptionName) + { + return this.Client.TopicEventSubscriptions.GetDeliveryAttributes(resourceGroupName, topicName, eventSubscriptionName); + } + + #endregion + + #region SystemTopicEventSubscription + + public EventSubscription GetSystemTopicEventSubscription(string resourceGroupName, string systemTopicName, string eventSubscriptionName) + { + var systemTopicEventSubscription = this.Client.SystemTopicEventSubscriptions.Get(resourceGroupName, systemTopicName, eventSubscriptionName); + return systemTopicEventSubscription; + } + + public (IEnumerable, string) ListSystemTopicEventSubscriptions(string resourceGroupName, string systemTopic, string oDataQuery, int? top) + { + List eventSubscriptionsList = new List(); + IPage eventSubscriptionsPage = this.Client.SystemTopicEventSubscriptions.ListBySystemTopic(resourceGroupName, systemTopic, oDataQuery, top); + bool isAllResultsNeeded = top == null; + string nextLink = null; + if (eventSubscriptionsPage != null) + { + eventSubscriptionsList.AddRange(eventSubscriptionsPage); + nextLink = eventSubscriptionsPage.NextPageLink; + while (nextLink != null && isAllResultsNeeded) + { + IEnumerable newEventSubscriptionsList; + (newEventSubscriptionsList, nextLink) = this.ListRegionalEventSubscriptionsByResourceGroupNext(nextLink); + eventSubscriptionsList.AddRange(newEventSubscriptionsList); + } + } + + return (eventSubscriptionsList, nextLink); + } + + public (IEnumerable, string) ListSystemTopicEventSubscriptionsNext(string nextLink) + { + List eventSubscriptionsList = new List(); + string newNextLink = null; + IPage eventSubscriptionsPage = this.Client.SystemTopicEventSubscriptions.ListBySystemTopicNext(nextLink); + if (eventSubscriptionsPage != null) + { + eventSubscriptionsList.AddRange(eventSubscriptionsPage); + newNextLink = eventSubscriptionsPage.NextPageLink; + } + + return (eventSubscriptionsList, newNextLink); + } + + public EventSubscription createSystemTopicEventSubscription( + string eventSubscriptionName, + string resourceGroupName, + string systemTopicName, + string aadAppIdOrUri, + string aadTenantId, + string deadLetterEndpoint, + string[] deliveryAttributeMapping , + string endpoint, + string endpointType, + string deliverySchema, + RetryPolicy retryPolicy, + DateTime expirationDate, + string[] labels, + int maxEventsPerBatch, + int preferredBatchSizeInKiloByte, + long storageQueueMessageTtl, + Hashtable[] advancedFilter, + bool enableAdvancedFilteringOnArrays, + string[] includedEventTypes, + string subjectBeginsWith, + string subjectEndsWith, + bool isSubjectCaseSensitive + ) + { + EventSubscription eventSubscription = new EventSubscription(); + EventSubscriptionDestination destination = null; + + if (string.IsNullOrEmpty(endpointType) || + string.Equals(endpointType, EventGridConstants.Webhook, StringComparison.OrdinalIgnoreCase)) + { + destination = new WebHookEventSubscriptionDestination() + { + EndpointUrl = endpoint, + MaxEventsPerBatch = (maxEventsPerBatch == 0) ? (int?)null : maxEventsPerBatch, + PreferredBatchSizeInKilobytes = (preferredBatchSizeInKiloByte == 0) ? (int?)null : preferredBatchSizeInKiloByte, + AzureActiveDirectoryApplicationIdOrUri = aadAppIdOrUri, + AzureActiveDirectoryTenantId = aadTenantId, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.EventHub, StringComparison.OrdinalIgnoreCase)) + { + destination = new EventHubEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.StorageQueue, StringComparison.OrdinalIgnoreCase)) + { + destination = this.GetStorageQueueEventSubscriptionDestinationFromEndpoint(endpoint, storageQueueMessageTtl); + } + else if (string.Equals(endpointType, EventGridConstants.HybridConnection, StringComparison.OrdinalIgnoreCase)) + { + destination = new HybridConnectionEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.ServiceBusQueue, StringComparison.OrdinalIgnoreCase)) + { + destination = new ServiceBusQueueEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.ServiceBusTopic, StringComparison.OrdinalIgnoreCase)) + { + destination = new ServiceBusTopicEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.AzureFunction, StringComparison.OrdinalIgnoreCase)) + { + destination = new AzureFunctionEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else + { + throw new ArgumentNullException(nameof(endpointType), "Invalid EndpointType. Allowed values are WebHook, EventHub, StorageQueue, HybridConnection or ServiceBusQueue."); + } + + eventSubscription.Destination = destination; + + var filter = new EventSubscriptionFilter() + { + SubjectBeginsWith = subjectBeginsWith, + SubjectEndsWith = subjectEndsWith, + IsSubjectCaseSensitive = isSubjectCaseSensitive, + EnableAdvancedFilteringOnArrays = enableAdvancedFilteringOnArrays + }; + + if (includedEventTypes != null) + { + filter.IncludedEventTypes = new List(includedEventTypes); + } + + eventSubscription.Filter = filter; + + if (advancedFilter != null && advancedFilter.Count() > 0) + { + this.UpdatedAdvancedFilterParameters(advancedFilter, eventSubscription.Filter); + } + + if (labels != null) + { + eventSubscription.Labels = new List(labels); + } + + + eventSubscription.RetryPolicy = retryPolicy; + + if (!string.IsNullOrEmpty(deadLetterEndpoint)) + { + eventSubscription.DeadLetterDestination = this.GetStorageBlobDeadLetterDestinationFromEndPoint(deadLetterEndpoint); + } + + eventSubscription.EventDeliverySchema = deliverySchema; + + if (expirationDate != null && expirationDate != DateTime.MinValue) + { + eventSubscription.ExpirationTimeUtc = expirationDate; + } + var systemTopicEventSubscription = this.Client.SystemTopicEventSubscriptions.CreateOrUpdate(resourceGroupName, systemTopicName, eventSubscriptionName, eventSubscription); + return systemTopicEventSubscription; + } + + public EventSubscription UpdateSystemTopicEventSubscription( + string eventSubscriptionName, + string resourceGroupName, + string systemTopicName, + string deadLetterEndpoint, + string[] deliveryAttributeMapping, + string endpoint, + string endpointType, + string[] labels, + long storageQueueMessageTtl, + Hashtable[] advancedFilter, + bool enableAdvancedFilteringOnArrays, + string[] includedEventTypes, + string subjectBeginsWith, + string subjectEndsWith, + bool isSubjectCaseSensitive) + { + EventSubscriptionDestination destination = null; + DeadLetterDestination deadLetterDestination = null; + EventSubscriptionFilter eventSubscriptionFilter = null; + + if (string.IsNullOrEmpty(endpointType) || + string.Equals(endpointType, EventGridConstants.Webhook, StringComparison.OrdinalIgnoreCase)) + { + destination = new WebHookEventSubscriptionDestination() + { + EndpointUrl = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.EventHub, StringComparison.OrdinalIgnoreCase)) + { + destination = new EventHubEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.StorageQueue, StringComparison.OrdinalIgnoreCase)) + { + destination = this.GetStorageQueueEventSubscriptionDestinationFromEndpoint(endpoint, storageQueueMessageTtl); + } + else if (string.Equals(endpointType, EventGridConstants.HybridConnection, StringComparison.OrdinalIgnoreCase)) + { + destination = new HybridConnectionEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.ServiceBusQueue, StringComparison.OrdinalIgnoreCase)) + { + destination = new ServiceBusQueueEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.ServiceBusTopic, StringComparison.OrdinalIgnoreCase)) + { + destination = new ServiceBusTopicEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else if (string.Equals(endpointType, EventGridConstants.AzureFunction, StringComparison.OrdinalIgnoreCase)) + { + destination = new AzureFunctionEventSubscriptionDestination() + { + ResourceId = endpoint, + DeliveryAttributeMappings = GetDeliveryAttributeMapping(deliveryAttributeMapping) + }; + } + else + { + throw new ArgumentNullException(nameof(endpointType), "Invalid EndpointType. Allowed values are WebHook, EventHub, StorageQueue, HybridConnection or ServiceBusQueue."); + } + + + var filter = new EventSubscriptionFilter() + { + SubjectBeginsWith = subjectBeginsWith, + SubjectEndsWith = subjectEndsWith, + IsSubjectCaseSensitive = isSubjectCaseSensitive, + EnableAdvancedFilteringOnArrays = enableAdvancedFilteringOnArrays + }; + + if (includedEventTypes != null) + { + filter.IncludedEventTypes = new List(includedEventTypes); + } + + eventSubscriptionFilter = filter; + + if (advancedFilter != null && advancedFilter.Count() > 0) + { + this.UpdatedAdvancedFilterParameters(advancedFilter, eventSubscriptionFilter); + } + if (!string.IsNullOrEmpty(deadLetterEndpoint)) + { + deadLetterDestination = this.GetStorageBlobDeadLetterDestinationFromEndPoint(deadLetterEndpoint); + } + + EventSubscriptionUpdateParameters eventSubscriptionUpdateParameters = new EventSubscriptionUpdateParameters(); + if(!string.IsNullOrEmpty(endpoint)) + { + eventSubscriptionUpdateParameters.Destination = destination; + } + eventSubscriptionUpdateParameters.DeliveryWithResourceIdentity = null; + eventSubscriptionUpdateParameters.Filter = filter; + eventSubscriptionUpdateParameters.Labels = labels; + eventSubscriptionUpdateParameters.DeadLetterDestination = deadLetterDestination; + eventSubscriptionUpdateParameters.DeadLetterWithResourceIdentity = null; + //(EventSubscriptionDestination destination = null, DeliveryWithResourceIdentity deliveryWithResourceIdentity = null, EventSubscriptionFilter filter = null, IList labels = null, DateTime ? expirationTimeUtc = null, string eventDeliverySchema = null, RetryPolicy retryPolicy = null, DeadLetterDestination deadLetterDestination = null, DeadLetterWithResourceIdentity deadLetterWithResourceIdentity = null); + + var systemTopicEventSubscription = this.Client.SystemTopicEventSubscriptions.Update(resourceGroupName, systemTopicName, eventSubscriptionName, eventSubscriptionUpdateParameters); + return systemTopicEventSubscription; + } + + public void DeleteSystemTopicEventSubscription(string resourceGroupName, string systemTopicName, string eventSubscriptionName) + { + this.Client.SystemTopicEventSubscriptions.Delete(resourceGroupName, systemTopicName, eventSubscriptionName); + } + + public EventSubscriptionFullUrl GetAzFullUrlForSystemTopicEventSubscription(string resourceGroupName, string systemTopicName, string eventSubscriptionName) + { + return this.Client.SystemTopicEventSubscriptions.GetFullUrl(resourceGroupName, systemTopicName, eventSubscriptionName); + } + + public DeliveryAttributeListResult GetAzSystemTopicEventSubscriptionsDeliveryAttribute(string resourceGroupName, string systemTopicName, string eventSubscriptionName) + { + return this.Client.SystemTopicEventSubscriptions.GetDeliveryAttributes(resourceGroupName, systemTopicName, eventSubscriptionName); + } + + + #endregion + + #region Domain + public Domain GetDomain(string resourceGroupName, string domainName) + { + var domain = this.Client.Domains.Get(resourceGroupName, domainName); + return domain; + } + + public (IEnumerable, string) ListDomainsByResourceGroup(string resourceGroupName, string oDataQuery, int? top) + { + List domainsList = new List(); + IPage domainsPage = this.Client.Domains.ListByResourceGroup(resourceGroupName, oDataQuery, top); + bool isAllResultsNeeded = top == null; + string nextLink = null; + + if (domainsPage != null) + { + domainsList.AddRange(domainsPage); + nextLink = domainsPage.NextPageLink; + while (nextLink != null && isAllResultsNeeded) + { + IEnumerable newDomainsList; + (newDomainsList, nextLink) = this.ListDomainsByResourceGroupNext(nextLink); + domainsList.AddRange(newDomainsList); + } + } + + return (domainsList, nextLink); + } + + public (IEnumerable, string) ListDomainsByResourceGroupNext(string nextLink) + { + List domainsList = new List(); + string newNextLink = null; + IPage domainsPage = this.Client.Domains.ListByResourceGroupNext(nextLink); + if (domainsPage != null) + { + domainsList.AddRange(domainsPage); + newNextLink = domainsPage.NextPageLink; + } + + return (domainsList, newNextLink); + } + + public (IEnumerable, string) ListDomainsBySubscription(string oDataQuery, int? top) + { + List domainsList = new List(); + IPage domainsPage = this.Client.Domains.ListBySubscription(oDataQuery, top); + bool isAllResultsNeeded = top == null; + string nextLink = null; + + if (domainsPage != null) + { + domainsList.AddRange(domainsPage); + nextLink = domainsPage.NextPageLink; + while (nextLink != null && isAllResultsNeeded) + { + IEnumerable newDomainsList; + (newDomainsList, nextLink) = this.ListDomainBySubscriptionNext(nextLink); + domainsList.AddRange(newDomainsList); + } + } + + return (domainsList, nextLink); + } + + public (IEnumerable, string) ListDomainBySubscriptionNext(string nextLink) + { + List domainsList = new List(); + string newNextLink = null; + IPage domainsPage = this.Client.Domains.ListBySubscriptionNext(nextLink); if (domainsPage != null) { - domainsList.AddRange(domainsPage); - newNextLink = domainsPage.NextPageLink; + domainsList.AddRange(domainsPage); + newNextLink = domainsPage.NextPageLink; + } + + return (domainsList, newNextLink); + } + + public Domain CreateDomain( + string resourceGroupName, + string domainName, + string location, + Dictionary tags, + string inputSchema, + Dictionary inputMappingFields, + Dictionary inputMappingDefaultValuesDictionary, + Dictionary inboundIpRules, + string publicNetworkAccess, + string identityType, + Dictionary userAssignedIdentities, + bool disableLocalAuth, + bool autoCreateTopicWithFirstSubscription, + bool autoDeleteTopicWithLastSubscription) + { + Domain domain = new Domain(); + JsonInputSchemaMapping jsonInputMapping = null; + domain.Location = location; + + if (identityType != null) + { + IdentityInfo identityInfo = new IdentityInfo(); + identityInfo.Type = identityType; + identityInfo.UserAssignedIdentities = userAssignedIdentities; + domain.Identity = identityInfo; + } + + domain.InputSchema = inputSchema; + domain.DisableLocalAuth = disableLocalAuth; + domain.AutoCreateTopicWithFirstSubscription = autoCreateTopicWithFirstSubscription; + domain.AutoDeleteTopicWithLastSubscription = autoDeleteTopicWithLastSubscription; + + if (tags != null) + { + domain.Tags = new Dictionary(tags); + } + + if (inputMappingFields != null || inputMappingDefaultValuesDictionary != null) + { + jsonInputMapping = new JsonInputSchemaMapping(); + this.PrepareInputSchemaMappingParameters(inputMappingFields, inputMappingDefaultValuesDictionary, jsonInputMapping); + } + + domain.InputSchemaMapping = jsonInputMapping; + + domain.PublicNetworkAccess = publicNetworkAccess; + + if (inboundIpRules != null) + { + domain.InboundIpRules = new List(); + + foreach (var rule in inboundIpRules) + { + InboundIpRule ipRule = new InboundIpRule + { + IpMask = rule.Key, + Action = rule.Value + }; + + domain.InboundIpRules.Add(ipRule); + } + } + + return this.Client.Domains.CreateOrUpdate(resourceGroupName, domainName, domain); + } + + public Domain ReplaceDomain( + string resourceGroupName, + string domainName, + string location, + Dictionary tags, + Dictionary inboundIpRules, + string publicNetworkAccess) + { + var domain = new Domain(); + domain.Location = location; + + if (tags != null && tags.Any()) + { + domain.Tags = new Dictionary(tags); + } + + domain.PublicNetworkAccess = publicNetworkAccess; + + if (inboundIpRules != null && inboundIpRules.Any()) + { + domain.InboundIpRules = new List(); + + foreach (var rule in inboundIpRules) + { + InboundIpRule ipRule = new InboundIpRule + { + IpMask = rule.Key, + Action = rule.Value + }; + + domain.InboundIpRules.Add(ipRule); + } + } + + return this.Client.Domains.CreateOrUpdate(resourceGroupName, domainName, domain); + } + + public Domain UpdateDomain(string resourceGroupName, string domainName, Dictionary tags) + { + DomainUpdateParameters updateParams = new DomainUpdateParameters { Tags = tags }; + return this.Client.Domains.Update(resourceGroupName, domainName, updateParams); + } + + public void DeleteDomain(string resourceGroupName, string domainName) + { + this.Client.Domains.Delete(resourceGroupName, domainName); + } + + public DomainSharedAccessKeys GetDomainSharedAccessKeys(string resourceGroupName, string domainName) + { + return this.Client.Domains.ListSharedAccessKeys(resourceGroupName, domainName); + } + + public DomainSharedAccessKeys RegenerateDomainKey(string resourceGroupName, string domainName, string keyName) + { + return this.Client.Domains.RegenerateKey(resourceGroupName, domainName, keyName); + } + + #endregion + + #region domainTopic + + public DomainTopic CreateDomainTopic(string resourceGroupName, string domainName, string domainTopicName) + { + return this.Client.DomainTopics.CreateOrUpdate(resourceGroupName, domainName, domainTopicName); + } + + public DomainTopic ReplaceDomainTopic(string resourceGroupName, string domainName, string domainTopicName) + { + return this.Client.DomainTopics.CreateOrUpdate(resourceGroupName, domainName, domainTopicName); + } + + public void DeleteDomainTopic(string resourceGroupName, string domainName, string domainTopicName) + { + this.Client.DomainTopics.Delete(resourceGroupName, domainName, domainTopicName); + } + + public DomainTopic GetDomainTopic(string resourceGroupName, string domainName, string domainTopicName) + { + return this.Client.DomainTopics.Get(resourceGroupName, domainName, domainTopicName); + } + + public (IEnumerable, string) ListDomainTopicsByDomain(string resourceGroupName, string domainName, string oDataQuery, int? top) + { + List domainTopicsList = new List(); + IPage domainTopicsPage = this.Client.DomainTopics.ListByDomain(resourceGroupName, domainName, oDataQuery, top); + bool isAllResultsNeeded = top == null; + string nextLink = null; + if (domainTopicsPage != null) + { + domainTopicsList.AddRange(domainTopicsPage); + nextLink = domainTopicsPage.NextPageLink; + while (nextLink != null && isAllResultsNeeded) + { + IEnumerable newDomainTopicsList; + (newDomainTopicsList, nextLink) = this.ListDomainTopicsByDomainNext(nextLink); + domainTopicsList.AddRange(newDomainTopicsList); + } + } + + return (domainTopicsList, nextLink); + } + + public (IEnumerable, string) ListDomainTopicsByDomainNext(string nextLink) + { + List domianTopicsList = new List(); + string newNextLink = null; + IPage domainTopicsPage = this.Client.DomainTopics.ListByDomainNext(nextLink); + if (domainTopicsPage != null) + { + domianTopicsList.AddRange(domainTopicsPage); + newNextLink = domainTopicsPage.NextPageLink; + } + + return (domianTopicsList, newNextLink); + } + + #endregion + + #region VerifiedPartner + public VerifiedPartner GetVerifiedParter(string verifiedPartnerName) + { + var verifiedPartner = this.Client.VerifiedPartners.Get(verifiedPartnerName); + return verifiedPartner; + } + + public (IEnumerable, string) ListVerifiedPartners(string oDataQuery, int? top) + { + List verifiedPartnersList = new List(); + IPage verifiedPartnerPage = this.Client.VerifiedPartners.List(oDataQuery, top); + bool isAllResultsNeeded = top == null; + string nextLink = null; + if (verifiedPartnerPage != null) + { + verifiedPartnersList.AddRange(verifiedPartnerPage); + nextLink = verifiedPartnerPage.NextPageLink; + while (nextLink != null && isAllResultsNeeded) + { + IEnumerable newVerifiedPartnersList; + (newVerifiedPartnersList, nextLink) = this.ListVerifiedPartnerNext(nextLink); + verifiedPartnersList.AddRange(newVerifiedPartnersList); + } + } + + return (verifiedPartnersList, nextLink); + } + + public (IEnumerable, string) ListVerifiedPartnerNext(string nextLink) + { + List verifiedPartnersList = new List(); + string newNextLink = null; + IPage verifiedPartnersPage = this.Client.VerifiedPartners.ListNext(nextLink); + if (verifiedPartnersPage != null) + { + verifiedPartnersList.AddRange(verifiedPartnersPage); + newNextLink = verifiedPartnersPage.NextPageLink; + } + + return (verifiedPartnersList, newNextLink); + } + + #endregion + + #region PartnerRegistration + public PartnerRegistration CreatePartnerRegistration( + string resourceGroupName, + string partnerRegistrationName, + Dictionary tags) + { + PartnerRegistration partnerRegistrationInfo = new PartnerRegistration( + location: "global"); + + if (tags != null) + { + partnerRegistrationInfo.Tags = tags; + } + + return this.Client.PartnerRegistrations.CreateOrUpdate(resourceGroupName, partnerRegistrationName, partnerRegistrationInfo); + } + + public PartnerRegistration UpdatePartnerRegistration( + string resourceGroupName, + string partnerRegistrationName, + Dictionary tags) + { + return this.Client.PartnerRegistrations.Update(resourceGroupName, partnerRegistrationName, tags); + } + + public PartnerRegistration GetPartnerRegistration( + string resourceGroupName, + string partnerRegistrationName) + { + return this.Client.PartnerRegistrations.Get(resourceGroupName, partnerRegistrationName); + } + + public (IEnumerable, string) ListPartnerRegistrationsBySubscription(string oDataQuery, int? top) + { + List partnerRegistrationsList = new List(); + IPage partnerRegistrationPage = this.Client.PartnerRegistrations.ListBySubscription(oDataQuery, top); + bool isAllResultsNeeded = top == null; + string nextLink = null; + if (partnerRegistrationPage != null) + { + partnerRegistrationsList.AddRange(partnerRegistrationPage); + nextLink = partnerRegistrationPage.NextPageLink; + while (nextLink != null && isAllResultsNeeded) + { + IEnumerable newPartnerRegistrationsList; + (newPartnerRegistrationsList, nextLink) = this.ListPartnerRegistrationsBySubscriptionNext(nextLink); + partnerRegistrationsList.AddRange(newPartnerRegistrationsList); + } + } + + return (partnerRegistrationsList, nextLink); + } + + public (IEnumerable, string) ListPartnerRegistrationsBySubscriptionNext(string nextLink) + { + List partnerRegistrationsList = new List(); + string newNextLink = null; + IPage partnerRegistrationsPage = this.Client.PartnerRegistrations.ListBySubscriptionNext(nextLink); + if (partnerRegistrationsPage != null) + { + partnerRegistrationsList.AddRange(partnerRegistrationsPage); + newNextLink = partnerRegistrationsPage.NextPageLink; + } + + return (partnerRegistrationsList, newNextLink); + } + + public (IEnumerable, string) ListPartnerRegistrationsByResourceGroup(string resourceGroupNanme, string oDataQuery, int? top) + { + List partnerRegistrationsList = new List(); + IPage partnerRegistrationPage = this.Client.PartnerRegistrations.ListByResourceGroup(resourceGroupNanme, oDataQuery, top); + bool isAllResultsNeeded = top == null; + string nextLink = null; + if (partnerRegistrationPage != null) + { + partnerRegistrationsList.AddRange(partnerRegistrationPage); + nextLink = partnerRegistrationPage.NextPageLink; + while (nextLink != null && isAllResultsNeeded) + { + IEnumerable newPartnerRegistrationsList; + (newPartnerRegistrationsList, nextLink) = this.ListPartnerRegistrationsByResourceGroupNext(nextLink); + partnerRegistrationsList.AddRange(newPartnerRegistrationsList); + } + } + + return (partnerRegistrationsList, nextLink); + } + + public (IEnumerable, string) ListPartnerRegistrationsByResourceGroupNext(string nextLink) + { + List partnerRegistrationsList = new List(); + string newNextLink = null; + IPage partnerRegistrationsPage = this.Client.PartnerRegistrations.ListByResourceGroupNext(nextLink); + if (partnerRegistrationsPage != null) + { + partnerRegistrationsList.AddRange(partnerRegistrationsPage); + newNextLink = partnerRegistrationsPage.NextPageLink; + } + + return (partnerRegistrationsList, newNextLink); + } + + public void DeletePartnerRegistration(string resourceGroupName, string partnerRegistrationName) + { + this.Client.PartnerRegistrations.Delete(resourceGroupName, partnerRegistrationName); + } + + #endregion + + #region PartnerNamespaceKey + public PartnerNamespaceSharedAccessKeys ListPartnerNamespaceKeys(string resourceGroupName, string partnerNamespaceName) + { + return this.Client.PartnerNamespaces.ListSharedAccessKeys(resourceGroupName, partnerNamespaceName); + } + + public PartnerNamespaceSharedAccessKeys RegeneratePartnerNamespaceKey(string resourceGroupName, string partnerNamespaceName, string keyName) + { + return this.Client.PartnerNamespaces.RegenerateKey(resourceGroupName, partnerNamespaceName, keyName); + } + + #endregion + + #region Channel + public Channel CreateChannel( + string azureSubscriptionId, + string resourceGroupName, + string partnerNamespaceName, + string channelName, + string channelType, + string partnerTopicSource, + string messageForActivation, + string partnerTopicName, + string eventTypeKind, + Hashtable inlineEvents, + DateTime? expirationTimeIfNotActivatedUtc) + { + PartnerTopicInfo partnerTopicInfo = null; + if (string.Equals(channelType, "PartnerTopic", StringComparison.OrdinalIgnoreCase)) + { + partnerTopicInfo = new PartnerTopicInfo( + azureSubscriptionId: azureSubscriptionId, + resourceGroupName: resourceGroupName, + name: partnerTopicName, + source: partnerTopicSource); + + if (!string.IsNullOrEmpty(eventTypeKind) && inlineEvents != null) + { + EventTypeInfo eventTypeInfo = new EventTypeInfo(); + this.UpdateEventTypeInfoParameters(eventTypeKind, inlineEvents, eventTypeInfo); + partnerTopicInfo.EventTypeInfo = eventTypeInfo; + } + } + + Channel channelInfo = new Channel( + channelType: channelType, + partnerTopicInfo: partnerTopicInfo, + messageForActivation: messageForActivation, + expirationTimeIfNotActivatedUtc: expirationTimeIfNotActivatedUtc); + + return this.Client.Channels.CreateOrUpdate(resourceGroupName, partnerNamespaceName, channelName, channelInfo); + } + + public Channel UpdateChannel( + string resourceGroupName, + string partnerNamespaceName, + string channelName, + string eventTypeKind, + Hashtable inlineEvents, + DateTime? expirationTimeIfNotActivatedUtc) + { + // Get the existing channel to determine the channel type + Channel channel = Client.Channels.Get(resourceGroupName, partnerNamespaceName, channelName); + string channelType = channel.ChannelType; + + PartnerUpdateTopicInfo partnerTopicInfoUpdateParameters = null; + if (string.Equals(channelType, "PartnerTopic", StringComparison.OrdinalIgnoreCase)) + { + EventTypeInfo eventTypeInfo = new EventTypeInfo(); + this.UpdateEventTypeInfoParameters(eventTypeKind, inlineEvents, eventTypeInfo); + partnerTopicInfoUpdateParameters = new PartnerUpdateTopicInfo(eventTypeInfo); + } + + ChannelUpdateParameters channelUpdateParameters = new ChannelUpdateParameters( + partnerTopicInfo: partnerTopicInfoUpdateParameters, + expirationTimeIfNotActivatedUtc: expirationTimeIfNotActivatedUtc); + + this.Client.Channels.Update(resourceGroupName, partnerNamespaceName, channelName, channelUpdateParameters); + + // Channel PATCH does not return a response body, so we need to do a GET + // to return the object. + return this.Client.Channels.Get(resourceGroupName, partnerNamespaceName, channelName); + } + + public Channel GetChannel(string resourceGroupName, string partnerNamespaceName, string channelName) + { + return this.Client.Channels.Get(resourceGroupName, partnerNamespaceName, channelName); + } + + public (IEnumerable, string) ListChannelByPartnerNamespace(string resourceGroupName, string partnerNamespaceName, string oDataQuery, int? top) + { + List channelsList = new List(); + IPage channelPage = this.Client.Channels.ListByPartnerNamespace(resourceGroupName, partnerNamespaceName, oDataQuery, top); + bool isAllResultsNeeded = top == null; + string nextLink = null; + if (channelPage != null) + { + channelsList.AddRange(channelPage); + nextLink = channelPage.NextPageLink; + while (nextLink != null && isAllResultsNeeded) + { + IEnumerable newChannelsList; + (newChannelsList, nextLink) = this.ListChannelByPartnerNamespaceNext(nextLink); + channelsList.AddRange(newChannelsList); + } + } + + return (channelsList, nextLink); + } + + public (IEnumerable, string) ListChannelByPartnerNamespaceNext(string nextLink) + { + List channelsList = new List(); + string newNextLink = null; + IPage channelsPage = this.Client.Channels.ListByPartnerNamespaceNext(nextLink); + if (channelsPage != null) + { + channelsList.AddRange(channelsPage); + newNextLink = channelsPage.NextPageLink; + } + + return (channelsList, newNextLink); + } + + public void DeleteChannel(string resourceGroupName, string partnerNamespaceName, string channelName) + { + this.Client.Channels.Delete(resourceGroupName, partnerNamespaceName, channelName); + } + + #endregion + + #region PartnerConfiguration + public PartnerConfiguration AuthorizePartnerConfiguration( + string resourceGroupName, + Guid? partnerRegistrationImmutableId, + string partnerName, + DateTime? authorizationExpirationTimeInUtc) + { + if (partnerRegistrationImmutableId == null && string.IsNullOrEmpty(partnerName)) + { + throw new ArgumentException("At least one of PartnerRegistrationImmutableId and PartnerName must be provided"); + } + + Partner partnerInfo = new Partner( + partnerRegistrationImmutableId: partnerRegistrationImmutableId, + partnerName: partnerName, + authorizationExpirationTimeInUtc: authorizationExpirationTimeInUtc); + + return this.Client.PartnerConfigurations.AuthorizePartner(resourceGroupName, partnerInfo); + } + + public PartnerConfiguration UnauthorizePartnerConfiguration( + string resourceGroupName, + Guid? partnerRegistrationImmutableId, + string partnerName, + DateTime? authorizationExpirationTimeInUtc) + { + if (partnerRegistrationImmutableId == null && string.IsNullOrEmpty(partnerName)) + { + throw new ArgumentException("At least one of PartnerRegistrationImmutableId and PartnerName must be provided"); + } + + Partner partnerInfo = new Partner( + partnerRegistrationImmutableId: partnerRegistrationImmutableId, + partnerName: partnerName, + authorizationExpirationTimeInUtc: authorizationExpirationTimeInUtc); + + return this.Client.PartnerConfigurations.UnauthorizePartner(resourceGroupName, partnerInfo); + } + + + public PartnerConfiguration CreatePartnerConfiguration( + string resourceGroupName, + Hashtable[] authorizedPartners, + int? defaultMaxExpirationTimeInDays, + Dictionary tags) + { + PartnerConfiguration partnerConfigurationInfo = new PartnerConfiguration(location: "global"); + + if (tags != null) + { + partnerConfigurationInfo.Tags = tags; + } + + PartnerAuthorization partnerAuthorization = new PartnerAuthorization(); + if (defaultMaxExpirationTimeInDays != null) + { + partnerAuthorization.DefaultMaximumExpirationTimeInDays = defaultMaxExpirationTimeInDays; + } + + if (authorizedPartners != null) + { + List authorizedPartnersList = new List(); + this.UpdateAuthorizedPartnerParameters(authorizedPartners, authorizedPartnersList); + partnerAuthorization.AuthorizedPartnersList = authorizedPartnersList; + } + + partnerConfigurationInfo.PartnerAuthorization = partnerAuthorization; + return this.Client.PartnerConfigurations.CreateOrUpdate(resourceGroupName, partnerConfigurationInfo); + } + + public PartnerConfiguration UpdatePartnerConfiguration( + string resourceGroupName, + int? defaultMaxExpirationTimeInDays, + Dictionary tags) + { + PartnerConfigurationUpdateParameters partnerConfigurationUpdateParameters = new PartnerConfigurationUpdateParameters(); + + if (defaultMaxExpirationTimeInDays != null) + { + partnerConfigurationUpdateParameters.DefaultMaximumExpirationTimeInDays = defaultMaxExpirationTimeInDays; + } + + if (tags != null) + { + partnerConfigurationUpdateParameters.Tags = tags; + } + + return this.Client.PartnerConfigurations.Update(resourceGroupName, partnerConfigurationUpdateParameters); + } + + public PartnerConfiguration GetPartnerConfiguration(string resourceGroupName) + { + return this.Client.PartnerConfigurations.Get(resourceGroupName); + } + + public void DeletePartnerConfiguration(string resourceGroupName) + { + this.Client.PartnerConfigurations.Delete(resourceGroupName); + } + + //public (IEnumerable, string) ListPartnerConfigurationsByResourceGroup(string resourceGroupName) + //{ + // List partnerConfigurationsList = new List(); + // IEnumerable partnerConfigurationsEnumerable = this.Client.PartnerConfigurations.ListByResourceGroup(resourceGroupName); + // partnerConfigurationsList.AddRange(partnerConfigurationsEnumerable); + + // return (partnerConfigurationsList, null); + //} + + public (IEnumerable, string) ListPartnerConfigurationsBySubscription(string oDataQuery, int? top) + { + List partnerConfigurationsList = new List(); + IPage partnerConfigurationPage = this.Client.PartnerConfigurations.ListBySubscription(oDataQuery, top); + bool isAllResultsNeeded = top == null; + string nextLink = null; + if (partnerConfigurationPage != null) + { + partnerConfigurationsList.AddRange(partnerConfigurationPage); + nextLink = partnerConfigurationPage.NextPageLink; + while (nextLink != null && isAllResultsNeeded) + { + IEnumerable newPartnerConfigurationsList; + (newPartnerConfigurationsList, nextLink) = this.ListPartnerConfigurationNext(nextLink); + partnerConfigurationsList.AddRange(newPartnerConfigurationsList); + } + } + + return (partnerConfigurationsList, nextLink); + } + + public (IEnumerable, string) ListPartnerConfigurationNext(string nextLink) + { + List partnerConfigurationsList = new List(); + string newNextLink = null; + IPage partnerConfigurationsPage = this.Client.PartnerConfigurations.ListBySubscriptionNext(nextLink); + if (partnerConfigurationsPage != null) + { + partnerConfigurationsList.AddRange(partnerConfigurationsPage); + newNextLink = partnerConfigurationsPage.NextPageLink; + } + + return (partnerConfigurationsList, newNextLink); + } + + #endregion + + #region PartnerNamespace + public PartnerNamespace GetPartnerNamespace(string resourceGroupName, string partnerNamespaceName) + { + return this.Client.PartnerNamespaces.Get(resourceGroupName, partnerNamespaceName); + } + + public void DeletePartnerNamespace(string resourceGroupName, string partnerNamespaceName) + { + this.Client.PartnerNamespaces.Delete(resourceGroupName, partnerNamespaceName); + } + + public PartnerNamespace CreatePartnerNamespace( + string resourceGroupName, + string partnerNamespaceName, + string location, + Dictionary tags, + List privateEndpointConnections, + List inboundIpRules, + string partnerRegistrationFullyQualifiedId, + string endpoint, + string publicNetworkAccess, + bool? disableLocalAuth, + string partnerTopicRoutingMode) + { + PartnerNamespace partnerNamespaceInfo = new PartnerNamespace( + location: location, + tags: tags, + privateEndpointConnections: privateEndpointConnections, + inboundIpRules: inboundIpRules, + partnerRegistrationFullyQualifiedId: partnerRegistrationFullyQualifiedId, + endpoint: endpoint, + publicNetworkAccess: publicNetworkAccess, + disableLocalAuth: disableLocalAuth, + partnerTopicRoutingMode: partnerTopicRoutingMode); + + return this.Client.PartnerNamespaces.CreateOrUpdate(resourceGroupName, partnerNamespaceName, partnerNamespaceInfo); + } + + public PartnerNamespace UpdatePartnerNamespace( + string resourceGroupName, + string partnerNamespaceName, + Dictionary tags, + string publicNetworkAccess, + List inboundIpRules, + bool? disableLocalAuth + ) + { + PartnerNamespaceUpdateParameters partnerNamespaceUpdateParameters = new PartnerNamespaceUpdateParameters(); + partnerNamespaceUpdateParameters.Tags = tags; + partnerNamespaceUpdateParameters.InboundIpRules = inboundIpRules; + + if (!string.IsNullOrEmpty(publicNetworkAccess)) + { + partnerNamespaceUpdateParameters.PublicNetworkAccess = publicNetworkAccess; + } + + if (disableLocalAuth != null) + { + partnerNamespaceUpdateParameters.DisableLocalAuth = disableLocalAuth; + } + + return this.Client.PartnerNamespaces.Update(resourceGroupName, partnerNamespaceName, partnerNamespaceUpdateParameters); + } + + public (IEnumerable, string) ListPartnerNamespaceBySubscription(string oDataQuery, int? top) + { + List partnerNamespacesList = new List(); + IPage partnerNamespacePage = this.Client.PartnerNamespaces.ListBySubscription(oDataQuery, top); + bool isAllResultsNeeded = top == null; + string nextLink = null; + if (partnerNamespacePage != null) + { + partnerNamespacesList.AddRange(partnerNamespacePage); + nextLink = partnerNamespacePage.NextPageLink; + while (nextLink != null && isAllResultsNeeded) + { + IEnumerable newPartnerNamespacesList; + (newPartnerNamespacesList, nextLink) = this.ListPartnerNamespaceBySubscriptionNext(nextLink); + partnerNamespacesList.AddRange(newPartnerNamespacesList); + } } - return (domainsList, newNextLink); + return (partnerNamespacesList, nextLink); } - public (IEnumerable, string) ListDomainsBySubscription(string oDataQuery, int? top) + public (IEnumerable, string) ListPartnerNamespaceByResourceGroup(string resourceGroupName, string oDataQuery, int? top) { - List domainsList = new List(); - IPage domainsPage = this.Client.Domains.ListBySubscription(oDataQuery, top); + List partnerNamespacesList = new List(); + IPage partnerNamespacePage = this.Client.PartnerNamespaces.ListByResourceGroup(resourceGroupName, oDataQuery, top); bool isAllResultsNeeded = top == null; string nextLink = null; - - if (domainsPage != null) + if (partnerNamespacePage != null) { - domainsList.AddRange(domainsPage); - nextLink = domainsPage.NextPageLink; + partnerNamespacesList.AddRange(partnerNamespacePage); + nextLink = partnerNamespacePage.NextPageLink; while (nextLink != null && isAllResultsNeeded) { - IEnumerable newDomainsList; - (newDomainsList, nextLink) = this.ListDomainBySubscriptionNext(nextLink); - domainsList.AddRange(newDomainsList); + IEnumerable newPartnerNamespacesList; + (newPartnerNamespacesList, nextLink) = this.ListPartnerNamespaceBySubscriptionNext(nextLink); + partnerNamespacesList.AddRange(newPartnerNamespacesList); } } - return (domainsList, nextLink); + return (partnerNamespacesList, nextLink); } - public (IEnumerable, string) ListDomainBySubscriptionNext(string nextLink) + public (IEnumerable, string) ListPartnerNamespaceBySubscriptionNext(string nextLink) { - List domainsList = new List(); + List partnerNamespacesList = new List(); string newNextLink = null; - IPage domainsPage = this.Client.Domains.ListBySubscriptionNext(nextLink); - if (domainsPage != null) + IPage partnerNamespacesPage = this.Client.PartnerNamespaces.ListBySubscriptionNext(nextLink); + if (partnerNamespacesPage != null) { - domainsList.AddRange(domainsPage); - newNextLink = domainsPage.NextPageLink; + partnerNamespacesList.AddRange(partnerNamespacesPage); + newNextLink = partnerNamespacesPage.NextPageLink; } - return (domainsList, newNextLink); + return (partnerNamespacesList, newNextLink); } - public Domain CreateDomain( + public (IEnumerable, string) ListPartnerNamespaceByResourceGroupNext(string nextLink) + { + List partnerNamespacesList = new List(); + string newNextLink = null; + IPage partnerNamespacesPage = this.Client.PartnerNamespaces.ListByResourceGroupNext(nextLink); + if (partnerNamespacesPage != null) + { + partnerNamespacesList.AddRange(partnerNamespacesPage); + newNextLink = partnerNamespacesPage.NextPageLink; + } + + return (partnerNamespacesList, newNextLink); + } + + #endregion + + #region PartnerTopic + public PartnerTopic CreatePartnerTopic( string resourceGroupName, - string domainName, + string partnerTopicName, string location, - Dictionary tags, - string inputSchema, - Dictionary inputMappingFields, - Dictionary inputMappingDefaultValuesDictionary, - Dictionary inboundIpRules, - string publicNetworkAccess, + string source, string identityType, - Dictionary userAssignedIdentities, - bool disableLocalAuth, - bool autoCreateTopicWithFirstSubscription, - bool autoDeleteTopicWithLastSubscription) + IDictionary userAssignedIdentities, + Dictionary tags, + Guid? partnerRegistrationImmutableId, + DateTime? expirationTimeIfNotActivated, + string partnerTopicFriendlyDescription, + string messageForActivation, + string eventTypeKind, + Hashtable inlineEvents) { - Domain domain = new Domain(); - JsonInputSchemaMapping jsonInputMapping = null; - domain.Location = location; + PartnerTopic partnerTopicInfo = new PartnerTopic(location); + partnerTopicInfo.Source = source; + partnerTopicInfo.PartnerTopicFriendlyDescription = partnerTopicFriendlyDescription; + partnerTopicInfo.MessageForActivation = messageForActivation; if (identityType != null) { IdentityInfo identityInfo = new IdentityInfo(); identityInfo.Type = identityType; identityInfo.UserAssignedIdentities = userAssignedIdentities; - domain.Identity = identityInfo; + partnerTopicInfo.Identity = identityInfo; } - domain.InputSchema = inputSchema; - domain.DisableLocalAuth = disableLocalAuth; - domain.AutoCreateTopicWithFirstSubscription = autoCreateTopicWithFirstSubscription; - domain.AutoDeleteTopicWithLastSubscription = autoDeleteTopicWithLastSubscription; - if (tags != null) { - domain.Tags = new Dictionary(tags); + partnerTopicInfo.Tags = tags; } - if (inputMappingFields != null || inputMappingDefaultValuesDictionary != null) + if (partnerRegistrationImmutableId != null) { - jsonInputMapping = new JsonInputSchemaMapping(); - this.PrepareInputSchemaMappingParameters(inputMappingFields, inputMappingDefaultValuesDictionary, jsonInputMapping); + partnerTopicInfo.PartnerRegistrationImmutableId = partnerRegistrationImmutableId; } - domain.InputSchemaMapping = jsonInputMapping; - - domain.PublicNetworkAccess = publicNetworkAccess; - - if (inboundIpRules != null) + if (expirationTimeIfNotActivated != null) { - domain.InboundIpRules = new List(); - - foreach (var rule in inboundIpRules) - { - InboundIpRule ipRule = new InboundIpRule - { - IpMask = rule.Key, - Action = rule.Value - }; + partnerTopicInfo.ExpirationTimeIfNotActivatedUtc = expirationTimeIfNotActivated; + } - domain.InboundIpRules.Add(ipRule); - } + if (!string.IsNullOrEmpty(eventTypeKind)) + { + EventTypeInfo eventTypeInfo = new EventTypeInfo(); + this.UpdateEventTypeInfoParameters(eventTypeKind, inlineEvents, eventTypeInfo); + partnerTopicInfo.EventTypeInfo = eventTypeInfo; } - return this.Client.Domains.CreateOrUpdate(resourceGroupName, domainName, domain); + return this.Client.PartnerTopics.CreateOrUpdate(resourceGroupName, partnerTopicName, partnerTopicInfo); } - public Domain ReplaceDomain( + public PartnerTopic UpdatePartnerTopic( string resourceGroupName, - string domainName, - string location, - Dictionary tags, - Dictionary inboundIpRules, - string publicNetworkAccess) + string partnerTopicName, + string identityType, + IDictionary userAssignedIdentities, + Dictionary tags) { - var domain = new Domain(); - domain.Location = location; - - if (tags != null && tags.Any()) - { - domain.Tags = new Dictionary(tags); - } - - domain.PublicNetworkAccess = publicNetworkAccess; - - if (inboundIpRules != null && inboundIpRules.Any()) + IdentityInfo identityInfo = null; + if (identityType != null) { - domain.InboundIpRules = new List(); - - foreach (var rule in inboundIpRules) - { - InboundIpRule ipRule = new InboundIpRule - { - IpMask = rule.Key, - Action = rule.Value - }; - - domain.InboundIpRules.Add(ipRule); - } + identityInfo.Type = identityType; + identityInfo.UserAssignedIdentities = userAssignedIdentities; } - return this.Client.Domains.CreateOrUpdate(resourceGroupName, domainName, domain); - } - - public Domain UpdateDomain(string resourceGroupName, string domainName, Dictionary tags) - { - DomainUpdateParameters updateParams = new DomainUpdateParameters { Tags = tags }; - return this.Client.Domains.Update(resourceGroupName, domainName, updateParams); - } - - public void DeleteDomain(string resourceGroupName, string domainName) - { - this.Client.Domains.Delete(resourceGroupName, domainName); - } - - public DomainSharedAccessKeys GetDomainSharedAccessKeys(string resourceGroupName, string domainName) - { - return this.Client.Domains.ListSharedAccessKeys(resourceGroupName, domainName); + PartnerTopicUpdateParameters partnerTopicUpdateParameters = new PartnerTopicUpdateParameters(tags, identityInfo); + return this.Client.PartnerTopics.Update(resourceGroupName, partnerTopicName, partnerTopicUpdateParameters); } - public DomainSharedAccessKeys RegenerateDomainKey(string resourceGroupName, string domainName, string keyName) + public PartnerTopic GetPartnerTopic(string resourceGroupName, string partnerTopicName) { - return this.Client.Domains.RegenerateKey(resourceGroupName, domainName, keyName); + return this.Client.PartnerTopics.Get(resourceGroupName, partnerTopicName); } - #endregion - - #region domainTopic - - public DomainTopic CreateDomainTopic(string resourceGroupName, string domainName, string domainTopicName) + public PartnerTopic ActivatePartnerTopic(string resourceGroupName, string partnerTopicName) { - return this.Client.DomainTopics.CreateOrUpdate(resourceGroupName, domainName, domainTopicName); + return this.Client.PartnerTopics.Activate(resourceGroupName, partnerTopicName); } - public DomainTopic ReplaceDomainTopic(string resourceGroupName, string domainName, string domainTopicName) + public void DeletePartnerTopic(string resourceGroupName, string partnerTopicName) { - return this.Client.DomainTopics.CreateOrUpdate(resourceGroupName, domainName, domainTopicName); + this.Client.PartnerTopics.Delete(resourceGroupName, partnerTopicName); } - public void DeleteDomainTopic(string resourceGroupName, string domainName, string domainTopicName) + public (IEnumerable, string) ListPartnerTopicBySubscription(string oDataQuery, int? top) { - this.Client.DomainTopics.Delete(resourceGroupName, domainName, domainTopicName); - } + List partnerTopicsList = new List(); + IPage partnerTopicPage = this.Client.PartnerTopics.ListBySubscription(oDataQuery, top); + bool isAllResultsNeeded = top == null; + string nextLink = null; + if (partnerTopicPage != null) + { + partnerTopicsList.AddRange(partnerTopicPage); + nextLink = partnerTopicPage.NextPageLink; + while (nextLink != null && isAllResultsNeeded) + { + IEnumerable newPartnerTopicsList; + (newPartnerTopicsList, nextLink) = this.ListPartnerTopicBySubscriptionNext(nextLink); + partnerTopicsList.AddRange(newPartnerTopicsList); + } + } - public DomainTopic GetDomainTopic(string resourceGroupName, string domainName, string domainTopicName) - { - return this.Client.DomainTopics.Get(resourceGroupName, domainName, domainTopicName); + return (partnerTopicsList, nextLink); } - public (IEnumerable, string) ListDomainTopicsByDomain(string resourceGroupName, string domainName, string oDataQuery, int? top) + public (IEnumerable, string) ListPartnerTopicByResourceGroup(string resourceGroupName, string oDataQuery, int? top) { - List domainTopicsList = new List(); - IPage domainTopicsPage = this.Client.DomainTopics.ListByDomain(resourceGroupName, domainName, oDataQuery, top); + List partnerTopicsList = new List(); + IPage partnerTopicPage = this.Client.PartnerTopics.ListByResourceGroup(resourceGroupName, oDataQuery, top); bool isAllResultsNeeded = top == null; string nextLink = null; - if (domainTopicsPage != null) + if (partnerTopicPage != null) { - domainTopicsList.AddRange(domainTopicsPage); - nextLink = domainTopicsPage.NextPageLink; + partnerTopicsList.AddRange(partnerTopicPage); + nextLink = partnerTopicPage.NextPageLink; while (nextLink != null && isAllResultsNeeded) { - IEnumerable newDomainTopicsList; - (newDomainTopicsList, nextLink) = this.ListDomainTopicsByDomainNext(nextLink); - domainTopicsList.AddRange(newDomainTopicsList); + IEnumerable newPartnerTopicsList; + (newPartnerTopicsList, nextLink) = this.ListPartnerTopicBySubscriptionNext(nextLink); + partnerTopicsList.AddRange(newPartnerTopicsList); } } - return (domainTopicsList, nextLink); + return (partnerTopicsList, nextLink); } - public (IEnumerable, string) ListDomainTopicsByDomainNext(string nextLink) + public (IEnumerable, string) ListPartnerTopicBySubscriptionNext(string nextLink) { - List domianTopicsList = new List(); + List partnerTopicsList = new List(); string newNextLink = null; - IPage domainTopicsPage = this.Client.DomainTopics.ListByDomainNext(nextLink); - if (domainTopicsPage != null) + IPage partnerTopicsPage = this.Client.PartnerTopics.ListBySubscriptionNext(nextLink); + if (partnerTopicsPage != null) { - domianTopicsList.AddRange(domainTopicsPage); - newNextLink = domainTopicsPage.NextPageLink; + partnerTopicsList.AddRange(partnerTopicsPage); + newNextLink = partnerTopicsPage.NextPageLink; } - return (domianTopicsList, newNextLink); + return (partnerTopicsList, newNextLink); } - #endregion + public (IEnumerable, string) ListPartnerTopicByResourceGroupNext(string nextLink) + { + List partnerTopicsList = new List(); + string newNextLink = null; + IPage partnerTopicsPage = this.Client.PartnerTopics.ListByResourceGroupNext(nextLink); + if (partnerTopicsPage != null) + { + partnerTopicsList.AddRange(partnerTopicsPage); + newNextLink = partnerTopicsPage.NextPageLink; + } + + return (partnerTopicsList, newNextLink); + } + #endregion public EventSubscription CreateEventSubscription( string scope, @@ -1694,6 +3686,61 @@ public DeliveryAttributeListResult GetAzFullUrlForSystemTopicEventSubscription(s } } + public List CreateInboundIpRuleList(PSInboundIpRule[] psInboundIpRules) + { + List inboundIpRulesList = null; + + if (psInboundIpRules != null) + { + inboundIpRulesList = new List(); + + foreach (PSInboundIpRule psInboundIpRule in psInboundIpRules) + { + InboundIpRule inboundIpRule = new InboundIpRule(psInboundIpRule.IpMask, psInboundIpRule.Action); + inboundIpRulesList.Add(inboundIpRule); + } + } + + return inboundIpRulesList; + } + + public List CreatePrivateEndpointConnectionList(PSPrivateEndpointConnection[] psPrivateEndpointConnections) + { + List privateEndpointConnectionsList = null; + + if (psPrivateEndpointConnections != null) + { + privateEndpointConnectionsList = new List(); + + foreach (PSPrivateEndpointConnection psPrivateEndpointConnection in psPrivateEndpointConnections) + { + PrivateEndpoint privateEndpoint = null; + ConnectionState connectionState = null; + if (psPrivateEndpointConnection.PrivateEndpoint != null) + { + privateEndpoint = new PrivateEndpoint(psPrivateEndpointConnection.PrivateEndpoint.Id); + } + + if (psPrivateEndpointConnection.PrivateLinkServiceConnectionState != null) + { + connectionState = new ConnectionState( + psPrivateEndpointConnection.PrivateLinkServiceConnectionState.Status, + psPrivateEndpointConnection.PrivateLinkServiceConnectionState.Description, + psPrivateEndpointConnection.PrivateLinkServiceConnectionState.ActionsRequired); + } + + PrivateEndpointConnection privateEndpointConnection = new PrivateEndpointConnection( + privateEndpoint: privateEndpoint, + groupIds: psPrivateEndpointConnection.GroupIds, + privateLinkServiceConnectionState: connectionState); + + privateEndpointConnectionsList.Add(privateEndpointConnection); + } + } + + return privateEndpointConnectionsList; + } + void ValidateSubscription(string providedSubscriptionId, string subscriptionIdFromContext) { if (!string.Equals(subscriptionIdFromContext, providedSubscriptionId, StringComparison.OrdinalIgnoreCase)) @@ -1854,6 +3901,108 @@ bool IsValueRequired(string operatorValue) return !NoValueOperators.Exists(o => string.Equals(o, operatorValue, StringComparison.OrdinalIgnoreCase)); } + void UpdatePrivateEndpointConnectionParameters(Hashtable[] privateEndpointConnections, List privateEndpointConnectionsList) + { + for (int i = 0; i < privateEndpointConnections.Count(); i++) + { + // Validate entries + PrivateEndpointConnection privateEndpointConnection = new PrivateEndpointConnection(); + if (privateEndpointConnections[i].ContainsKey("groupIds")) + { + privateEndpointConnection.GroupIds = (List)privateEndpointConnections[i]["groupIds"]; + } + + } + } + + void UpdateEventTypeInfoParameters(string eventTypeKind, Hashtable InlineEvents, EventTypeInfo eventTypeInfo) + { + eventTypeInfo.Kind = eventTypeKind; + foreach (DictionaryEntry inlineEvent in InlineEvents) + { + Hashtable propertiesHashtable = (Hashtable)inlineEvent.Value; + InlineEventProperties inlineEventProperties = new InlineEventProperties(); + string inlineEventName = (string)inlineEvent.Key; + int validatedEntries = 0; + + if (propertiesHashtable.Count > 4) + { + throw new ArgumentException($"Invalid Inline Event parameter: too many entries for inline event {inlineEventName}"); + } + + if (propertiesHashtable.ContainsKey("description")) + { + inlineEventProperties.Description = (string)propertiesHashtable["description"]; + validatedEntries++; + } + + if (propertiesHashtable.ContainsKey("displayName")) + { + inlineEventProperties.DisplayName = (string)propertiesHashtable["displayName"]; + validatedEntries++; + } + + if (propertiesHashtable.ContainsKey("documentationUrl")) + { + inlineEventProperties.DocumentationUrl = (string)propertiesHashtable["documentationUrl"]; + validatedEntries++; + } + + if (propertiesHashtable.ContainsKey("dataSchemaUrl")) + { + inlineEventProperties.DataSchemaUrl = (string)propertiesHashtable["dataSchemaUrl"]; + validatedEntries++; + } + + if (propertiesHashtable.Count != validatedEntries) + { + throw new ArgumentException($"Invalid Inline Event parameter: unsupported entry for inline event {inlineEventName}"); + } + + eventTypeInfo.InlineEventTypes[inlineEventName] = inlineEventProperties; + } + } + + void UpdateAuthorizedPartnerParameters(Hashtable[] authorizedPartners, List authorizedPartnersList) + { + for (int i = 0; i < authorizedPartners.Count(); i++) + { + // Validate entries + int validatedEntries = 0; + Partner authorizedPartner = new Partner(); + if (authorizedPartners[i].Count < 1 || authorizedPartners[i].Count > 3) + { + throw new ArgumentException($"Invalid Authorized Partner parameter: Unexpected number of entries for authorized partner #{i + 1}"); + } + + if (authorizedPartners[i].ContainsKey("partnerName")) + { + authorizedPartner.PartnerName = (string)authorizedPartners[i]["partnerName"]; + validatedEntries++; + } + + if (authorizedPartners[i].ContainsKey("partnerRegistrationImmutableId")) + { + authorizedPartner.PartnerRegistrationImmutableId = (Guid)authorizedPartners[i]["partnerRegistrationImmutableId"]; + validatedEntries++; + } + + if (authorizedPartners[i].ContainsKey("authorizationExpirationTimeInUtc")) + { + authorizedPartner.AuthorizationExpirationTimeInUtc = (DateTime)authorizedPartners[i]["authorizationExpirationTimeInUtc"]; + validatedEntries++; + } + + // Check for any hashtable entries that didn't match what we were looking for + if (validatedEntries != authorizedPartners[i].Count) + { + throw new Exception($"Invalid Authorized Partner parameter: unsupported entry for authorized partner #{i + 1}"); + } + + authorizedPartnersList.Add(authorizedPartner); + } + } + void UpdatedAdvancedFilterParameters(Hashtable[] advancedFilter, EventSubscriptionFilter filter) { filter.AdvancedFilters = new List(); diff --git a/src/EventGrid/EventGrid/Utilities/EventGridConstants.cs b/src/EventGrid/EventGrid/Utilities/EventGridConstants.cs index b665bb487129..45a1daffd2c3 100644 --- a/src/EventGrid/EventGrid/Utilities/EventGridConstants.cs +++ b/src/EventGrid/EventGrid/Utilities/EventGridConstants.cs @@ -86,7 +86,49 @@ class EventGridConstants public const string DomainResourceIdHelp = "Resource Identifier representing the Event Grid Domain."; public const string DomainTopicResourceIdHelp = "Resource Identifier representing the Event Grid Domain Topic."; public const string DomainOrDomainTopicResourceIdHelp = "Resource Identifier representing the Event Grid Domain or Grid Domain Topic."; - + public const string VerifiedPartnerResourceIdHelp = "Resource Idenitifier representing the Event Grid Verified Partner."; + public const string PartnerConfigurationResourceIdHelp = "Resource Idenitifier representing the Event Grid Partner Configuration."; + public const string PartnerRegistrationResourceIdHelp = "Resource Idenitifier representing the Event Grid Partner Registration."; + public const string PartnerTopicResourceIdHelp = "Resource Idenitifier representing the Event Grid Partner Topic."; + public const string PartnerNamespaceResourceIdHelp = "Resource Idenitifier representing the Event Grid Partner Namespace."; + public const string PartnerDestinationResourceIdHelp = "Resource Idenitifier representing the Event Grid Partner Destination."; + public const string ChannelResourceIdHelp = "Resource Idenitifier representing the Event Grid Channel."; + public const string EventSubscriptionResourceIdHelp = "Resource Identifier representing the Event Grid Event Subscription."; + + public const string PartnerConfigurationInputObjectHelp = "PartnerConfiguration object."; + public const string PartnerRegistrationInputObjectHelp = "PartnerRegistration object"; + public const string PartnerTopicInputObjectHelp = "PartnerTopic object."; + public const string PartnerNamespaceInputObjectHelp = "PartnerNamespace object"; + public const string ChannelInputObjectHelp = "Channel object"; + + public const string PartnerRegistrationNameHelp = "Event Grid partner registration name."; + public const string PartnerTopicNameHelp = "Event Grid partner topic name."; + public const string PartnerNameHelp = "Parter name."; + public const string PartnerNamespaceNameHelp = "Event Grid partner namespace name."; + public const string PartnerNamespaceLocationHelp = "Location of the partner namespace."; + public const string PartnerNamespaceKeyNameHelp = "The name of the shared access key for the partner namespace. Either key1 or key2."; + public const string ChannelNameHelp = "The name of the Event Grid channel."; + + public const string PartnerRegistrationImmutableIdHelp = "Immutable id of the corresponding partner registration"; + public const string AuthorizationExpirationTimeHelp = "Expiration time of the partner authorization. If this timer expires, any request from this partner to create, update or delete resources in subscriber's context will fail. " + + "If specified, the allowed values are between 1 to the value of defaultMaximumExpirationTimeInDays specified in PartnerConfiguration. " + + "If not specified, the default value will be the value of defaultMaximumExpirationTimeInDays specified in PartnerConfiguration or 7 if this value is not specified."; + public const string MaxExpirationTimeInDaysHelp = "Expiration time in days used to validate the authorization expiration time for each authorized partner. If this parameter is not specified, the default is 7 days. Otherwise, allowed values are between 1 and 365 days."; + public const string AuthorizedPartnersHelp = "Array of HashTables where each HashTable is the details of an authorized partner. Each HashTable has the following key-value info: partnerName, partnerRegistrationImmutableId, and authorizationExpirationTimeInUtc. " + + "At least one key is required. The partnerName is a String, partnerRegistrationImmutableId is a Guid, and authorizationExpirationTimeInUtc is a DateTime."; + public const string PrivateEndpointConnectionsHelp = "List of PSPrivateEndointConnection representing information about the private endpoint connections."; + public const string PSInboundIpRuleHelp = "Array of PSInboundIpRule which represents list of inbound IP rules. Each rule specifies the IP Address in CIDR notation e.g., 10.0.0.0/8 along with the corresponding Action to be performed based on the match or no match of the IpMask. Possible Action values include Allow only"; + public const string PartnerNamespaceEndpointHelp = "Endpoint for the partner namespace"; + public const string PartnerRegistrationFullyQualifiedIdHelp = "Fully qualified ARM Id of the partner registration that should be associated with this partner namespace. This takes the following format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerRegistrations/{partnerRegistrationName}."; + public const string PartnerTopicRoutingModeHelp = "Determines if events published to this partner namespace should use the source attribute in the event payload or use the channel name in the header when matching to the partner topic. If none is specified, source attribute routing will be used to match the partner topic. Possible values include: 'SourceEventAttribute', 'ChannelNameHeader'"; + public const string ExpirationTimeIfNotActivatedHelp = "Expiration time of the partner topic. If this timer expires while the partner topic is still never activated, the partner topic and corresponding event channel are deleted."; + public const string MessageForActivationHelp = "Context or helpful message that can be used during the approval process by the subscriber."; + public const string EventTypeKindHelp = "The kind of event type used. Possible values include: 'Inline'"; + public const string InlineEventHelp = "Hashtable representing information on inline events. The inline event keys are of type string which represents the name of the event." + + "The inline event values are Hashtables containing the optional keys description, displayName, documentationUrl, and dataSchemaUrl which define the information about the inline event."; + public const string ChannelTypeHelp = "The type of the event channel which represents the direction flow of events. Possible values include: 'PartnerTopic'"; + public const string PartnerTopicSourceHelp = "Source information provided by the publisher to determine the scope or context from which the events are originating."; + public const string EventSubscriptionFullUrlHelp = "Include the full endpoint URL of the event subscription destination."; public const string EventSubscriptionFullUrlInResponseHelp = "If specified, include the full endpoint URL of the event subscription destination in the response."; diff --git a/src/EventGrid/EventGrid/Utilities/EventGridUtils.cs b/src/EventGrid/EventGrid/Utilities/EventGridUtils.cs index 56e6a5f352bd..460680c1b338 100644 --- a/src/EventGrid/EventGrid/Utilities/EventGridUtils.cs +++ b/src/EventGrid/EventGrid/Utilities/EventGridUtils.cs @@ -93,6 +93,89 @@ public static void GetResourceGroupNameAndDomainNameAndDomainTopicName( } } + public static void GetResourceGroupNameAndTopicNameAndEventSubscriptionName( + string resourceId, + out string resourceGroupName, + out string topicName, + out string eventSubscriptionName) + { + if (string.IsNullOrEmpty(resourceId)) + { + throw new ArgumentNullException(nameof(resourceId)); + } + + // ResourceID should be in the following format: + // /subscriptions/{subid}/resourceGroups/{rg}/providers/Microsoft.EventGrid/topics/topic1/eventSubscriptions/eventSub1 + string[] tokens = resourceId.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries); + if (tokens.Length != 10) + { + throw new Exception($"ResourceId {resourceId} not in the expected format"); + } + + resourceGroupName = tokens[3]; + topicName = tokens[7]; + eventSubscriptionName = tokens[9]; + } + + public static void GetResourceGroupNameAndDomainNameAndEventSubscriptionName(string resourceId, out string resourceGroupName, out string domainName, out string eventSubscriptionName) + { + if (string.IsNullOrEmpty(resourceId)) + { + throw new ArgumentNullException(nameof(resourceId)); + } + + // ResourceID should be in the following format: + // /subscriptions/{subid}/resourceGroups/{rg}/providers/Microsoft.EventGrid/domains/domain1/eventSubscriptions/eventSub1 + string[] tokens = resourceId.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries); + if (tokens.Length != 10) + { + throw new Exception($"ResourceId {resourceId} not in the expected format"); + } + + resourceGroupName = tokens[3]; + domainName = tokens[7]; + eventSubscriptionName= tokens[9]; + } + + public static void GetResourceGroupNameAndDomainNameAndDomainTopicNameAndEventSubscriptionName( + string resourceId, + out string resourceGroupName, + out string domainName, + out string domainTopicName, + out string eventSubscriptionName) + { + resourceGroupName = string.Empty; + domainName = string.Empty; + domainTopicName = string.Empty; + eventSubscriptionName = string.Empty; + + if (string.IsNullOrEmpty(resourceId)) + { + throw new ArgumentNullException(nameof(resourceId)); + } + + // ResourceID should be in the following format: + // /subscriptions/{subid}/resourceGroups/{rg}/providers/Microsoft.EventGrid/domains/domain1/topics/topic1/eventSubscriptions/eventSub1 + string[] tokens = resourceId.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries); + if (tokens.Length != 8 && tokens.Length != 10 && tokens.Length != 12) + { + throw new Exception($"ResourceId {resourceId} not in the expected format"); + } + + resourceGroupName = tokens[3]; + domainName = tokens[7]; + + if (tokens.Length == 10) + { + domainTopicName = tokens[9]; + } + + if (tokens.Length == 12) + { + eventSubscriptionName = tokens[11]; + } + } + public static string GetScope(string subscriptionId, string resourceGroupName, string topicName, string domainName, string domainTopicName) { if (string.IsNullOrEmpty(subscriptionId)) @@ -135,6 +218,17 @@ public static string GetScope(string subscriptionId, string resourceGroupName, s return scope; } + public static string ParsePartnerNamespaceNameFromId(string resourceId) + { + if (!string.IsNullOrEmpty(resourceId)) + { + string[] tokens = resourceId.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries); + return tokens[5]; + } + + return null; + } + public static string ParseResourceGroupFromId(string resourceId) { if (!string.IsNullOrEmpty(resourceId)) diff --git a/src/EventGrid/EventGrid/VerifiedPartner/GetAzureEventGridVerifiedPartner.cs b/src/EventGrid/EventGrid/VerifiedPartner/GetAzureEventGridVerifiedPartner.cs new file mode 100644 index 000000000000..bebc1cacb004 --- /dev/null +++ b/src/EventGrid/EventGrid/VerifiedPartner/GetAzureEventGridVerifiedPartner.cs @@ -0,0 +1,114 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections.Generic; +using System.Text; +using System.Management.Automation; +using Microsoft.Azure.Commands.EventGrid.Models; +using Microsoft.Azure.Management.EventGrid.Models; +using Microsoft.Azure.Commands.EventGrid.Utilities; + +namespace Microsoft.Azure.Commands.EventGrid +{ + /// + /// 'Get-AzureEventGridVerifiedPartner' Cmdlet gives the details of a / List of EventGrid verified partner(s) + /// If VerifiedPartner name provided, a single VerifiedPartner details will be returned + /// If VerifiedPartner name not provided, list of VerifiedPartner will be returned + /// + + [Cmdlet( + "Get", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventGridVerifiedPartner", + DefaultParameterSetName = VerifiedPartnerNameParameterSet), + OutputType(typeof(PSVerifiedPartnerListInstance), typeof(PSVerifiedPartner))] + + + public class GetAzureEventGridVerifiedPartner : AzureEventGridCmdletBase + { + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "EventGrid Verified Partner Name.", + ParameterSetName = VerifiedPartnerNameParameterSet)] + public string Name { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.ODataQueryHelp, + ParameterSetName = VerifiedPartnerNameParameterSet)] + [ValidateNotNullOrEmpty] + public string ODataQuery { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.TopHelp, + ParameterSetName = VerifiedPartnerNameParameterSet)] + [ValidateRange(1, 100)] + public int Top { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = EventGridConstants.NextLinkHelp, + ParameterSetName = NextLinkParameterSet)] + [ValidateNotNullOrEmpty] + public string NextLink { get; set; } + + public override void ExecuteCmdlet() + { + string verifiedPartnerName = string.Empty; + IEnumerable verifiedPartnersList; + string newNextLink = null; + int? providedTop = null; + + if (MyInvocation.BoundParameters.ContainsKey(nameof(this.Top))) + { + providedTop = this.Top; + } + + if (!string.IsNullOrEmpty(this.Name)) + { + verifiedPartnerName = this.Name; + } + + if (!string.IsNullOrEmpty(this.NextLink)) + { + // Get Next page of verified partners. Get the proper next API to be called based on the nextLink. + Uri uri = new Uri(this.NextLink); + string path = uri.AbsolutePath; + + (verifiedPartnersList, newNextLink) = this.Client.ListVerifiedPartnerNext(this.NextLink); + PSVerifiedPartnerListPagedInstance psVerifiedPartnerListPagedInstance = new PSVerifiedPartnerListPagedInstance(verifiedPartnersList, newNextLink); + this.WriteObject(psVerifiedPartnerListPagedInstance, true); + } + else if (!string.IsNullOrEmpty(verifiedPartnerName)) + { + // Get details of a specific verified partner. + VerifiedPartner verifiedPartner = this.Client.GetVerifiedParter(verifiedPartnerName); + PSVerifiedPartner psVerifiedPartner = new PSVerifiedPartner(verifiedPartner); + this.WriteObject(psVerifiedPartner); + } + else if (string.IsNullOrEmpty(verifiedPartnerName)) + { + // List all verified partners in the current tenant + (verifiedPartnersList, newNextLink) = this.Client.ListVerifiedPartners(this.ODataQuery, providedTop); + PSVerifiedPartnerListPagedInstance psVerifiedPartnerListPagedInstance = new PSVerifiedPartnerListPagedInstance(verifiedPartnersList, newNextLink); + this.WriteObject(psVerifiedPartnerListPagedInstance, true); + } + } + } +} diff --git a/src/EventGrid/EventGrid/help/Enable-AzEventGridPartnerTopic.md b/src/EventGrid/EventGrid/help/Enable-AzEventGridPartnerTopic.md new file mode 100644 index 000000000000..62650fa8ec6b --- /dev/null +++ b/src/EventGrid/EventGrid/help/Enable-AzEventGridPartnerTopic.md @@ -0,0 +1,147 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml +Module Name: Az.EventGrid +online version: +schema: 2.0.0 +--- + +# Enable-AzEventGridPartnerTopic + +## SYNOPSIS +Enables an Event Grid partner topic. + +## SYNTAX + +### PartnerTopicNameParameterSet (Default) +``` +Enable-AzEventGridPartnerTopic [-ResourceGroupName] [-Name] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### PartnerTopicInputObjectParameterSet +``` +Enable-AzEventGridPartnerTopic [-InputObject] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The Enable-AzEventGridPartnerTopic cmdlets enables a specific Event Grid partner topic. + +## EXAMPLES + +### Example 1 +Enables the Event Grid partner topic \`PartnerTopic1\` in resource group \`MyResourceGroupName\`. + +```powershell +Enable-AzEventGridPartnerTopic -ResourceGroup MyResourceGroupName -Name PartnerTopic1 +``` + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +PartnerTopic object. + +```yaml +Type: PSPartnerTopic +Parameter Sets: PartnerTopicInputObjectParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Name +Event Grid partner topic name. + +```yaml +Type: String +Parameter Sets: PartnerTopicNameParameterSet +Aliases: PartnerTopicName + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: String +Parameter Sets: PartnerTopicNameParameterSet +Aliases: ResourceGroup + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.EventGrid.Models.PSPartnerTopic + +## OUTPUTS + +### Microsoft.Azure.Commands.EventGrid.Models.PSPartnerTopic + +## NOTES + +## RELATED LINKS diff --git a/src/EventGrid/EventGrid/help/Get-AzEventGridChannel.md b/src/EventGrid/EventGrid/help/Get-AzEventGridChannel.md new file mode 100644 index 000000000000..3556b407bb45 --- /dev/null +++ b/src/EventGrid/EventGrid/help/Get-AzEventGridChannel.md @@ -0,0 +1,184 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml +Module Name: Az.EventGrid +online version: +schema: 2.0.0 +--- + +# Get-AzEventGridChannel + +## SYNOPSIS +Gets the details of an Event Grid channel or gets a list of all Event Grid channels in a given partner namespace. + +## SYNTAX + +### ChannelListByPartnerNamespaceParameterSet (Default) +``` +Get-AzEventGridChannel -ResourceGroupName -PartnerNamespaceName [-ODataQuery ] + [-Top ] [-DefaultProfile ] [] +``` + +### ChannelNameParameterSet +``` +Get-AzEventGridChannel -ResourceGroupName -PartnerNamespaceName -Name + [-DefaultProfile ] [] +``` + +### NextLinkParameterSet +``` +Get-AzEventGridChannel -NextLink [-DefaultProfile ] [] +``` + +## DESCRIPTION +The Get-AzEventGridChannel cmdlet gets either the detauls of a specified Event Grid channel, or a list of all Event Grid channels in the specified Event Grid partner namespace. +If the channel name is provided, the details of a single Event Grid channel is returned. +If the channel name is not provided, a list of domains is returned. The number of elements returned in this list is controlled by the Top parameter. If the Top value is not specified or $null, the list will contain all the domains items returned at once. Otherwise, Top will indicate the maximum number of elements to be returned in the list. +If more channels are still available, the value in NextLink should be used in the next call to get the next page of channels. +Finally, ODataQuery parameter is used to perform filtering for the search results. The filtering query follows OData syntax using the Name property only. The supported operations include: CONTAINS, eq (for equal), ne (for not equal), AND, OR and NOT. + +## EXAMPLES + +### Example 1 +```powershell +Get-AzEventGridChannel -ResourceGroup MyResourceGroupName -PartnerNamespaceName PartnerNamespace1 -Name Channel1 +``` + +Gets the details of Event Grid channel \`Channel1\` in partner namespace \`PartnerNameSpace1\` in resource group \`MyResourceGroupName\`. + +### Example 2 +```powershell +Get-AzEventGridChannel -ResourceGroup MyResourceGroupName -PartnerNamespaceName PartnerNameSpace1 +``` + +Lists the details of Event Grid channels in partner namespace \`PartnerNameSpace1\` in resource group \`MyResourceGroupName\`. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the Event Grid channel. + +```yaml +Type: String +Parameter Sets: ChannelNameParameterSet +Aliases: ChannelName + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -NextLink +The link for the next page of resources to be obtained. +This value is obtained with the first Get-AzEventGrid cmdlet call when more resources are still available to be queried. + +```yaml +Type: String +Parameter Sets: NextLinkParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ODataQuery +The OData query used for filtering the list results. +Filtering is currently allowed on the Name property only.The supported operations include: CONTAINS, eq (for equal), ne (for not equal), AND, OR and NOT. + +```yaml +Type: String +Parameter Sets: ChannelListByPartnerNamespaceParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PartnerNamespaceName +Event Grid partner namespace name. + +```yaml +Type: String +Parameter Sets: ChannelListByPartnerNamespaceParameterSet, ChannelNameParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: String +Parameter Sets: ChannelListByPartnerNamespaceParameterSet, ChannelNameParameterSet +Aliases: ResourceGroup + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Top +The maximum number of resources to be obtained. +Valid value is between 1 and 100. +If top value is specified and more results are still available, the result will contain a link to the next page to be queried in NextLink. +If the Top value is not specified, the full list of resources will be returned at once. + +```yaml +Type: Int32 +Parameter Sets: ChannelListByPartnerNamespaceParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] + +## OUTPUTS + +### Microsoft.Azure.Commands.EventGrid.Models.PSChannelListInstance + +### Microsoft.Azure.Commands.EventGrid.Models.PSChannel + +## NOTES + +## RELATED LINKS diff --git a/src/EventGrid/EventGrid/help/Get-AzEventGridFullUrlForPartnerTopicEventSubscription.md b/src/EventGrid/EventGrid/help/Get-AzEventGridFullUrlForPartnerTopicEventSubscription.md new file mode 100644 index 000000000000..776450af0ab3 --- /dev/null +++ b/src/EventGrid/EventGrid/help/Get-AzEventGridFullUrlForPartnerTopicEventSubscription.md @@ -0,0 +1,130 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml +Module Name: Az.EventGrid +online version: +schema: 2.0.0 +--- + +# Get-AzEventGridFullUrlForPartnerTopicEventSubscription + +## SYNOPSIS +Gets the full URL for partner topic event subscription + +## SYNTAX + +### PartnerTopicEventSubscriptionParameterSet (Default) +``` +Get-AzEventGridFullUrlForPartnerTopicEventSubscription -Name -ResourceGroupName + -PartnerTopicName [-DefaultProfile ] [] +``` + +### ResourceIdPartnerTopicEventSubscriptionParameterSet +``` +Get-AzEventGridFullUrlForPartnerTopicEventSubscription [-ResourceId] + [-DefaultProfile ] [] +``` + +## DESCRIPTION +Get the full endpoint URL if it is a webhook based event subscription. + +## EXAMPLES + +### Example 1 +```powershell +Get-AzEventGridFullUrlForPartnerTopicEventSubscription -ResourceGroupName MyResourceGroupName -PartnerTopicName Topic1 -EventSubscriptionName EventSubscription1 +``` + +Gets the full endpoint URL for event subscription \`EventSubscription1\` created for partner topic \`Topic1\` in resource group \`MyResourceGroupName\`. + + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +EventGrid event subscription name. + +```yaml +Type: String +Parameter Sets: PartnerTopicEventSubscriptionParameterSet +Aliases: EventSubscriptionName + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PartnerTopicName +Event Grid partner topic name. + +```yaml +Type: String +Parameter Sets: PartnerTopicEventSubscriptionParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: String +Parameter Sets: PartnerTopicEventSubscriptionParameterSet +Aliases: ResourceGroup + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceId +Resource Identifier representing the Event Grid Event Subscription. + +```yaml +Type: String +Parameter Sets: ResourceIdPartnerTopicEventSubscriptionParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +## OUTPUTS + +### System.String + +## NOTES + +## RELATED LINKS diff --git a/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerConfiguration.md b/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerConfiguration.md new file mode 100644 index 000000000000..ccd5dd068808 --- /dev/null +++ b/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerConfiguration.md @@ -0,0 +1,147 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml +Module Name: Az.EventGrid +online version: +schema: 2.0.0 +--- + +# Get-AzEventGridPartnerConfiguration + +## SYNOPSIS +Gets the details of an Event Grid partner configuration, or gets a lost of partner configurations in the current Azure subscription. + +## SYNTAX + +### ResourceGroupNameParameterSet (Default) +``` +Get-AzEventGridPartnerConfiguration [-ResourceGroupName ] [-ODataQuery ] [-Top ] + [-DefaultProfile ] [] +``` + +### NextLinkParameterSet +``` +Get-AzEventGridPartnerConfiguration -NextLink [-DefaultProfile ] + [] +``` + +## DESCRIPTION + The Get-AzEventGridPartnerConfiguration cmdlet gets the details of a partner configuration under a specified resource group, or a list of partner configurations in the current Azure subscriptions. + If the resource group name is provided, the details of a single Event Grid partner configuration is returned. + If the resource group name is not provided, a list of partner configurations is returned. + +## EXAMPLES + +### Example 1 +```powershell +Get-AzEventGridPartnerConfiguration -ResourceGroupName ResourceGroup1 +``` + +Gets the details of the partner configuration in resource group \`ResourceGroup1\`. + +### Example 2 +```powershell +Get-AzEventGridPartnerConfiguration -Top 5 +``` + +Lists the details of the first five partner configurations in the current Azure subscription. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NextLink +The link for the next page of resources to be obtained. +This value is obtained with the first Get-AzEventGrid cmdlet call when more resources are still available to be queried. + +```yaml +Type: String +Parameter Sets: NextLinkParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ODataQuery +The OData query used for filtering the list results. +Filtering is currently allowed on the Name property only.The supported operations include: CONTAINS, eq (for equal), ne (for not equal), AND, OR and NOT. + +```yaml +Type: String +Parameter Sets: ResourceGroupNameParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: String +Parameter Sets: ResourceGroupNameParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Top +The maximum number of resources to be obtained. +Valid value is between 1 and 100. +If top value is specified and more results are still available, the result will contain a link to the next page to be queried in NextLink. +If the Top value is not specified, the full list of resources will be returned at once. + +```yaml +Type: Int32 +Parameter Sets: ResourceGroupNameParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] + +## OUTPUTS + +### Microsoft.Azure.Commands.EventGrid.Models.PSPartnerConfigurationListInstance + +### Microsoft.Azure.Commands.EventGrid.Models.PSPartnerConfiguration + +## NOTES + +## RELATED LINKS diff --git a/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerNamespace.md b/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerNamespace.md new file mode 100644 index 000000000000..ed2215f78830 --- /dev/null +++ b/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerNamespace.md @@ -0,0 +1,167 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml +Module Name: Az.EventGrid +online version: +schema: 2.0.0 +--- + +# Get-AzEventGridPartnerNamespace + +## SYNOPSIS +Gets the details of an Event Grid partner namespace, or lists partner namespaces at the scope of the current Azure subscription or specified resource group. + +## SYNTAX + +### PartnerNamespaceListBySubscriptionParameterSet (Default) +``` +Get-AzEventGridPartnerNamespace [-ODataQuery ] [-Top ] + [-DefaultProfile ] [] +``` + +### ResourceGroupNameParameterSet +``` +Get-AzEventGridPartnerNamespace -ResourceGroupName [-ODataQuery ] [-Top ] + [-DefaultProfile ] [] +``` + +### PartnerNamespaceNameParameterSet +``` +Get-AzEventGridPartnerNamespace -ResourceGroupName -Name + [-DefaultProfile ] [] +``` + +### NextLinkParameterSet +``` +Get-AzEventGridPartnerNamespace -NextLink [-DefaultProfile ] + [] +``` + +## DESCRIPTION +The Get-AzEventGridPartnerNamespace cmdlet gets either the details of a specified Event Grid partner namespace, or lists partner namespaces. +If the partner namespace name is provided, the details of a single Event Grid partner namespace is returned. +If the partner namespace name is not provided but the resource group name is provided, a list of partner namespaces at the resource group scope is returned. +If neither the partner namespace name or the resource group name are provided, a list of partner namespaces at the current Azure subscription scope is returned. +## EXAMPLES + +### Example 1 +```powershell +Get-AzEventGridPartnerNamespace -ResourceGroup MyResourceGroupName -Name PartnerNamespace1 +``` + +Gets the details of Event Grid partner namespace \`PartnerNamespace1\` in resource group \`MyResourceGroupName\`. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Event Grid partner namespace name. + +```yaml +Type: String +Parameter Sets: PartnerNamespaceNameParameterSet +Aliases: PartnerNamespaceName + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -NextLink +The link for the next page of resources to be obtained. +This value is obtained with the first Get-AzEventGrid cmdlet call when more resources are still available to be queried. + +```yaml +Type: String +Parameter Sets: NextLinkParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ODataQuery +The OData query used for filtering the list results. +Filtering is currently allowed on the Name property only.The supported operations include: CONTAINS, eq (for equal), ne (for not equal), AND, OR and NOT. + +```yaml +Type: String +Parameter Sets: PartnerNamespaceListBySubscriptionParameterSet, ResourceGroupNameParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: String +Parameter Sets: ResourceGroupNameParameterSet, PartnerNamespaceNameParameterSet +Aliases: ResourceGroup + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Top +The maximum number of resources to be obtained. +Valid value is between 1 and 100. +If top value is specified and more results are still available, the result will contain a link to the next page to be queried in NextLink. +If the Top value is not specified, the full list of resources will be returned at once. + +```yaml +Type: Int32 +Parameter Sets: PartnerNamespaceListBySubscriptionParameterSet, ResourceGroupNameParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] + +## OUTPUTS + +### Microsoft.Azure.Commands.EventGrid.Models.PSPartnerNamespaceListInstance + +### Microsoft.Azure.Commands.EventGrid.Models.PSPartnerNamespace + +## NOTES + +## RELATED LINKS diff --git a/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerNamespaceKey.md b/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerNamespaceKey.md new file mode 100644 index 000000000000..c3abdd3bd3df --- /dev/null +++ b/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerNamespaceKey.md @@ -0,0 +1,117 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml +Module Name: Az.EventGrid +online version: +schema: 2.0.0 +--- + +# Get-AzEventGridPartnerNamespaceKey + +## SYNOPSIS +Gets the details of an Event Grid partner namespace key. + +## SYNTAX + +### PartnerNamespaceNameParameterSet (Default) +``` +Get-AzEventGridPartnerNamespaceKey -ResourceGroupName -PartnerNamespaceName + [-DefaultProfile ] [] +``` + +### PartnerNamespaceInputObjectParameterSet +``` +Get-AzEventGridPartnerNamespaceKey -InputObject [-DefaultProfile ] + [] +``` + +## DESCRIPTION +The Get-AzEventGridPartnerNamespaceKey cmdlet gets the details of an Event Grid partner namespace key. +## EXAMPLES + +### Example 1 +```powershell +Get-AzEventGridPartnerNamespaceKey -ResourceGroupName MyResourceGroupName -PartnerNamespaceName PartnerNamespace1 +``` + +Gets the details of the keys for Event Grid partner namespace \`PartnerNamespace1\` in resource group \`MyResourceGroupName\`. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +PartnerNamespace object + +```yaml +Type: PSPartnerNamespace +Parameter Sets: PartnerNamespaceInputObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PartnerNamespaceName +Event Grid partner namespace name. + +```yaml +Type: String +Parameter Sets: PartnerNamespaceNameParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: String +Parameter Sets: PartnerNamespaceNameParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.EventGrid.Models.PSPartnerNamespace + +## OUTPUTS + +### Microsoft.Azure.Commands.EventGrid.Models.PSPartnerNamespaceListInstance + +### Microsoft.Azure.Commands.EventGrid.Models.PSPartnerNamespace + +## NOTES + +## RELATED LINKS diff --git a/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerRegistration.md b/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerRegistration.md new file mode 100644 index 000000000000..99a6aac57489 --- /dev/null +++ b/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerRegistration.md @@ -0,0 +1,174 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml +Module Name: Az.EventGrid +online version: +schema: 2.0.0 +--- + +# Get-AzEventGridPartnerRegistration + +## SYNOPSIS +Gets the details of an Event Grid partner registration, or gets a list of Event Grid partner registrations. + +## SYNTAX + +### ResourceGroupNameParameterSet (Default) +``` +Get-AzEventGridPartnerRegistration [-ResourceGroupName ] [-ODataQuery ] [-Top ] + [-DefaultProfile ] [] +``` + +### PartnerRegistrationNameParameterSet +``` +Get-AzEventGridPartnerRegistration -ResourceGroupName -Name + [-DefaultProfile ] [] +``` + +### NextLinkParameterSet +``` +Get-AzEventGridPartnerRegistration [-NextLink ] [-DefaultProfile ] + [] +``` + +## DESCRIPTION +The Get-AzEventGridPartnerRegistration cmdlet either gets the details of a specified Event Grid partner registration, or a list of all partner registrations at either the specified resource group or current Azure subscription scope. +If the partner registration name is provided, the details of a single partner registration is returned. +If the partner registration name is not provided but the resource group name is provided, a list of partner registrations is returned. +If neither the partner registration name or the resource group name is provided, a list of partner registrations in the current Azure subscription is returned. + +## EXAMPLES + +### Example 1 +```powershell +Get-AzEventGridPartnerRegistration -ResourceGroupName MyResourceGroupName -Name PartnerRegistration1 +``` + +Gets the details of Event Grid partner registration \`PartnerRegistration1\` in resource group \`MyResourceGroupName\`. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Event Grid partner registration name. + +```yaml +Type: String +Parameter Sets: PartnerRegistrationNameParameterSet +Aliases: PartnerRegistrationName + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -NextLink +The link for the next page of resources to be obtained. +This value is obtained with the first Get-AzEventGrid cmdlet call when more resources are still available to be queried. + +```yaml +Type: String +Parameter Sets: NextLinkParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ODataQuery +The OData query used for filtering the list results. +Filtering is currently allowed on the Name property only.The supported operations include: CONTAINS, eq (for equal), ne (for not equal), AND, OR and NOT. + +```yaml +Type: String +Parameter Sets: ResourceGroupNameParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: String +Parameter Sets: ResourceGroupNameParameterSet +Aliases: ResourceGroup + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +```yaml +Type: String +Parameter Sets: PartnerRegistrationNameParameterSet +Aliases: ResourceGroup + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Top +The maximum number of resources to be obtained. +Valid value is between 1 and 100. +If top value is specified and more results are still available, the result will contain a link to the next page to be queried in NextLink. +If the Top value is not specified, the full list of resources will be returned at once. + +```yaml +Type: Int32 +Parameter Sets: ResourceGroupNameParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] + +## OUTPUTS + +### Microsoft.Azure.Commands.EventGrid.Models.PSPartnerRegistrationListInstance + +### Microsoft.Azure.Commands.EventGrid.Models.PSPartnerRegistration + +## NOTES + +## RELATED LINKS diff --git a/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerTopic.md b/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerTopic.md new file mode 100644 index 000000000000..457b10b08c5e --- /dev/null +++ b/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerTopic.md @@ -0,0 +1,173 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml +Module Name: Az.EventGrid +online version: +schema: 2.0.0 +--- + +# Get-AzEventGridPartnerTopic + +## SYNOPSIS +Gets the details of an Event Grid partner topic, or gets a list of Event Grid partner topics. + +## SYNTAX + +### ResourceGroupNameParameterSet (Default) +``` +Get-AzEventGridPartnerTopic [-ResourceGroupName ] [-ODataQuery ] [-Top ] + [-DefaultProfile ] [] +``` + +### PartnerTopicNameParameterSet +``` +Get-AzEventGridPartnerTopic -ResourceGroupName -Name + [-DefaultProfile ] [] +``` + +### NextLinkParameterSet +``` +Get-AzEventGridPartnerTopic -NextLink [-DefaultProfile ] [] +``` + +## DESCRIPTION +The Get-AzEventGridPartnerTopic cmdlet either gets the details of a specified Event Grid partner topic, or a list of Event Grid partner topics. +If the partner topic name is provided, the details of a single partner topic is returned. +If the partner topic name is not provided but the resource group name is provided, a list of partner topics a the resource group scope is returned. +If neither the partner topic name or the resource group name is provided, a list of partner topics in the current Azure subscription is returned. + +## EXAMPLES + +### Example 1 +```powershell +Get-AzEventGridPartnerTopic -ResourceGroupName MyResourceGroupName -Name PartnerTopic1 +``` + +Gets the details of Event Grid partner topic \`PartnerTopic1\` in resource group \`MyResourceGroupName\`. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Event Grid partner topic name. + +```yaml +Type: String +Parameter Sets: PartnerTopicNameParameterSet +Aliases: PartnerTopicName + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -NextLink +The link for the next page of resources to be obtained. +This value is obtained with the first Get-AzEventGrid cmdlet call when more resources are still available to be queried. + +```yaml +Type: String +Parameter Sets: NextLinkParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ODataQuery +The OData query used for filtering the list results. +Filtering is currently allowed on the Name property only.The supported operations include: CONTAINS, eq (for equal), ne (for not equal), AND, OR and NOT. + +```yaml +Type: String +Parameter Sets: ResourceGroupNameParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: String +Parameter Sets: ResourceGroupNameParameterSet +Aliases: ResourceGroup + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +```yaml +Type: String +Parameter Sets: PartnerTopicNameParameterSet +Aliases: ResourceGroup + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Top +The maximum number of resources to be obtained. +Valid value is between 1 and 100. +If top value is specified and more results are still available, the result will contain a link to the next page to be queried in NextLink. +If the Top value is not specified, the full list of resources will be returned at once. + +```yaml +Type: Int32 +Parameter Sets: ResourceGroupNameParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] + +## OUTPUTS + +### Microsoft.Azure.Commands.EventGrid.Models.PSPartnerTopic + +### Microsoft.Azure.Commands.EventGrid.Models.PSSytemTopicListInstance + +## NOTES + +## RELATED LINKS diff --git a/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerTopicEventSubscription.md b/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerTopicEventSubscription.md new file mode 100644 index 000000000000..0a8834cee15a --- /dev/null +++ b/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerTopicEventSubscription.md @@ -0,0 +1,229 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml +Module Name: Az.EventGrid +online version: +schema: 2.0.0 +--- + +# Get-AzEventGridPartnerTopicEventSubscription + +## SYNOPSIS +Gets the details of an event subscription, or gets a list of all event subscriptions for a given Azure Event Grid partner topic. + +## SYNTAX + +### PartnerTopicNameParameterSet (Default) +``` +Get-AzEventGridPartnerTopicEventSubscription -ResourceGroupName -PartnerTopicName + [-IncludeFullEndpointUrl] [-ODataQuery ] [-Top ] [-NextLink ] + [-DefaultProfile ] [] +``` + +### PartnerTopicEventSubscriptionParameterSet +``` +Get-AzEventGridPartnerTopicEventSubscription -Name -ResourceGroupName + -PartnerTopicName [-IncludeFullEndpointUrl] [-DefaultProfile ] + [] +``` + +### ResourceIdPartnerTopicEventSubscriptionParameterSet +``` +Get-AzEventGridPartnerTopicEventSubscription [-ResourceId] [-IncludeFullEndpointUrl] + [-DefaultProfile ] [] +``` + +## DESCRIPTION +The Get-AzEventGridPartnerTopicEventSubscription cmdlet gets either the details of a specified Event Grid partner topic subscription, or a list of all Event Grid partner topic subscriptions for a given Azure Eventgrid partner topic. + +## EXAMPLES + +### Example 1 +```powershell +Get-AzEventGridPartnerTopicEventSubscription -ResourceGroupName MyResourceGroupName -PartnerTopicName Topic1 -EventSubscriptionName EventSubscription1 +``` + +Gets the details of event subscription \`EventSubscription1\` created for partner topic \`Topic1\` in resource group \`MyResourceGroupName\`. + +### Example 2 +```powershell +Get-AzEventGridPartnerTopicEventSubscription -ResourceGroupName MyResourceGroupName -PartnerTopicName Topic1 -EventSubscriptionName EventSubscription1 -IncludeFullEndpointUrl +``` + +Gets the details of event subscription \`EventSubscription1\` created for partner topic \`Topic1\` in resource group \`MyResourceGroupName\`, including the full endpoint URL if it is a webhook based event subscription. + +### Example 3 +```powershell +Get-AzEventGridPartnerTopicEventSubscription -ResourceGroupName MyResourceGroupName -PartnerTopicName Topic1 +``` + +Get a list of all the event subscriptions created for partner topic \`Topic1\` in resource group \`MyResourceGroupName\` without pagination. + +### Example 4 +```powershell +$odataFilter = "Name ne 'ABCD'" +Get-AzEventGridPartnerTopicEventSubscription -ResourceGroupName MyResourceGroupName -PartnerTopicName Topic1 -Top 10 -ODataQuery $odataFilter +Get-AzEventGridPartnerTopicEventSubscription -ResourceGroupName MyResourceGroupName -PartnerTopicName Topic1 -NextLink $result.NextLink +``` + +List the first 10 event subscriptions (if any) created for partner topic \`Topic1\` in resource group \`MyResourceGroupName\` that satisfies the $odataFilter query. If more results are available, the $result.NextLink will not be $null. In order to get next page(s) of event subscriptions, user is expected to re-call Get-AzEventGridPartnerTopicEventSubscription and uses result.NextLink obtained from the previous call. Caller should stop when result.NextLink becomes $null. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -IncludeFullEndpointUrl +If specified, include the full endpoint URL of the event subscription destination in the response. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +EventGrid event subscription name. + +```yaml +Type: String +Parameter Sets: PartnerTopicEventSubscriptionParameterSet +Aliases: EventSubscriptionName + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -NextLink +The link for the next page of resources to be obtained. +This value is obtained with the first Get-AzEventGrid cmdlet call when more resources are still available to be queried. + +```yaml +Type: String +Parameter Sets: PartnerTopicNameParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ODataQuery +The OData query used for filtering the list results. +Filtering is currently allowed on the Name property only.The supported operations include: CONTAINS, eq (for equal), ne (for not equal), AND, OR and NOT. + +```yaml +Type: String +Parameter Sets: PartnerTopicNameParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PartnerTopicName +Event Grid partner topic name. + +```yaml +Type: String +Parameter Sets: PartnerTopicNameParameterSet, PartnerTopicEventSubscriptionParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: String +Parameter Sets: PartnerTopicNameParameterSet, PartnerTopicEventSubscriptionParameterSet +Aliases: ResourceGroup + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceId +Resource Identifier representing the Event Grid Event Subscription. + +```yaml +Type: String +Parameter Sets: ResourceIdPartnerTopicEventSubscriptionParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Top +The maximum number of resources to be obtained. +Valid value is between 1 and 100. +If top value is specified and more results are still available, the result will contain a link to the next page to be queried in NextLink. +If the Top value is not specified, the full list of resources will be returned at once. + +```yaml +Type: Int32 +Parameter Sets: PartnerTopicNameParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] + +## OUTPUTS + +### Microsoft.Azure.Commands.EventGrid.Models.PSEventSubscription + +### Microsoft.Azure.Commands.EventGrid.Models.PSEventSubscriptionListInstance + +## NOTES + +## RELATED LINKS diff --git a/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerTopicEventSubscriptionDeliveryAttribute.md b/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerTopicEventSubscriptionDeliveryAttribute.md new file mode 100644 index 000000000000..20079e572395 --- /dev/null +++ b/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerTopicEventSubscriptionDeliveryAttribute.md @@ -0,0 +1,136 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml +Module Name: Az.EventGrid +online version: +schema: 2.0.0 +--- + +# Get-AzEventGridPartnerTopicEventSubscriptionDeliveryAttribute + +## SYNOPSIS +Gets the delivery attributes for partner topic event subscription + +## SYNTAX + +### PartnerTopicNameParameterSet (Default) +``` +Get-AzEventGridPartnerTopicEventSubscriptionDeliveryAttribute [-DefaultProfile ] + [] +``` + +### PartnerTopicEventSubscriptionParameterSet +``` +Get-AzEventGridPartnerTopicEventSubscriptionDeliveryAttribute -Name -ResourceGroupName + -PartnerTopicName [-DefaultProfile ] [] +``` + +### ResourceIdPartnerTopicEventSubscriptionParameterSet +``` +Get-AzEventGridPartnerTopicEventSubscriptionDeliveryAttribute [-ResourceId] + [-DefaultProfile ] [] +``` + +## DESCRIPTION +Gets the list of delivery attributes for partner topic event subscription + +## EXAMPLES + +### Example 1 +```powershell +Get-AzEventGridPartnerTopicEventSubscriptionDeliveryAttribute -ResourceGroupName MyResourceGroupName -PartnerTopicName Topic1 -EventSubscriptionName EventSubscription1 +``` + +Gets the list of delivery attributest for event subscription \`EventSubscription1\` created for partner topic \`Topic1\` in resource group \`MyResourceGroupName\`. + + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +EventGrid event subscription name. + +```yaml +Type: String +Parameter Sets: PartnerTopicEventSubscriptionParameterSet +Aliases: EventSubscriptionName + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PartnerTopicName +Event Grid partner topic name. + +```yaml +Type: String +Parameter Sets: PartnerTopicEventSubscriptionParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: String +Parameter Sets: PartnerTopicEventSubscriptionParameterSet +Aliases: ResourceGroup + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceId +Resource Identifier representing the Event Grid Event Subscription. + +```yaml +Type: String +Parameter Sets: ResourceIdPartnerTopicEventSubscriptionParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.EventGrid.Models.PsDeliveryAttribute + +## NOTES + +## RELATED LINKS diff --git a/src/EventGrid/EventGrid/help/Get-AzEventGridVerifiedPartner.md b/src/EventGrid/EventGrid/help/Get-AzEventGridVerifiedPartner.md new file mode 100644 index 000000000000..7033ee923526 --- /dev/null +++ b/src/EventGrid/EventGrid/help/Get-AzEventGridVerifiedPartner.md @@ -0,0 +1,138 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml +Module Name: Az.EventGrid +online version: +schema: 2.0.0 +--- + +# Get-AzEventGridVerifiedPartner + +## SYNOPSIS +Gets the details of a specific Event Grid verified partner or gets the details of all verified partners in the current azure subscription. + +## SYNTAX + +### VerifiedPartnerNameParameterSet (Default) +``` +Get-AzEventGridVerifiedPartner [-Name ] [-ODataQuery ] [-Top ] + [-DefaultProfile ] [] +``` + +### NextLinkParameterSet +``` +Get-AzEventGridVerifiedPartner [-NextLink ] [-DefaultProfile ] + [] +``` + +## DESCRIPTION +The Get-AzEventGridVerifiedPartners will get the detail of a specific verified partner or gets the details of all verified partners in the current Azure subscription. + +## EXAMPLES + +### Example 1 +```powershell +Get-AzEventGridVerifiedPartner -Name VerifiedPartner1 +``` + +Gets the details of verified partner \`VerifiedPartner1\`. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +EventGrid Verified Partner Name. + +```yaml +Type: String +Parameter Sets: VerifiedPartnerNameParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -NextLink +The link for the next page of resources to be obtained. +This value is obtained with the first Get-AzEventGrid cmdlet call when more resources are still available to be queried. + +```yaml +Type: String +Parameter Sets: NextLinkParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ODataQuery +The OData query used for filtering the list results. +Filtering is currently allowed on the Name property only.The supported operations include: CONTAINS, eq (for equal), ne (for not equal), AND, OR and NOT. + +```yaml +Type: String +Parameter Sets: VerifiedPartnerNameParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Top +The maximum number of resources to be obtained. +Valid value is between 1 and 100. +If top value is specified and more results are still available, the result will contain a link to the next page to be queried in NextLink. +If the Top value is not specified, the full list of resources will be returned at once. + +```yaml +Type: Int32 +Parameter Sets: VerifiedPartnerNameParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### System.Int32 + +## OUTPUTS + +### Microsoft.Azure.Commands.EventGrid.Models.PSVerifiedPartnerListInstance + +### Microsoft.Azure.Commands.EventGrid.Models.PSVerifiedPartner + +## NOTES + +## RELATED LINKS diff --git a/src/EventGrid/EventGrid/help/Grant-AzEventGridPartnerConfiguration.md b/src/EventGrid/EventGrid/help/Grant-AzEventGridPartnerConfiguration.md new file mode 100644 index 000000000000..3fec335b7649 --- /dev/null +++ b/src/EventGrid/EventGrid/help/Grant-AzEventGridPartnerConfiguration.md @@ -0,0 +1,188 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml +Module Name: Az.EventGrid +online version: +schema: 2.0.0 +--- + +# Grant-AzEventGridPartnerConfiguration + +## SYNOPSIS +Grants access to a partner for the specified partner configuration. + +## SYNTAX + +### ResourceGroupNameParameterSet (Default) +``` +Grant-AzEventGridPartnerConfiguration [-ResourceGroupName] [[-PartnerRegistrationImmutableId] ] + [[-PartnerName] ] [[-AuthorizationExpirationTime] ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### PartnerConfigurationInputObjectParameterSet +``` +Grant-AzEventGridPartnerConfiguration [-InputObject] + [[-PartnerRegistrationImmutableId] ] [[-PartnerName] ] + [[-AuthorizationExpirationTime] ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +The Grant-AzEventGridPartnerConfiguration cmdlet grants access to a partner for the specific partner configuration based on either the partner registration immutable ID or the partner name. +At least one of the partner registration immutable ID and the partner name is required. + +## EXAMPLES + +### Example 1 +```powershell +Grant-AzEventGridPartnerConfiguration -ResourceGroup MyResourceGroupName -PartnerRegistrationImmutableId 23e0092b-f336-4833-9ab3-9353a15650fc +``` + +Grants access to a partner based on the partner ID for the partner configuration in resource group \`MyResourceGroupName\`. + +## PARAMETERS + +### -AuthorizationExpirationTime +Expiration time of the partner authorization. +If this timer expires, any request from this partner to create, update or delete resources in subscriber's context will fail. +If specified, the allowed values are between 1 to the value of defaultMaximumExpirationTimeInDays specified in PartnerConfiguration. +If not specified, the default value will be the value of defaultMaximumExpirationTimeInDays specified in PartnerConfiguration or 7 if this value is not specified. + +```yaml +Type: DateTime +Parameter Sets: (All) +Aliases: + +Required: False +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +PartnerConfiguration object. + +```yaml +Type: PSPartnerConfiguration +Parameter Sets: PartnerConfigurationInputObjectParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PartnerName +Parter name. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PartnerRegistrationImmutableId +Immutable id of the corresponding partner registration + +```yaml +Type: Guid +Parameter Sets: (All) +Aliases: + +Required: False +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: String +Parameter Sets: ResourceGroupNameParameterSet +Aliases: ResourceGroup + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.EventGrid.Models.PSPartnerConfiguration + +### System.Nullable`1[[System.Guid, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] + +### System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] + +## OUTPUTS + +### Microsoft.Azure.Commands.EventGrid.Models.PSPartnerConfiguration + +## NOTES + +## RELATED LINKS diff --git a/src/EventGrid/EventGrid/help/New-AzEventGridChannel.md b/src/EventGrid/EventGrid/help/New-AzEventGridChannel.md new file mode 100644 index 000000000000..5193bde5a123 --- /dev/null +++ b/src/EventGrid/EventGrid/help/New-AzEventGridChannel.md @@ -0,0 +1,257 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml +Module Name: Az.EventGrid +online version: +schema: 2.0.0 +--- + +# New-AzEventGridChannel + +## SYNOPSIS +Creates a new Event Grid channel. + +## SYNTAX + +``` +New-AzEventGridChannel [-ResourceGroupName] [-PartnerNamespaceName] [-Name] + [-ChannelType] [-PartnerTopicSource ] [-MessageForActivation ] + [-PartnerTopicName ] [-EventTypeKind ] [-InlineEvent ] + [-ExpirationTimeIfNotActivatedUtc ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +Creates a new Event Grid channel based in the provided channel type. + +## EXAMPLES + +### Example 1 +```powershell +New-AzEventGridChannel -ResourceGroupName MyResourceGroupName -PartnerNamespaceName PartnerNamespace1 -Name Channel1 -ChannelType PartnerTopic -PartnerTopicSource PartnerTopicSource1 -PartnerTopicName PartnerTopic1 +``` + +Creates an Event Grid channel \`Channel\` under the partner namespace \`PartnerNamespace\` under the resource group \`MyResourceGroupName\`. +The channel will be of type PartnerTopic and the partner topic \`PartnerTopic1\` will be created with the specified source. + +## PARAMETERS + +### -ChannelType +The type of the event channel which represents the direction flow of events. +Possible values include: 'PartnerTopic' + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Accepted values: PartnerTopic + +Required: True +Position: 3 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EventTypeKind +The kind of event type used. +Possible values include: 'Inline' + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ExpirationTimeIfNotActivatedUtc +Expiration time of the partner topic. +If this timer expires while the partner topic is still never activated, the partner topic and corresponding event channel are deleted. + +```yaml +Type: DateTime +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -InlineEvent +Hashtable representing information on inline events. +The inline event keys are of type string which represents the name of the event.The inline event values are Hashtables containing the optional keys description, displayName, documentationUrl, and dataSchemaUrl which define the information about the inline event. + +```yaml +Type: Hashtable +Parameter Sets: (All) +Aliases: +Accepted values: Inline + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -MessageForActivation +Context or helpful message that can be used during the approval process by the subscriber. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Name +The name of the Event Grid channel. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: ChannelName + +Required: True +Position: 2 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PartnerNamespaceName +Event Grid partner namespace name. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PartnerTopicName +Event Grid partner topic name. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PartnerTopicSource +Source information provided by the publisher to determine the scope or context from which the events are originating. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: ResourceGroup + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### System.Collections.Hashtable + +### System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] + +## OUTPUTS + +### Microsoft.Azure.Commands.EventGrid.Models.PSChannel + +## NOTES + +## RELATED LINKS diff --git a/src/EventGrid/EventGrid/help/New-AzEventGridPartnerConfiguration.md b/src/EventGrid/EventGrid/help/New-AzEventGridPartnerConfiguration.md new file mode 100644 index 000000000000..2d2984c6f8cf --- /dev/null +++ b/src/EventGrid/EventGrid/help/New-AzEventGridPartnerConfiguration.md @@ -0,0 +1,165 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml +Module Name: Az.EventGrid +online version: +schema: 2.0.0 +--- + +# New-AzEventGridPartnerConfiguration + +## SYNOPSIS +Creates a new Event Grid partner configuration. + +## SYNTAX + +``` +New-AzEventGridPartnerConfiguration [-ResourceGroupName] [-Tag ] + [-MaxExpirationTimeInDays ] [-AuthorizedPartner ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Creates a new partner configuration. + +## EXAMPLES + +### Example 1 +```powershell +New-AzEventGridPartnerConfiguration -ResourceGroupName MyResourceGroupName -MaxExpirationTimeInDays 14 +``` + +Creates a new partner configuration under the resource group \`MyResourceGroupName\`. + +## PARAMETERS + +### -AuthorizedPartner +Array of HashTables where each HashTable is the details of an authorized partner. +Each HashTable has the following key-value info: partnerName, partnerRegistrationImmutableId, and authorizationExpirationTimeInUtc. +At least one key is required. +The partnerName is a String, partnerRegistrationImmutableId is a Guid, and authorizationExpirationTimeInUtc is a DateTime. + +```yaml +Type: Hashtable[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MaxExpirationTimeInDays +Expiration time in days used to validate the authorization expiration time for each authorized partner. +If this parameter is not specified, the default is 7 days. +Otherwise, allowed values are between 1 and 365 days. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: ResourceGroup + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Tag +Hashtable which represents resource Tags. + +```yaml +Type: Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### System.Collections.Hashtable + +### System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] + +### System.Collections.Hashtable[] + +## OUTPUTS + +### Microsoft.Azure.Commands.EventGrid.Models.PSPartnerConfiguration + +## NOTES + +## RELATED LINKS diff --git a/src/EventGrid/EventGrid/help/New-AzEventGridPartnerNamespace.md b/src/EventGrid/EventGrid/help/New-AzEventGridPartnerNamespace.md new file mode 100644 index 000000000000..7fe5a2f7a2da --- /dev/null +++ b/src/EventGrid/EventGrid/help/New-AzEventGridPartnerNamespace.md @@ -0,0 +1,278 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml +Module Name: Az.EventGrid +online version: +schema: 2.0.0 +--- + +# New-AzEventGridPartnerNamespace + +## SYNOPSIS +Creates a new Event Grid partner namespace. + +## SYNTAX + +``` +New-AzEventGridPartnerNamespace [-ResourceGroupName] [-Name] [-Location] + [-Tag ] [-PrivateEndpointConnection ] + [-InboundIpRule ] [-PartnerRegistrationFullyQualifiedId ] [-Endpoint ] + [-PublicNetworkAccess ] [-DisableLocalAuth ] [-PartnerTopicRoutingMode ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Creates a new Event Grid partner namespace. + +## EXAMPLES + +### Example 1 +```powershell +New-AzEventGridPartnerNamespace -ResourceGroupName MyResourceGroupName -Name PartnerNamespace1 -Location westus2 -PartnerRegistrationFullyQualifiedId 23e0092b-f336-4833-9ab3-9353a15650fc +``` + +Creates a new Event Grid partner namespace \`PartnerNamespace1\` in resource group \`MyResourceGroupName\`. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DisableLocalAuth +Switch param to disable local auth. + +```yaml +Type: Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Endpoint +Endpoint for the partner namespace + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -InboundIpRule +Array of PSInboundIpRule which represents list of inbound IP rules. +Each rule specifies the IP Address in CIDR notation e.g., 10.0.0.0/8 along with the corresponding Action to be performed based on the match or no match of the IpMask. +Possible Action values include Allow only + +```yaml +Type: PSInboundIpRule[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Location +Location of the partner namespace. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Name +Event Grid partner namespace name. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: PartnerNamespaceName + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PartnerRegistrationFullyQualifiedId +Fully qualified ARM Id of the partner registration that should be associated with this partner namespace. +This takes the following format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerRegistrations/{partnerRegistrationName}. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PartnerTopicRoutingMode +Determines if events published to this partner namespace should use the source attribute in the event payload or use the channel name in the header when matching to the partner topic. +If none is specified, source attribute routing will be used to match the partner topic. +Possible values include: 'SourceEventAttribute', 'ChannelNameHeader' + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Accepted values: SourceEventAttribute, ChannelNameHeader + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PrivateEndpointConnection +List of PSPrivateEndointConnection representing information about the private endpoint connections. + +```yaml +Type: PSPrivateEndpointConnection[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PublicNetworkAccess +This determines if traffic is allowed over public network. +By default it is enabled. +You can further restrict to specific IPs by configuring InboundIpRule parameters. +Allowed values are disabled and enabled. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: ResourceGroup + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Tag +Hashtable which represents resource Tags. + +```yaml +Type: Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### System.Collections.Hashtable + +### Microsoft.Azure.Commands.EventGrid.Models.PSPrivateEndpointConnection[] + +### Microsoft.Azure.Commands.EventGrid.Models.PSInboundIpRule[] + +### System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] + +## OUTPUTS + +### Microsoft.Azure.Commands.EventGrid.Models.PSPartnerNamespace + +## NOTES + +## RELATED LINKS diff --git a/src/EventGrid/EventGrid/help/New-AzEventGridPartnerNamespaceKey.md b/src/EventGrid/EventGrid/help/New-AzEventGridPartnerNamespaceKey.md new file mode 100644 index 000000000000..f5e6aac2a564 --- /dev/null +++ b/src/EventGrid/EventGrid/help/New-AzEventGridPartnerNamespaceKey.md @@ -0,0 +1,164 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml +Module Name: Az.EventGrid +online version: +schema: 2.0.0 +--- + +# New-AzEventGridPartnerNamespaceKey + +## SYNOPSIS +Regenerates the shared access key for an Azure Event Grid partner namespace. + +## SYNTAX + +### PartnerNamespaceNameParameterSet (Default) +``` +New-AzEventGridPartnerNamespaceKey [-ResourceGroupName] [-PartnerNamespaceName] + [-Name] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### PartnerNamespaceInputObjectParameterSet +``` +New-AzEventGridPartnerNamespaceKey [-Name] -InputObject + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Regenerates the shared access key for an Azure Event Grid partner namespace. + +## EXAMPLES + +### Example 1 +```powershell +New-AzEventGridPartnerNamespaceKey -ResourceGroupName MyResourceGroupName -PartnerNamespaceName PartnerNamespace1 -Name key1 +``` + +Regenerate the key corresponding to key \`key1\` of Event Grid partner namespace \`PartnerNamespace1\` in resource group \`MyResourceGroupName\`. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +PartnerNamespace object + +```yaml +Type: PSPartnerNamespace +Parameter Sets: PartnerNamespaceInputObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Name +The name of the shared access key for the partner namespace. +Either key1 or key2. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: KeyName +Accepted values: key1, key2 + +Required: True +Position: 2 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PartnerNamespaceName +Event Grid partner namespace name. + +```yaml +Type: String +Parameter Sets: PartnerNamespaceNameParameterSet +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: String +Parameter Sets: PartnerNamespaceNameParameterSet +Aliases: ResourceGroup + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.EventGrid.Models.PSPartnerNamespace + +## OUTPUTS + +### Microsoft.Azure.Commands.EventGrid.Models.PSPartnerNamespace + +## NOTES + +## RELATED LINKS diff --git a/src/EventGrid/EventGrid/help/New-AzEventGridPartnerRegistration.md b/src/EventGrid/EventGrid/help/New-AzEventGridPartnerRegistration.md new file mode 100644 index 000000000000..aad6159aefbd --- /dev/null +++ b/src/EventGrid/EventGrid/help/New-AzEventGridPartnerRegistration.md @@ -0,0 +1,139 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml +Module Name: Az.EventGrid +online version: +schema: 2.0.0 +--- + +# New-AzEventGridPartnerRegistration + +## SYNOPSIS +Creates a new Event Grid partner registration. +## SYNTAX + +``` +New-AzEventGridPartnerRegistration [-ResourceGroupName] [-Name] [-Tag ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The New-AzEventGridPartnerRegistration cmdlet creates a new Event Grid partner registration. + +## EXAMPLES + +### Example 1 +```powershell +New-AzEventGridPartnerRegistration -ResourceGroupName MyResourceGroupName -Name PartnerRegistration1 +``` + +Creates a new Event Grid partner registration \`PartnerRegistration1\` in the resource group \`MyResourceGroupName\`. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Event Grid partner registration name. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: PartnerRegistrationName + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: ResourceGroup + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Tag +Hashtable which represents resource Tags. + +```yaml +Type: Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### System.Collections.Hashtable + +## OUTPUTS + +### Microsoft.Azure.Commands.EventGrid.Models.PSPartnerRegistration + +## NOTES + +## RELATED LINKS diff --git a/src/EventGrid/EventGrid/help/New-AzEventGridPartnerTopic.md b/src/EventGrid/EventGrid/help/New-AzEventGridPartnerTopic.md new file mode 100644 index 000000000000..b457d0d8bfb0 --- /dev/null +++ b/src/EventGrid/EventGrid/help/New-AzEventGridPartnerTopic.md @@ -0,0 +1,314 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml +Module Name: Az.EventGrid +online version: +schema: 2.0.0 +--- + +# New-AzEventGridPartnerTopic + +## SYNOPSIS +Creates a new Azure Event Grid Partner Topic. + +## SYNTAX + +### TopicNameParameterSet (Default) +``` +New-AzEventGridPartnerTopic [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### PartnerTopicNameParameterSet +``` +New-AzEventGridPartnerTopic -ResourceGroupName -Name -Source [-Location ] + [-IdentityType ] [-IdentityId ] [-Tag ] + [-PartnerTopicFriendlyDescription ] [-MessageForActivation ] + [-ExpirationTimeIfNotActivatedUtc ] [-PartnerRegistrationImmutableId ] + [-EventTypeKind ] [-InlineEvent ] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +## DESCRIPTION +Creates a new Azure Event Partner Topic. + +## EXAMPLES + +### Example 1 +```powershell +New-AzEventGridPartnerTopic -ResourceGroupName MyResourceGroupName -Name PartnerTopic1 -Source ContosoCorp.Accounts.User1 -Location westus2 -PartnerRegistrationImmutableId 23e0092b-f336-4833-9ab3-9353a15650fc +``` + +Creates a new Event Grid partner topic \`PartnerTopic\` in resource group \`MyResourceGroupName\`. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EventTypeKind +The kind of event type used. +Possible values include: 'Inline' + +```yaml +Type: String +Parameter Sets: PartnerTopicNameParameterSet +Aliases: +Accepted values: Inline + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ExpirationTimeIfNotActivatedUtc +Expiration time of the partner topic. +If this timer expires while the partner topic is still never activated, the partner topic and corresponding event channel are deleted. + +```yaml +Type: DateTime +Parameter Sets: PartnerTopicNameParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -IdentityId +The list of user assigned identities + +```yaml +Type: String[] +Parameter Sets: PartnerTopicNameParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -IdentityType +Different identity types. +Could be either of following 'SystemAssigned', 'UserAssigned', 'SystemAssigned, UserAssigned', 'None' + +```yaml +Type: String +Parameter Sets: PartnerTopicNameParameterSet +Aliases: +Accepted values: SystemAssigned, UserAssigned, SystemAssigned, UserAssigned, None + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -InlineEvent +Hashtable representing information on inline events. +The inline event keys are of type string which represents the name of the event.The inline event values are Hashtables containing the optional keys description, displayName, documentationUrl, and dataSchemaUrl which define the information about the inline event. + +```yaml +Type: Hashtable +Parameter Sets: PartnerTopicNameParameterSet +Aliases: +Accepted values: Inline + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Location +The location of the topic. + +```yaml +Type: String +Parameter Sets: PartnerTopicNameParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -MessageForActivation +Context or helpful message that can be used during the approval process by the subscriber. + +```yaml +Type: String +Parameter Sets: PartnerTopicNameParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Name +EventGrid topic name. + +```yaml +Type: String +Parameter Sets: PartnerTopicNameParameterSet +Aliases: PartnerTopicName + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PartnerRegistrationImmutableId +Immutable id of the corresponding partner registration + +```yaml +Type: Guid +Parameter Sets: PartnerTopicNameParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PartnerTopicFriendlyDescription +Hashtable which represents resource Tags. + +```yaml +Type: String +Parameter Sets: PartnerTopicNameParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: String +Parameter Sets: PartnerTopicNameParameterSet +Aliases: ResourceGroup + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Source +Source for a system topic + +```yaml +Type: String +Parameter Sets: PartnerTopicNameParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Tag +Hashtable which represents resource Tags. + +```yaml +Type: Hashtable +Parameter Sets: PartnerTopicNameParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### System.String[] + +### System.Collections.Hashtable + +### System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] + +### System.Nullable`1[[System.Guid, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] + +## OUTPUTS + +### Microsoft.Azure.Commands.EventGrid.Models.PSPartnerTopic + +## NOTES + +## RELATED LINKS diff --git a/src/EventGrid/EventGrid/help/New-AzEventGridPartnerTopicEventSubscription.md b/src/EventGrid/EventGrid/help/New-AzEventGridPartnerTopicEventSubscription.md new file mode 100644 index 000000000000..20d4872fa9f9 --- /dev/null +++ b/src/EventGrid/EventGrid/help/New-AzEventGridPartnerTopicEventSubscription.md @@ -0,0 +1,498 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml +Module Name: Az.EventGrid +online version: +schema: 2.0.0 +--- + +# New-AzEventGridPartnerTopicEventSubscription + +## SYNOPSIS +Creates a new Azure Event Grid Event Subscription to a Partner topic. + +## SYNTAX + +``` +New-AzEventGridPartnerTopicEventSubscription -Name -ResourceGroupName + -PartnerTopicName [-AzureActiveDirectoryApplicationIdOrUri ] + [-AzureActiveDirectoryTenantId ] [-DeadLetterEndpoint ] [-DeliveryAttributeMapping ] + [-Endpoint ] [-EndpointType ] [-DeliverySchema ] [-EventTtl ] + [-ExpirationDate ] [-Label ] [-MaxDeliveryAttempt ] [-MaxEventsPerBatch ] + [-PreferredBatchSizeInKiloByte ] [-StorageQueueMessageTtl ] [-AdvancedFilter ] + [-AdvancedFilteringOnArray] [-IncludedEventType ] [-SubjectBeginsWith ] + [-SubjectEndsWith ] [-SubjectCaseSensitive] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +## DESCRIPTION +Create a new event subscription to an Azure Event Grid Partner topic. + +## EXAMPLES + +### Example 1 +```powershell +New-AzEventGridPartnerTopicEventSubscription -ResourceGroup MyResourceGroup -PartnerTopicName Topic1 -Endpoint https://requestb.in/19qlscd1 -EventSubscriptionName EventSubscription1 +``` + +Creates a new event subscription \`EventSubscription1\` to an Azure Event Grid Partner topic \`Topic1\` in resource group \`MyResourceGroupName\` with the webhook destination endpoint `https://requestb.in/19qlscd1`. This event subscription uses default filters. + +### Example 2 +```powershell +$includedEventTypes = "Microsoft.Resources.ResourceWriteFailure", "Microsoft.Resources.ResourceWriteSuccess" +$labels = "Finance", "HR" +New-AzEventGridPartnerTopicEventSubscription -ResourceGroup MyResourceGroup -PartnerTopicName Topic1 -EventSubscriptionName EventSubscription1 -Endpoint https://requestb.in/19qlscd1 -SubjectBeginsWith "TestPrefix" -SubjectEndsWith "TestSuffix" -IncludedEventType $includedEventTypes -Label $labels +``` + +Creates a new event subscription \`EventSubscription1\` to Sytem Topic \`Topic1\` in resource group \`MyResourceGroup\` with the webhook destination endpoint `https://requestb.in/19qlscd1`. This event subscription specifies the additional filters for event types and subject, and only events matching those filters will be delivered to the destination endpoint. + +### Example 3 +```powershell +New-AzEventGridPartnerTopicEventSubscription -ResourceGroup MyResourceGroup -PartnerTopicName Topic1 -EventSubscriptionName EventSubscription1 -EndpointType "eventhub" -Endpoint "/subscriptions/55f3dcd4-cac7-43b4-990b-a139d62a1eb2/resourceGroups/TestRG/providers/Microsoft.EventHub/namespaces/ContosoNamespace/eventhubs/EH1" +``` + +Creates a new event subscription \`EventSubscription1\` to Sytem Topic \`Topic1\` in resource group \`MyResourceGroup\` with the specified event hub as the destination for events. This event subscription uses default filters. + +## PARAMETERS + +### -AdvancedFilter +Advanced filter that specifies an array of multiple Hashtable values that are used for the attribute-based filtering. +Each Hashtable value has the following keys-value info: Operation, Key and Value or Values. +Operator can be one of the following values: NumberIn, NumberNotIn, NumberLessThan, NumberGreaterThan, NumberLessThanOrEquals, NumberGreaterThanOrEquals, BoolEquals, StringIn, StringNotIn, StringBeginsWith, StringEndsWith or StringContains. +Key represents the payload property where the advanced filtering policies are applied. +Finally, Value or Values represent the value or set of values to be matched. +This can be a single value of the corresponding type or an array of values. +As an example of the advanced filter parameters: $AdvancedFilters=@($AdvFilter1, $AdvFilter2) where $AdvFilter1=@{operator="NumberIn"; key="Data.Key1"; Values=@(1,2)} and $AdvFilter2=@{operator="StringBringsWith"; key="Subject"; Values=@("SubjectPrefix1","SubjectPrefix2")} + +```yaml +Type: Hashtable[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -AdvancedFilteringOnArray +The presence of this parameter denotes that advanced filtering on arrays is enabled + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -AzureActiveDirectoryApplicationIdOrUri +The Azure Active Directory (AAD) Application Id or Uri to get the access token that will be included as the bearer token in delivery requests.Applicable only for webhook as a destination. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -AzureActiveDirectoryTenantId +The Azure Active Directory (AAD) Tenant Id to get the access token that will be included as the bearer token in delivery requests.Applicable only for webhook as a destination. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -DeadLetterEndpoint +The endpoint used for storing undelivered events. +Specify the Azure resource ID of a Storage blob container. +For example: /subscriptions/\[SubscriptionId\]/resourceGroups/\[ResourceGroupName\]/providers/Microsoft.Storage/storageAccounts/\[StorageAccountName\]/blobServices/default/containers/\[ContainerName\]. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DeliveryAttributeMapping +The delivery attribute mappings for this system topic event subscription + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -DeliverySchema +The schema to be used when delivering events to the destination. +The possible values are: eventgridschema, CustomInputSchema, or cloudeventv01schema. +Default value is CustomInputSchema. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Endpoint +Event subscription destination endpoint. +This can be a webhook URL, or the Azure resource ID of an EventHub, storage queue, hybridconnection, servicebusqueue, servicebustopic or azurefunction. +For example, the resource ID for a hybrid connection takes the following form: /subscriptions/\[Azure Subscription ID\]/resourceGroups/\[ResourceGroupName\]/providers/Microsoft.Relay/namespaces/\[NamespaceName\]/hybridConnections/\[HybridConnectionName\]. +It is expected that the destination endpoint to be created and available for use before executing any Event Grid cmdlets. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -EndpointType +Endpoint Type. +This can be webhook, eventhub, storagequeue, hybridconnection, servicebusqueue, servicebustopic or azurefunction. +Default value is webhook. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -EventTtl +The time in minutes for the event delivery. +This value must be between 1 and 1440 + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ExpirationDate +Determines the expiration DateTime for the event subscription after which event subscription will retire. + +```yaml +Type: DateTime +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -IncludedEventType +Filter that specifies a list of event types to include. +If not specified, all event types (for the custom topics and domains) or default event types (for other topic types) will be included. + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Label +Labels for the event subscription. + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -MaxDeliveryAttempt +The maximum number of attempts to deliver the event. +This value must be between 1 and 30. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -MaxEventsPerBatch +The maximum number of events in a batch. +This value must be between 1 and 5000. +This parameter is valid when Endpint Type is webhook only. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Name +EventGrid event subscription name. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: EventSubscriptionName + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PartnerTopicName +Event Grid partner topic name. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PreferredBatchSizeInKiloByte +The preferred batch size in kilobytes. +This value must be between 1 and 1024. +This parameter is valid when Endpint Type is webhook only. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: ResourceGroup + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -StorageQueueMessageTtl +The time in milliseconds for time to live of a storage queue message + +```yaml +Type: Int64 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -SubjectBeginsWith +Filter that specifies that only events matching the specified subject prefix will be included. +If not specified, events with all subject prefixes will be included. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -SubjectCaseSensitive +Filter that specifies that the subject field should be compared in a case sensitive manner. +If not specified, subject will be compared in a case insensitive manner. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -SubjectEndsWith +Filter that specifies that only events matching the specified subject suffix will be included. +If not specified, events with all subject suffixes will be included. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### System.String[] + +### System.Int32 + +### System.DateTime + +### System.Int64 + +### System.Collections.Hashtable[] + +### System.Management.Automation.SwitchParameter + +## OUTPUTS + +### Microsoft.Azure.Commands.EventGrid.Models.PSEventSubscription + +## NOTES + +## RELATED LINKS diff --git a/src/EventGrid/EventGrid/help/New-AzEventGridSystemTopic.md b/src/EventGrid/EventGrid/help/New-AzEventGridSystemTopic.md index 9a1ea3f2f4a1..12687c00bb52 100644 --- a/src/EventGrid/EventGrid/help/New-AzEventGridSystemTopic.md +++ b/src/EventGrid/EventGrid/help/New-AzEventGridSystemTopic.md @@ -25,7 +25,7 @@ New-AzEventGridSystemTopic -ResourceGroupName -Name -Source [-PartnerNamespaceName] [-Name] + [-Force] [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ChannelInputObjectParameterSet +``` +Remove-AzEventGridChannel [-InputObject] [-Force] [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Removes an Azure Event Grid Channel. + +## EXAMPLES + +### Example 1 +```powershell +Remove-AzEventGridChannel -ResourceGroupName MyResourceGroupName -Name Channel1 +``` + +Removes the Event Grid Channel \`Channel1\` in resource group \`MyResourceGroupName\`. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +Indicates that the cmdlet does not prompt you for confirmation. +By default, this cmdlet prompts you to confirm that you want to delete the resource + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Channel object + +```yaml +Type: PSChannel +Parameter Sets: ChannelInputObjectParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Name +The name of the Event Grid channel. + +```yaml +Type: String +Parameter Sets: ChannelNameParameterSet +Aliases: ChannelName + +Required: True +Position: 2 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PartnerNamespaceName +Event Grid partner namespace name. + +```yaml +Type: String +Parameter Sets: ChannelNameParameterSet +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PassThru +{{ Fill PassThru Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: String +Parameter Sets: ChannelNameParameterSet +Aliases: ResourceGroup + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.EventGrid.Models.PSChannel + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS diff --git a/src/EventGrid/EventGrid/help/Remove-AzEventGridPartnerConfiguration.md b/src/EventGrid/EventGrid/help/Remove-AzEventGridPartnerConfiguration.md new file mode 100644 index 000000000000..f15db8cfda08 --- /dev/null +++ b/src/EventGrid/EventGrid/help/Remove-AzEventGridPartnerConfiguration.md @@ -0,0 +1,163 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml +Module Name: Az.EventGrid +online version: +schema: 2.0.0 +--- + +# Remove-AzEventGridPartnerConfiguration + +## SYNOPSIS +Removes an Azure Event Grid Partner Configuration. + +## SYNTAX + +### ResourceGroupNameParameterSet (Default) +``` +Remove-AzEventGridPartnerConfiguration [-ResourceGroupName] [-Force] [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### PartnerConfigurationInputObjectParameterSet +``` +Remove-AzEventGridPartnerConfiguration [-InputObject] [-Force] [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Removes an Azure Event Grid Partner Configuration. + +## EXAMPLES + +### Example 1 +```powershell +Remove-AzEventGridPartnerConfiguration -ResourceGroupName MyResourceGroupName +``` + +Removes the Event Grid partner configuration in resource group \`MyResourceGroupName\`. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +Indicates that the cmdlet does not prompt you for confirmation. +By default, this cmdlet prompts you to confirm that you want to delete the resource + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +PartnerConfiguration object. + +```yaml +Type: PSPartnerConfiguration +Parameter Sets: PartnerConfigurationInputObjectParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PassThru +{{ Fill PassThru Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: String +Parameter Sets: ResourceGroupNameParameterSet +Aliases: ResourceGroup + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.EventGrid.Models.PSPartnerConfiguration + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS diff --git a/src/EventGrid/EventGrid/help/Remove-AzEventGridPartnerNamespace.md b/src/EventGrid/EventGrid/help/Remove-AzEventGridPartnerNamespace.md new file mode 100644 index 000000000000..c454937a381a --- /dev/null +++ b/src/EventGrid/EventGrid/help/Remove-AzEventGridPartnerNamespace.md @@ -0,0 +1,178 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml +Module Name: Az.EventGrid +online version: +schema: 2.0.0 +--- + +# Remove-AzEventGridPartnerNamespace + +## SYNOPSIS +Removes an Azure Event Grid Partner Namespace. + +## SYNTAX + +### PartnerNamespaceNameParameterSet (Default) +``` +Remove-AzEventGridPartnerNamespace [-ResourceGroupName] [-Name] [-Force] [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### PartnerNamespaceInputObjectParameterSet +``` +Remove-AzEventGridPartnerNamespace [-InputObject] [-Force] [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Removes an Azure Event Grid Partner Namespace. + +## EXAMPLES + +### Example 1 +```powershell +Remove-AzEventGridPartnerNamespace -ResourceGroupName MyResourceGroupName -Name PartnerNamespace1 +``` + +Removes the Event Grid partner namespace \`PartnerNamespace1\` in resource group \`MyResourceGroupName\`. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +Indicates that the cmdlet does not prompt you for confirmation. +By default, this cmdlet prompts you to confirm that you want to delete the resource + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +PartnerNamespace object + +```yaml +Type: PSPartnerNamespace +Parameter Sets: PartnerNamespaceInputObjectParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Name +Event Grid partner namespace name. + +```yaml +Type: String +Parameter Sets: PartnerNamespaceNameParameterSet +Aliases: PartnerNamespaceName + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PassThru +{{ Fill PassThru Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: String +Parameter Sets: PartnerNamespaceNameParameterSet +Aliases: ResourceGroup + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.EventGrid.Models.PSPartnerNamespace + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS diff --git a/src/EventGrid/EventGrid/help/Remove-AzEventGridPartnerRegistration.md b/src/EventGrid/EventGrid/help/Remove-AzEventGridPartnerRegistration.md new file mode 100644 index 000000000000..dde00ac426bb --- /dev/null +++ b/src/EventGrid/EventGrid/help/Remove-AzEventGridPartnerRegistration.md @@ -0,0 +1,178 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml +Module Name: Az.EventGrid +online version: +schema: 2.0.0 +--- + +# Remove-AzEventGridPartnerRegistration + +## SYNOPSIS +Removes an Azure Event Grid Partner Registration. + +## SYNTAX + +### PartnerRegistrationNameParameterSet (Default) +``` +Remove-AzEventGridPartnerRegistration [-ResourceGroupName] [-Name] [-Force] [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### PartnerRegistrationInputObjectParameterSet +``` +Remove-AzEventGridPartnerRegistration [-InputObject] [-Force] [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Removes an Azure Event Grid Partner Registration. + +## EXAMPLES + +### Example 1 +```powershell +Remove-AzEventGridPartnerRegistration -ResourceGroupName MyResourceGroupName -Name PartnerRegistration1 +``` + +Removes the Event Grid partner registration \`PartnerRegistration1\` in resource group \`MyResourceGroupName\`. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +Indicates that the cmdlet does not prompt you for confirmation. +By default, this cmdlet prompts you to confirm that you want to delete the resource + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +PartnerRegistration object + +```yaml +Type: PSPartnerRegistration +Parameter Sets: PartnerRegistrationInputObjectParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Name +Event Grid partner registration name. + +```yaml +Type: String +Parameter Sets: PartnerRegistrationNameParameterSet +Aliases: PartnerRegistrationName + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PassThru +{{ Fill PassThru Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: String +Parameter Sets: PartnerRegistrationNameParameterSet +Aliases: ResourceGroup + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.EventGrid.Models.PSPartnerRegistration + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS diff --git a/src/EventGrid/EventGrid/help/Remove-AzEventGridPartnerTopic.md b/src/EventGrid/EventGrid/help/Remove-AzEventGridPartnerTopic.md new file mode 100644 index 000000000000..2516d09c3379 --- /dev/null +++ b/src/EventGrid/EventGrid/help/Remove-AzEventGridPartnerTopic.md @@ -0,0 +1,178 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml +Module Name: Az.EventGrid +online version: +schema: 2.0.0 +--- + +# Remove-AzEventGridPartnerTopic + +## SYNOPSIS +Removes an Azure Event Grid Partner Topic. + +## SYNTAX + +### PartnerTopicNameParameterSet (Default) +``` +Remove-AzEventGridPartnerTopic [-ResourceGroupName] [-Name] [-Force] [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### PartnerTopicInputObjectParameterSet +``` +Remove-AzEventGridPartnerTopic [-InputObject] [-Force] [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Removes an Azure Event Grid Partner Topic. + +## EXAMPLES + +### Example 1 +```powershell +Remove-AzEventGridPartnerTopic -ResourceGroupName MyResourceGroupName -Name PartnerTopic1 +``` + +Removes the Event Grid Partner Topic \`PartnerTopic1\` in resource group \`MyResourceGroupName\`. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +Indicates that the cmdlet does not prompt you for confirmation. +By default, this cmdlet prompts you to confirm that you want to delete the resource + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +PartnerTopic object. + +```yaml +Type: PSPartnerTopic +Parameter Sets: PartnerTopicInputObjectParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Name +Event Grid partner topic name. + +```yaml +Type: String +Parameter Sets: PartnerTopicNameParameterSet +Aliases: PartnerTopicName + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PassThru +{{ Fill PassThru Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: String +Parameter Sets: PartnerTopicNameParameterSet +Aliases: ResourceGroup + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.EventGrid.Models.PSPartnerTopic + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS diff --git a/src/EventGrid/EventGrid/help/Remove-AzEventGridPartnerTopicEventSubscription.md b/src/EventGrid/EventGrid/help/Remove-AzEventGridPartnerTopicEventSubscription.md new file mode 100644 index 000000000000..6c02d019c599 --- /dev/null +++ b/src/EventGrid/EventGrid/help/Remove-AzEventGridPartnerTopicEventSubscription.md @@ -0,0 +1,198 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml +Module Name: Az.EventGrid +online version: +schema: 2.0.0 +--- + +# Remove-AzEventGridPartnerTopicEventSubscription + +## SYNOPSIS +Removes an Azure Event Grid partner topic event subscription. + +## SYNTAX + +### PartnerTopicNameParameterSet (Default) +``` +Remove-AzEventGridPartnerTopicEventSubscription [-Force] [-PassThru] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### PartnerTopicEventSubscriptionParameterSet +``` +Remove-AzEventGridPartnerTopicEventSubscription -Name -ResourceGroupName + -PartnerTopicName [-Force] [-PassThru] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +### ResourceIdPartnerTopicEventSubscriptionParameterSet +``` +Remove-AzEventGridPartnerTopicEventSubscription [-ResourceId] [-Force] [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Removes an Azure Event Grid event subscription for an Azure Event Grid partner topic. + +## EXAMPLES + +### Example 1 +```powershell +Remove-AzEventGridPartnerTopicEventSubscription -ResourceGroup MyResourceGroup -PartnerTopicName Topic1 -EventSubscriptionName EventSubscription1 +``` + +Removes the event subscription \`EventSubscription1\` to an Azure Event Grid partner topic \`Topic1\` in resource group \`MyResourceGroupName\`. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +Indicates that the cmdlet does not prompt you for confirmation. +By default, this cmdlet prompts you to confirm that you want to delete the resource + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +EventGrid event subscription name. + +```yaml +Type: String +Parameter Sets: PartnerTopicEventSubscriptionParameterSet +Aliases: EventSubscriptionName + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PartnerTopicName +Event Grid partner topic name. + +```yaml +Type: String +Parameter Sets: PartnerTopicEventSubscriptionParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PassThru +{{ Fill PassThru Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: String +Parameter Sets: PartnerTopicEventSubscriptionParameterSet +Aliases: ResourceGroup + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceId +Resource Identifier representing the Event Grid Event Subscription. + +```yaml +Type: String +Parameter Sets: ResourceIdPartnerTopicEventSubscriptionParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS diff --git a/src/EventGrid/EventGrid/help/Revoke-AzEventGridPartnerConfiguration.md b/src/EventGrid/EventGrid/help/Revoke-AzEventGridPartnerConfiguration.md new file mode 100644 index 000000000000..5ba676d43c6c --- /dev/null +++ b/src/EventGrid/EventGrid/help/Revoke-AzEventGridPartnerConfiguration.md @@ -0,0 +1,186 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml +Module Name: Az.EventGrid +online version: +schema: 2.0.0 +--- + +# Revoke-AzEventGridPartnerConfiguration + +## SYNOPSIS +Revokes access to a partner in a partner configuration. + +## SYNTAX + +### ResourceGroupNameParameterSet (Default) +``` +Revoke-AzEventGridPartnerConfiguration [-ResourceGroupName] [-PartnerRegistrationImmutableId ] + [-PartnerName ] [-AuthorizationExpirationTime ] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### PartnerConfigurationInputObjectParameterSet +``` +Revoke-AzEventGridPartnerConfiguration [-InputObject] + [-PartnerRegistrationImmutableId ] [-PartnerName ] [-AuthorizationExpirationTime ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The Revoke-AzEventGridPartnerConfiguration revokes access to a partner in a partner configuration using either the partner registration immutable ID or the partner name. At least one of these two parameters is required. + +## EXAMPLES + +### Example 1 +```powershell +Revoke-AzEventGridPartnerConfiguration -ResourceGroupName MyResourceGroupName -PartnerName Contoso.Finance +``` + +Revokes access for partner name \`Contoso.Finance\` for the partner configuration in resource group \`MyResourceGroupName\`. + +## PARAMETERS + +### -AuthorizationExpirationTime +Expiration time of the partner authorization. +If this timer expires, any request from this partner to create, update or delete resources in subscriber's context will fail. +If specified, the allowed values are between 1 to the value of defaultMaximumExpirationTimeInDays specified in PartnerConfiguration. +If not specified, the default value will be the value of defaultMaximumExpirationTimeInDays specified in PartnerConfiguration or 7 if this value is not specified. + +```yaml +Type: DateTime +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +PartnerConfiguration object. + +```yaml +Type: PSPartnerConfiguration +Parameter Sets: PartnerConfigurationInputObjectParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PartnerName +Parter name. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PartnerRegistrationImmutableId +Immutable id of the corresponding partner registration + +```yaml +Type: Guid +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: String +Parameter Sets: ResourceGroupNameParameterSet +Aliases: ResourceGroup + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.EventGrid.Models.PSPartnerConfiguration + +### System.Nullable`1[[System.Guid, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] + +### System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] + +## OUTPUTS + +### Microsoft.Azure.Commands.EventGrid.Models.PSPartnerConfiguration + +## NOTES + +## RELATED LINKS diff --git a/src/EventGrid/EventGrid/help/Update-AzEventGridChannel.md b/src/EventGrid/EventGrid/help/Update-AzEventGridChannel.md new file mode 100644 index 000000000000..d367d0e4d64b --- /dev/null +++ b/src/EventGrid/EventGrid/help/Update-AzEventGridChannel.md @@ -0,0 +1,217 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml +Module Name: Az.EventGrid +online version: +schema: 2.0.0 +--- + +# Update-AzEventGridChannel + +## SYNOPSIS +Updates the properties of an Event Grid channel. + +## SYNTAX + +### ChannelNameParameterSet (Default) +``` +Update-AzEventGridChannel [-ResourceGroupName] [-PartnerNamespaceName] [-Name] + [-EventTypeKind ] [-InlineEvent ] [-ExpirationTimeIfNotActivatedUtc ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ChannelInputObjectParameterSet +``` +Update-AzEventGridChannel [-InputObject] [-EventTypeKind ] [-InlineEvent ] + [-ExpirationTimeIfNotActivatedUtc ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +Updates the properties of an Event Grid channel. + +## EXAMPLES + +### Example 1 +```powershell +Update-AzEventGridChannel -ResourceGroupName MyResourceGroupName -PartnerNamespaceName PartnerNamespace1 -Name Channel1 -ExpirationTimeIfNotActivatedUtc (Get-Date).AddDays(8) +``` + +Updates the Event Grid channel so partner topics will expire 8 days from the current time if not activated. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EventTypeKind +The kind of event type used. +Possible values include: 'Inline' + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ExpirationTimeIfNotActivatedUtc +Expiration time of the partner topic. +If this timer expires while the partner topic is still never activated, the partner topic and corresponding event channel are deleted. + +```yaml +Type: DateTime +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -InlineEvent +Hashtable representing information on inline events. +The inline event keys are of type string which represents the name of the event.The inline event values are Hashtables containing the optional keys description, displayName, documentationUrl, and dataSchemaUrl which define the information about the inline event. + +```yaml +Type: Hashtable +Parameter Sets: (All) +Aliases: +Accepted values: Inline + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -InputObject +Channel object + +```yaml +Type: PSChannel +Parameter Sets: ChannelInputObjectParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Name +The name of the Event Grid channel. + +```yaml +Type: String +Parameter Sets: ChannelNameParameterSet +Aliases: ChannelName + +Required: True +Position: 2 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PartnerNamespaceName +Event Grid partner namespace name. + +```yaml +Type: String +Parameter Sets: ChannelNameParameterSet +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: String +Parameter Sets: ChannelNameParameterSet +Aliases: ResourceGroup + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.EventGrid.Models.PSChannel + +### System.Collections.Hashtable + +### System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] + +## OUTPUTS + +### Microsoft.Azure.Commands.EventGrid.Models.PSChannel + +## NOTES + +## RELATED LINKS diff --git a/src/EventGrid/EventGrid/help/Update-AzEventGridPartnerConfiguration.md b/src/EventGrid/EventGrid/help/Update-AzEventGridPartnerConfiguration.md new file mode 100644 index 000000000000..2d470b705c91 --- /dev/null +++ b/src/EventGrid/EventGrid/help/Update-AzEventGridPartnerConfiguration.md @@ -0,0 +1,170 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml +Module Name: Az.EventGrid +online version: +schema: 2.0.0 +--- + +# Update-AzEventGridPartnerConfiguration + +## SYNOPSIS +Updates the details of an Event Grid partner configuration. + +## SYNTAX + +### ResourceGroupNameParameterSet (Default) +``` +Update-AzEventGridPartnerConfiguration [-ResourceGroupName] [-Tag ] + [-MaxExpirationTimeInDays ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### PartnerConfigurationInputObjectParameterSet +``` +Update-AzEventGridPartnerConfiguration [-InputObject] [-Tag ] + [-MaxExpirationTimeInDays ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +Updates the details of an Event Grid partner configuration. + +## EXAMPLES + +### Example 1 +```powershell +Update-AzEventGridPartnerConfiguration -ResourceGroupName MyResourceGroupName -MaxExpirationTimeInDays 8 +``` + +Updates the maximum expiration time in days property of the partner configuration in the resource group \`MyResourceGroupName\`. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +PartnerConfiguration object. + +```yaml +Type: PSPartnerConfiguration +Parameter Sets: PartnerConfigurationInputObjectParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -MaxExpirationTimeInDays +Expiration time in days used to validate the authorization expiration time for each authorized partner. +If this parameter is not specified, the default is 7 days. +Otherwise, allowed values are between 1 and 365 days. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: String +Parameter Sets: ResourceGroupNameParameterSet +Aliases: ResourceGroup + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Tag +Hashtable which represents resource Tags. + +```yaml +Type: Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.EventGrid.Models.PSPartnerConfiguration + +### System.Collections.Hashtable + +### System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] + +## OUTPUTS + +### Microsoft.Azure.Commands.EventGrid.Models.PSPartnerConfiguration + +## NOTES + +## RELATED LINKS diff --git a/src/EventGrid/EventGrid/help/Update-AzEventGridPartnerTopic.md b/src/EventGrid/EventGrid/help/Update-AzEventGridPartnerTopic.md new file mode 100644 index 000000000000..9449b6e2f80c --- /dev/null +++ b/src/EventGrid/EventGrid/help/Update-AzEventGridPartnerTopic.md @@ -0,0 +1,217 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml +Module Name: Az.EventGrid +online version: +schema: 2.0.0 +--- + +# Update-AzEventGridPartnerTopic + +## SYNOPSIS +Updates the properties of an Event Grid partner topic. + +## SYNTAX + +### PartnerTopicNameParameterSet (Default) +``` +Update-AzEventGridPartnerTopic [-ResourceGroupName] [-Name] [-Tag ] + [-IdentityType ] [-IdentityId ] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +### PartnerTopicInputObjectParameterSet +``` +Update-AzEventGridPartnerTopic [-InputObject] [-Tag ] [-IdentityType ] + [-IdentityId ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Updates the properties of an Event Grid partner topic. Can be used to update the identity and tags of a partner topic. + +## EXAMPLES + +### Example 1 +```powershell +Update-AzEventGridPartnerTopic -ResourceGroup MyResourceGroupName -Name Topic1 -Tag @{ Department="Finance"; Environment="Test" } +``` + +Sets the properties of the Event Grid Partner topic \`Topic1\` in resource group \`MyResourceGroupName\` to replace the tags with the specified tags "Department" and "Environment". + +### Example 2 +```powershell +Update-AzEventGridPartnerTopic -ResourceGroup MyResourceGroupName -Name Topic1 -IdentityType "SystemAssigned" +``` + +Sets the properties of the Event Grid Partner topic \`Topic1\` in resource group \`MyResourceGroupName\` to change identity type to \`SystemAssigned\`. + +### Example 3 +```powershell +$id1 = '/subscriptions/{subscriptionId}/resourceGroups/{resourcegroup}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/MSIName' +$id2 = '/subscriptions/{subscriptionId}/resourceGroups/{resourcegroup}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/MSIName' + +Update-AzEventGridPartnerTopic -ResourceGroup MyResourceGroupName -Name Topic1 -IdentityType "UserAssigned" -IdentityId $id1,$id2 +``` + +Sets the properties of the Event Grid Partner topic \`Topic1\` in resource group \`MyResourceGroupName\` to change identity type to \`UserAssigned\` with given identity ids. + + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -IdentityId +The list of user assigned identities + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -IdentityType +Different identity types. +Could be either of following 'SystemAssigned', 'UserAssigned', 'SystemAssigned, UserAssigned', 'None' + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Accepted values: SystemAssigned, UserAssigned, SystemAssigned, UserAssigned, None + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -InputObject +PartnerTopic object. + +```yaml +Type: PSPartnerTopic +Parameter Sets: PartnerTopicInputObjectParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Name +Event Grid partner topic name. + +```yaml +Type: String +Parameter Sets: PartnerTopicNameParameterSet +Aliases: PartnerTopicName + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: String +Parameter Sets: PartnerTopicNameParameterSet +Aliases: ResourceGroup + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Tag +Hashtable which represents resource Tags. + +```yaml +Type: Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.EventGrid.Models.PSPartnerTopic + +### System.Collections.Hashtable + +### System.String[] + +## OUTPUTS + +### Microsoft.Azure.Commands.EventGrid.Models.PSPartnerTopic + +## NOTES + +## RELATED LINKS diff --git a/src/EventGrid/EventGrid/help/Update-AzEventGridPartnerTopicEventSubscription.md b/src/EventGrid/EventGrid/help/Update-AzEventGridPartnerTopicEventSubscription.md new file mode 100644 index 000000000000..fbc5472fdab5 --- /dev/null +++ b/src/EventGrid/EventGrid/help/Update-AzEventGridPartnerTopicEventSubscription.md @@ -0,0 +1,393 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml +Module Name: Az.EventGrid +online version: +schema: 2.0.0 +--- + +# Update-AzEventGridPartnerTopicEventSubscription + +## SYNOPSIS +Update the properties of an Event Grid System partner event subscription. + +## SYNTAX + +### PartnerTopicNameParameterSet (Default) +``` +Update-AzEventGridPartnerTopicEventSubscription [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### PartnerTopicEventSubscriptionParameterSet +``` +Update-AzEventGridPartnerTopicEventSubscription -Name -ResourceGroupName + -PartnerTopicName [-DeadLetterEndpoint ] [-DeliveryAttributeMapping ] + [-Endpoint ] [-EndpointType ] [-Label ] [-StorageQueueMessageTtl ] + [-AdvancedFilter ] [-AdvancedFilteringOnArray] [-IncludedEventType ] + [-SubjectBeginsWith ] [-SubjectEndsWith ] [-SubjectCaseSensitive] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ResourceIdPartnerTopicEventSubscriptionParameterSet +``` +Update-AzEventGridPartnerTopicEventSubscription [-ResourceId] [-DeadLetterEndpoint ] + [-DeliveryAttributeMapping ] [-Endpoint ] [-EndpointType ] [-Label ] + [-StorageQueueMessageTtl ] [-AdvancedFilter ] [-AdvancedFilteringOnArray] + [-IncludedEventType ] [-SubjectBeginsWith ] [-SubjectEndsWith ] + [-SubjectCaseSensitive] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Update the properties of an Event Grid partner topic event subscription. This can be used to update the filter, destination, or labels of an existing event subscription. + +## EXAMPLES + +### Example 1 +```powershell +Update-AzEventGridPartnerTopicEventSubscription -EventSubscriptionName ES1 -PartnerTopicName Topic1 -ResourceGroup MyResourceGroupName -Endpoint https://requestb.in/1kxxoui1 +``` + +Updates the endpoint of the event subscription \`ES1\` for system topic \`Topic1\` in resource group \`MyResourceGroupName\` to \`https://requestb.in/1kxxoui1\` + +### Example 2 +```powershell +$labels = "Finance", "HR" +Update-AzEventGridPartnerTopicEventSubscription -EventSubscriptionName ES1 -PartnerTopicName Topic1 -ResourceGroup MyResourceGroupName -Label $labels +``` + +Updates the properties of the event subscription \`ES1\` for system topic \`Topic1\` in \`MyResourceGroupName\` with the new labels $labels. + +### Example 3 +```powershell +Update-AzEventGridPartnerTopicEventSubscription -EventSubscriptionName ES1 -PartnerTopicName Topic1 -ResourceGroup MyResourceGroupName -Endpoint https://requestb.in/1kxxoui1 -SubjectEndsWith "jpg" +``` + +Updates the properties of the event subscription \`ES1\` for system topic \`Topic1\` in \`MyResourceGroupName\` with new endpoint \`https://requestb.in/1kxxoui1\` and the new SubjectEndsWith filter as \`jpg\` + +## PARAMETERS + +### -AdvancedFilter +Advanced filter that specifies an array of multiple Hashtable values that are used for the attribute-based filtering. +Each Hashtable value has the following keys-value info: Operation, Key and Value or Values. +Operator can be one of the following values: NumberIn, NumberNotIn, NumberLessThan, NumberGreaterThan, NumberLessThanOrEquals, NumberGreaterThanOrEquals, BoolEquals, StringIn, StringNotIn, StringBeginsWith, StringEndsWith or StringContains. +Key represents the payload property where the advanced filtering policies are applied. +Finally, Value or Values represent the value or set of values to be matched. +This can be a single value of the corresponding type or an array of values. +As an example of the advanced filter parameters: $AdvancedFilters=@($AdvFilter1, $AdvFilter2) where $AdvFilter1=@{operator="NumberIn"; key="Data.Key1"; Values=@(1,2)} and $AdvFilter2=@{operator="StringBringsWith"; key="Subject"; Values=@("SubjectPrefix1","SubjectPrefix2")} + +```yaml +Type: Hashtable[] +Parameter Sets: PartnerTopicEventSubscriptionParameterSet, ResourceIdPartnerTopicEventSubscriptionParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -AdvancedFilteringOnArray +The presence of this parameter denotes that advanced filtering on arrays is enabled + +```yaml +Type: SwitchParameter +Parameter Sets: PartnerTopicEventSubscriptionParameterSet, ResourceIdPartnerTopicEventSubscriptionParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -DeadLetterEndpoint +The endpoint used for storing undelivered events. +Specify the Azure resource ID of a Storage blob container. +For example: /subscriptions/\[SubscriptionId\]/resourceGroups/\[ResourceGroupName\]/providers/Microsoft.Storage/storageAccounts/\[StorageAccountName\]/blobServices/default/containers/\[ContainerName\]. + +```yaml +Type: String +Parameter Sets: PartnerTopicEventSubscriptionParameterSet, ResourceIdPartnerTopicEventSubscriptionParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DeliveryAttributeMapping +The delivery attribute mappings for this system topic event subscription + +```yaml +Type: String[] +Parameter Sets: PartnerTopicEventSubscriptionParameterSet, ResourceIdPartnerTopicEventSubscriptionParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Endpoint +Event subscription destination endpoint. +This can be a webhook URL, or the Azure resource ID of an EventHub, storage queue, hybridconnection, servicebusqueue, servicebustopic or azurefunction. +For example, the resource ID for a hybrid connection takes the following form: /subscriptions/\[Azure Subscription ID\]/resourceGroups/\[ResourceGroupName\]/providers/Microsoft.Relay/namespaces/\[NamespaceName\]/hybridConnections/\[HybridConnectionName\]. +It is expected that the destination endpoint to be created and available for use before executing any Event Grid cmdlets. + +```yaml +Type: String +Parameter Sets: PartnerTopicEventSubscriptionParameterSet, ResourceIdPartnerTopicEventSubscriptionParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -EndpointType +Endpoint Type. +This can be webhook, eventhub, storagequeue, hybridconnection, servicebusqueue, servicebustopic or azurefunction. +Default value is webhook. + +```yaml +Type: String +Parameter Sets: PartnerTopicEventSubscriptionParameterSet, ResourceIdPartnerTopicEventSubscriptionParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -IncludedEventType +Filter that specifies a list of event types to include. +If not specified, all event types (for the custom topics and domains) or default event types (for other topic types) will be included. + +```yaml +Type: String[] +Parameter Sets: PartnerTopicEventSubscriptionParameterSet, ResourceIdPartnerTopicEventSubscriptionParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Label +Labels for the event subscription. + +```yaml +Type: String[] +Parameter Sets: PartnerTopicEventSubscriptionParameterSet, ResourceIdPartnerTopicEventSubscriptionParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Name +EventGrid event subscription name. + +```yaml +Type: String +Parameter Sets: PartnerTopicEventSubscriptionParameterSet +Aliases: EventSubscriptionName + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PartnerTopicName +Event Grid partner topic name. + +```yaml +Type: String +Parameter Sets: PartnerTopicEventSubscriptionParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: String +Parameter Sets: PartnerTopicEventSubscriptionParameterSet +Aliases: ResourceGroup + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceId +Resource Identifier representing the Event Grid Event Subscription. + +```yaml +Type: String +Parameter Sets: ResourceIdPartnerTopicEventSubscriptionParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -StorageQueueMessageTtl +The time in milliseconds for time to live of a storage queue message + +```yaml +Type: Int64 +Parameter Sets: PartnerTopicEventSubscriptionParameterSet, ResourceIdPartnerTopicEventSubscriptionParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -SubjectBeginsWith +Filter that specifies that only events matching the specified subject prefix will be included. +If not specified, events with all subject prefixes will be included. + +```yaml +Type: String +Parameter Sets: PartnerTopicEventSubscriptionParameterSet, ResourceIdPartnerTopicEventSubscriptionParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -SubjectCaseSensitive +Filter that specifies that the subject field should be compared in a case sensitive manner. +If not specified, subject will be compared in a case insensitive manner. + +```yaml +Type: SwitchParameter +Parameter Sets: PartnerTopicEventSubscriptionParameterSet, ResourceIdPartnerTopicEventSubscriptionParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -SubjectEndsWith +Filter that specifies that only events matching the specified subject suffix will be included. +If not specified, events with all subject suffixes will be included. + +```yaml +Type: String +Parameter Sets: PartnerTopicEventSubscriptionParameterSet, ResourceIdPartnerTopicEventSubscriptionParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### System.String[] + +### System.Int64 + +### System.Collections.Hashtable[] + +### System.Management.Automation.SwitchParameter + +## OUTPUTS + +### Microsoft.Azure.Commands.EventGrid.Models.PSEventSubscription + +## NOTES + +## RELATED LINKS