From 5c20d45d00e8a153c73116a47a86d0013d545dc3 Mon Sep 17 00:00:00 2001 From: Jinpei Li Date: Tue, 28 Nov 2023 21:52:31 +0800 Subject: [PATCH 1/5] update custom location api version --- .../Az.CustomLocation.psd1 | 3 +- .../CustomLocation.Autorest/README.md | 45 +- .../customlocations-resourceSyncRules.json | 95 ++ .../customlocations.json | 64 +- .../custom/New-AzCustomLocation.ps1 | 100 +- .../custom/Update-AzCustomLocation.ps1 | 70 +- .../docs/Az.CustomLocation.md | 20 +- ...ind-AzCustomLocationTargetResourceGroup.md | 255 ++++ .../docs/Get-AzCustomLocation.md | 53 +- ...Get-AzCustomLocationEnabledResourceType.md | 13 +- .../Get-AzCustomLocationResourceSyncRule.md | 195 +++ .../docs/New-AzCustomLocation.md | 137 ++- ...-AzCustomLocationMatchExpressionsObject.md | 98 ++ .../New-AzCustomLocationResourceSyncRule.md | 386 ++++++ .../docs/Remove-AzCustomLocation.md | 21 +- ...Remove-AzCustomLocationResourceSyncRule.md | 233 ++++ .../docs/Update-AzCustomLocation.md | 110 +- ...Update-AzCustomLocationResourceSyncRule.md | 401 +++++++ ...ind-AzCustomLocationTargetResourceGroup.md | 22 + .../examples/Get-AzCustomLocation.md | 37 +- ...Get-AzCustomLocationEnabledResourceType.md | 6 +- .../Get-AzCustomLocationResourceSyncRule.md | 25 + .../examples/New-AzCustomLocation.md | 14 +- ...-AzCustomLocationMatchExpressionsObject.md | 12 + .../New-AzCustomLocationResourceSyncRule.md | 13 + .../examples/Remove-AzCustomLocation.md | 5 +- ...Remove-AzCustomLocationResourceSyncRule.md | 22 + .../examples/Update-AzCustomLocation.md | 19 +- ...Update-AzCustomLocationResourceSyncRule.md | 43 + .../test/AzCustomLocation.Recording.json | 1067 +++++------------ .../test/AzCustomLocation.Tests.ps1 | 22 +- ...tomLocationResourceSyncRule.Recording.json | 1019 ++++++++++++++++ ...AzCustomLocationResourceSyncRule.Tests.ps1 | 112 ++ ...ustomLocationTargetResourceGroup.Tests.ps1 | 33 + ...AzCustomLocationResourceSyncRule.Tests.ps1 | 33 + .../test/New-AzCustomLocation.Tests.ps1 | 12 + ...omLocationMatchExpressionsObject.Tests.ps1 | 21 + ...AzCustomLocationResourceSyncRule.Tests.ps1 | 37 + ...AzCustomLocationResourceSyncRule.Tests.ps1 | 29 + .../test/Update-AzCustomLocation.Tests.ps1 | 8 + ...AzCustomLocationResourceSyncRule.Tests.ps1 | 37 + .../CustomLocation.Autorest/test/env.json | 24 +- .../CustomLocation.Autorest/test/utils.ps1 | 28 +- 43 files changed, 3942 insertions(+), 1057 deletions(-) create mode 100644 src/CustomLocation/CustomLocation.Autorest/UX/microsoft.extendedlocation/customlocations-resourceSyncRules.json create mode 100644 src/CustomLocation/CustomLocation.Autorest/docs/Find-AzCustomLocationTargetResourceGroup.md create mode 100644 src/CustomLocation/CustomLocation.Autorest/docs/Get-AzCustomLocationResourceSyncRule.md create mode 100644 src/CustomLocation/CustomLocation.Autorest/docs/New-AzCustomLocationMatchExpressionsObject.md create mode 100644 src/CustomLocation/CustomLocation.Autorest/docs/New-AzCustomLocationResourceSyncRule.md create mode 100644 src/CustomLocation/CustomLocation.Autorest/docs/Remove-AzCustomLocationResourceSyncRule.md create mode 100644 src/CustomLocation/CustomLocation.Autorest/docs/Update-AzCustomLocationResourceSyncRule.md create mode 100644 src/CustomLocation/CustomLocation.Autorest/examples/Find-AzCustomLocationTargetResourceGroup.md create mode 100644 src/CustomLocation/CustomLocation.Autorest/examples/Get-AzCustomLocationResourceSyncRule.md create mode 100644 src/CustomLocation/CustomLocation.Autorest/examples/New-AzCustomLocationMatchExpressionsObject.md create mode 100644 src/CustomLocation/CustomLocation.Autorest/examples/New-AzCustomLocationResourceSyncRule.md create mode 100644 src/CustomLocation/CustomLocation.Autorest/examples/Remove-AzCustomLocationResourceSyncRule.md create mode 100644 src/CustomLocation/CustomLocation.Autorest/examples/Update-AzCustomLocationResourceSyncRule.md create mode 100644 src/CustomLocation/CustomLocation.Autorest/test/AzCustomLocationResourceSyncRule.Recording.json create mode 100644 src/CustomLocation/CustomLocation.Autorest/test/AzCustomLocationResourceSyncRule.Tests.ps1 create mode 100644 src/CustomLocation/CustomLocation.Autorest/test/Find-AzCustomLocationTargetResourceGroup.Tests.ps1 create mode 100644 src/CustomLocation/CustomLocation.Autorest/test/Get-AzCustomLocationResourceSyncRule.Tests.ps1 create mode 100644 src/CustomLocation/CustomLocation.Autorest/test/New-AzCustomLocationMatchExpressionsObject.Tests.ps1 create mode 100644 src/CustomLocation/CustomLocation.Autorest/test/New-AzCustomLocationResourceSyncRule.Tests.ps1 create mode 100644 src/CustomLocation/CustomLocation.Autorest/test/Remove-AzCustomLocationResourceSyncRule.Tests.ps1 create mode 100644 src/CustomLocation/CustomLocation.Autorest/test/Update-AzCustomLocationResourceSyncRule.Tests.ps1 diff --git a/src/CustomLocation/CustomLocation.Autorest/Az.CustomLocation.psd1 b/src/CustomLocation/CustomLocation.Autorest/Az.CustomLocation.psd1 index f4816bca9e25..bcfb59b33ad4 100644 --- a/src/CustomLocation/CustomLocation.Autorest/Az.CustomLocation.psd1 +++ b/src/CustomLocation/CustomLocation.Autorest/Az.CustomLocation.psd1 @@ -11,8 +11,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredAssemblies = './bin/Az.CustomLocation.private.dll' FormatsToProcess = './Az.CustomLocation.format.ps1xml' - FunctionsToExport = 'Get-AzCustomLocation', 'Get-AzCustomLocationEnabledResourceType', 'New-AzCustomLocation', 'Remove-AzCustomLocation', 'Update-AzCustomLocation', '*' - AliasesToExport = '*' + FunctionsToExport = 'Find-AzCustomLocationTargetResourceGroup', 'Get-AzCustomLocation', 'Get-AzCustomLocationEnabledResourceType', 'Get-AzCustomLocationResourceSyncRule', 'New-AzCustomLocation', 'New-AzCustomLocationMatchExpressionsObject', 'New-AzCustomLocationResourceSyncRule', 'Remove-AzCustomLocation', 'Remove-AzCustomLocationResourceSyncRule', 'Update-AzCustomLocation', 'Update-AzCustomLocationResourceSyncRule' PrivateData = @{ PSData = @{ Tags = 'Azure', 'ResourceManager', 'ARM', 'PSModule', 'CustomLocation' diff --git a/src/CustomLocation/CustomLocation.Autorest/README.md b/src/CustomLocation/CustomLocation.Autorest/README.md index 6c83dc2664f5..59f843fda2cc 100644 --- a/src/CustomLocation/CustomLocation.Autorest/README.md +++ b/src/CustomLocation/CustomLocation.Autorest/README.md @@ -17,7 +17,7 @@ This directory contains the PowerShell module for the CustomLocation service. This module was primarily generated via [AutoRest](https://github.com/Azure/autorest) using the [PowerShell](https://github.com/Azure/autorest.powershell) extension. ## Module Requirements -- [Az.Accounts module](https://www.powershellgallery.com/packages/Az.Accounts/), version 2.2.3 or greater +- [Az.Accounts module](https://www.powershellgallery.com/packages/Az.Accounts/), version 2.7.5 or greater ## Authentication AutoRest does not generate authentication code for the module. Authentication is handled via Az.Accounts by altering the HTTP payload before it is sent. @@ -30,21 +30,23 @@ For information on how to develop for `Az.CustomLocation`, see [how-to.md](how-t > see https://aka.ms/autorest ``` yaml -commit: c6c9e02ae4de78cd7357bc4a5a7be38e6f1909d0 +commit: f1180941e238bc99ac71f9535ecd126bb8b77d8f require: - $(this-folder)/../../readme.azure.noprofile.md input-file: - - $(repo)/specification/extendedlocation/resource-manager/Microsoft.ExtendedLocation/stable/2021-08-15/customlocations.json + - $(repo)/specification/extendedlocation/resource-manager/Microsoft.ExtendedLocation/preview/2021-08-31-preview/customlocations.json module-version: 0.1.0 title: CustomLocation subject-prefix: $(service-name) identity-correction-for-post: true +resourcegroup-append: true +nested-object-to-string: true +auto-switch-view: false -# For new modules, please avoid setting 3.x using the use-extension method and instead, use 4.x as the default option use-extension: - "@autorest/powershell": "3.x" + "@autorest/powershell": "4.x" directive: - from: swagger-document @@ -63,7 +65,7 @@ directive: "default": { "description": "Error response describing why the operation failed.", "schema": { - "$ref": "https://github.com/Azure/azure-rest-api-specs/blob/c6c9e02ae4de78cd7357bc4a5a7be38e6f1909d0/specification/common-types/resource-management/v2/types.json#/definitions/ErrorResponse" + "$ref": "https://github.com/Azure/azure-rest-api-specs/blob/f1180941e238bc99ac71f9535ecd126bb8b77d8f/specification/common-types/resource-management/v2/types.json#/definitions/ErrorResponse" } } } @@ -94,9 +96,11 @@ directive: transform: return $.replace(/\{resourceName\}\/enabledResourceTypes/g, "{resourceName}/enabledresourcetypes") - where: - variant: ^Create$|^CreateViaIdentity$|^CreateViaIdentityExpanded$|^Update$|^UpdateViaIdentity$ + variant: ^(Create|Update).*(?", + "-Name ", + "-ResourceGroupName ", + "[-SubscriptionId ]" + ] + } + ] + }, + "examples": [ + { + "description": "Gets the details of the resourceSyncRule with a specified resource group, subscription id Custom Location resource name and Resource Sync Rule name.", + "parameters": [ + { + "name": "-CustomLocationName", + "value": "[Path.resourceName]" + }, + { + "name": "-Name", + "value": "[Path.childResourceName]" + }, + { + "name": "-ResourceGroupName", + "value": "[Path.resourceGroupName]" + }, + { + "name": "-SubscriptionId", + "value": "[Path.subscriptionId]" + } + ] + } + ] + }, + { + "name": "Remove-AzCustomLocationResourceSyncRule", + "description": "Deletes the Resource Sync Rule with the specified Resource Sync Rule Name, Custom Location Resource Name, Resource Group, and Subscription Id.", + "path": "/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/microsoft.extendedlocation/customlocations/{resourceName}/resourceSyncRules/{childResourceName}", + "help": { + "learnMore": { + "url": "https://learn.microsoft.com/powershell/module/az.customlocation/remove-azcustomlocationresourcesyncrule" + }, + "parameterSets": [ + { + "parameters": [ + "-CustomLocationName ", + "-Name ", + "-ResourceGroupName ", + "[-SubscriptionId ]" + ] + } + ] + }, + "examples": [ + { + "description": "Deletes the Resource Sync Rule with the specified Resource Sync Rule Name, Custom Location Resource Name, Resource Group, and Subscription Id.", + "parameters": [ + { + "name": "-CustomLocationName", + "value": "[Path.resourceName]" + }, + { + "name": "-Name", + "value": "[Path.childResourceName]" + }, + { + "name": "-ResourceGroupName", + "value": "[Path.resourceGroupName]" + }, + { + "name": "-SubscriptionId", + "value": "[Path.subscriptionId]" + } + ] + } + ] + } + ] +} diff --git a/src/CustomLocation/CustomLocation.Autorest/UX/microsoft.extendedlocation/customlocations.json b/src/CustomLocation/CustomLocation.Autorest/UX/microsoft.extendedlocation/customlocations.json index 539390f1342b..82396ee4ba89 100644 --- a/src/CustomLocation/CustomLocation.Autorest/UX/microsoft.extendedlocation/customlocations.json +++ b/src/CustomLocation/CustomLocation.Autorest/UX/microsoft.extendedlocation/customlocations.json @@ -1,10 +1,72 @@ { "resourceType": "customlocations", - "apiVersion": "2021-08-15", + "apiVersion": "2021-08-31-preview", "learnMore": { "url": "https://learn.microsoft.com/powershell/module/az.customlocation" }, "commands": [ + { + "name": "Find-AzCustomLocationTargetResourceGroup", + "description": "Returns the target resource group associated with the resource sync rules of the Custom Location that match the rules passed in with the Find Target Resource Group Request.", + "path": "/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/microsoft.extendedlocation/customlocations/{resourceName}/findTargetResourceGroup", + "help": { + "learnMore": { + "url": "https://learn.microsoft.com/powershell/module/az.customlocation/find-azcustomlocationtargetresourcegroup" + }, + "parameterSets": [ + { + "parameters": [ + "-CustomLocationName ", + "-ResourceGroupName ", + "[-SubscriptionId ]" + ] + }, + { + "parameters": [ + "-CustomLocationName ", + "-ResourceGroupName ", + "[-SubscriptionId ]" + ] + } + ] + }, + "examples": [ + { + "description": "Returns the target resource group associated with the resource sync rules of the Custom Location that match the rules passed in with the Find Target Resource Group Request.", + "parameters": [ + { + "name": "-CustomLocationName", + "value": "[Path.resourceName]" + }, + { + "name": "-ResourceGroupName", + "value": "[Path.resourceGroupName]" + }, + { + "name": "-SubscriptionId", + "value": "[Path.subscriptionId]" + } + ] + }, + { + "description": "Returns the target resource group associated with the resource sync rules of the Custom Location that match the rules passed in with the Find Target Resource Group Request.", + "parameters": [ + { + "name": "-CustomLocationName", + "value": "[Path.resourceName]" + }, + { + "name": "-ResourceGroupName", + "value": "[Path.resourceGroupName]" + }, + { + "name": "-SubscriptionId", + "value": "[Path.subscriptionId]" + } + ] + } + ] + }, { "name": "Get-AzCustomLocation", "description": "Gets the details of the customLocation with a specified resource group and name.", diff --git a/src/CustomLocation/CustomLocation.Autorest/custom/New-AzCustomLocation.ps1 b/src/CustomLocation/CustomLocation.Autorest/custom/New-AzCustomLocation.ps1 index f742562493cf..d702a5532dbd 100644 --- a/src/CustomLocation/CustomLocation.Autorest/custom/New-AzCustomLocation.ps1 +++ b/src/CustomLocation/CustomLocation.Autorest/custom/New-AzCustomLocation.ps1 @@ -1,7 +1,6 @@ # ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation +# Copyright (c) Microsoft Corporation. All rights reserved. # 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 @@ -11,112 +10,159 @@ # 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. +# Code generated by Microsoft (R) AutoRest Code Generator.Changes may cause incorrect behavior and will be lost if the code +# is regenerated. # ---------------------------------------------------------------------------------- <# .Synopsis -Creates or updates a Custom Location in the specified Subscription and Resource Group +Create a Custom Location in the specified Subscription and Resource Group .Description -Creates or updates a Custom Location in the specified Subscription and Resource Group +Create a Custom Location in the specified Subscription and Resource Group .Example -PS C:\> New-AzCustomLocation -ResourceGroupName azps_test_group -Name azps_test_cluster -Location eastus -ClusterExtensionId "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/azps_test_group/providers/Microsoft.Kubernetes/connectedClusters/azps_test_cluster/providers/Microsoft.KubernetesConfiguration/extensions/azps_test_extension" -HostResourceId "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/azps_test_group/providers/Microsoft.Kubernetes/connectedClusters/azps_test_cluster" -Namespace arc - -Location Name Namespace --------- ---- ---- -eastus azps_test_cluster arc +New-AzCustomLocation -ResourceGroupName azps_test_group -Name azps_test_cluster -Location eastus -ClusterExtensionId "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/azps_test_group/providers/Microsoft.Kubernetes/connectedClusters/azps_test_cluster/providers/Microsoft.KubernetesConfiguration/extensions/azps_test_extension" -HostResourceId "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/azps_test_group/providers/Microsoft.Kubernetes/connectedClusters/azps_test_cluster" -Namespace arc +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocationIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.Api20210815.ICustomLocation +Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocation +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ChildResourceName ]: Resource Sync Rule name. + [Id ]: Resource identity path + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [ResourceName ]: Custom Locations name. + [SubscriptionId ]: The ID of the target subscription. .Link https://learn.microsoft.com/powershell/module/az.customlocation/new-azcustomlocation #> function New-AzCustomLocation { - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.Api20210815.ICustomLocation])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocation])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( - [Parameter(Mandatory)] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonFilePath', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonString', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Category('Path')] [System.String] # Custom Locations name. ${Name}, - [Parameter(Mandatory)] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonFilePath', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonString', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Category('Path')] [System.String] # The name of the resource group. # The name is case insensitive. ${ResourceGroupName}, - [Parameter()] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaJsonFilePath')] + [Parameter(ParameterSetName='CreateViaJsonString')] [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] # The ID of the target subscription. ${SubscriptionId}, - [Parameter(Mandatory)] + [Parameter(ParameterSetName='CreateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocationIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] + [Parameter(ParameterSetName='CreateViaIdentityExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Category('Body')] [System.String] # The geo-location where the resource lives ${Location}, - [Parameter()] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Category('Body')] [System.String] # The type of the Custom Locations authentication ${AuthenticationType}, - [Parameter()] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Category('Body')] [System.String] # The kubeconfig value. ${AuthenticationValue}, - [Parameter(Mandatory)] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] + [AllowEmptyCollection()] [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Category('Body')] [System.String[]] # Contains the reference to the add-on that contains charts to deploy CRDs and operators. ${ClusterExtensionId}, - [Parameter()] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Category('Body')] [System.String] # Display name for the Custom Locations location. ${DisplayName}, - [Parameter(Mandatory)] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Category('Body')] [System.String] # Connected Cluster or AKS Cluster. # The Custom Locations RP will perform a checkAccess API for listAdminCredentials permissions. ${HostResourceId}, - [Parameter()] - [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Support.ResourceIdentityType])] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.PSArgumentCompleterAttribute("SystemAssigned", "None")] [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Support.ResourceIdentityType] + [System.String] # The identity type. ${IdentityType}, - [Parameter(Mandatory)] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Category('Body')] [System.String] # Kubernetes namespace that will be created on the specified cluster. ${Namespace}, - [Parameter()] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.Api20.ITrackedResourceTags]))] + [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ITrackedResourceTags]))] [System.Collections.Hashtable] # Resource tags. ${Tag}, + [Parameter(ParameterSetName='CreateViaJsonFilePath', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Category('Body')] + [System.String] + # Path of Json file supplied to the Create operation + ${JsonFilePath}, + + [Parameter(ParameterSetName='CreateViaJsonString', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Category('Body')] + [System.String] + # Json string supplied to the Create operation + ${JsonString}, + [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Category('Azure')] [System.Management.Automation.PSObject] - # The credentials, account, tenant, and subscription used for communication with Azure. + # The DefaultProfile parameter is not functional. + # Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription. ${DefaultProfile}, [Parameter()] diff --git a/src/CustomLocation/CustomLocation.Autorest/custom/Update-AzCustomLocation.ps1 b/src/CustomLocation/CustomLocation.Autorest/custom/Update-AzCustomLocation.ps1 index 80954c47ce8d..82ca05cc9999 100644 --- a/src/CustomLocation/CustomLocation.Autorest/custom/Update-AzCustomLocation.ps1 +++ b/src/CustomLocation/CustomLocation.Autorest/custom/Update-AzCustomLocation.ps1 @@ -1,7 +1,6 @@ # ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation +# Copyright (c) Microsoft Corporation. All rights reserved. # 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 @@ -11,6 +10,8 @@ # 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. +# Code generated by Microsoft (R) AutoRest Code Generator.Changes may cause incorrect behavior and will be lost if the code +# is regenerated. # ---------------------------------------------------------------------------------- <# @@ -19,22 +20,21 @@ Updates a Custom Location with the specified Resource Name in the specified Reso .Description Updates a Custom Location with the specified Resource Name in the specified Resource Group and Subscription. .Example -PS C:\> Update-AzCustomLocation -ResourceGroupName azps_test_group -Name azps_test_cluster_1 -ClusterExtensionId "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/azps_test_group/providers/Microsoft.Kubernetes/connectedClusters/azps_test_cluster/providers/Microsoft.KubernetesConfiguration/extensions/azps_test_extension" -HostResourceId "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/azps_test_group/providers/Microsoft.Kubernetes/connectedClusters/azps_test_cluster" -Namespace arc - -Location Name Namespace --------- ---- ---- -eastus azps_test_cluster_1 arc +Update-AzCustomLocation -ResourceGroupName azps_test_group -Name azps_test_cluster_1 -ClusterExtensionId "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/azps_test_group/providers/Microsoft.Kubernetes/connectedClusters/azps_test_cluster/providers/Microsoft.KubernetesConfiguration/extensions/azps_test_extension" -HostResourceId "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/azps_test_group/providers/Microsoft.Kubernetes/connectedClusters/azps_test_cluster" -Namespace arc +.Example +Get-AzCustomLocation -ResourceGroupName azps_test_group -Name azps_test_cluster | Update-AzCustomLocation .Inputs Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocationIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.Api20210815.ICustomLocation +Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocation .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. INPUTOBJECT : Identity Parameter + [ChildResourceName ]: Resource Sync Rule name. [Id ]: Resource identity path [ResourceGroupName ]: The name of the resource group. The name is case insensitive. [ResourceName ]: Custom Locations name. @@ -43,16 +43,20 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.customlocation/update-azcustomlocation #> function Update-AzCustomLocation { - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.Api20210815.ICustomLocation])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocation])] [CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='UpdateViaJsonFilePath', Mandatory)] + [Parameter(ParameterSetName='UpdateViaJsonString', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Category('Path')] [System.String] # Custom Locations name. ${Name}, [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='UpdateViaJsonFilePath', Mandatory)] + [Parameter(ParameterSetName='UpdateViaJsonString', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Category('Path')] [System.String] # The name of the resource group. @@ -60,6 +64,8 @@ function Update-AzCustomLocation { ${ResourceGroupName}, [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='UpdateViaJsonFilePath')] + [Parameter(ParameterSetName='UpdateViaJsonString')] [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] @@ -73,63 +79,85 @@ function Update-AzCustomLocation { # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, - [Parameter()] + [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Category('Body')] [System.String] # The type of the Custom Locations authentication ${AuthenticationType}, - [Parameter()] + [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Category('Body')] [System.String] # The kubeconfig value. ${AuthenticationValue}, - [Parameter()] + [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] + [AllowEmptyCollection()] [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Category('Body')] [System.String[]] # Contains the reference to the add-on that contains charts to deploy CRDs and operators. ${ClusterExtensionId}, - [Parameter()] + [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Category('Body')] [System.String] # Display name for the Custom Locations location. ${DisplayName}, - [Parameter()] + [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Category('Body')] [System.String] # Connected Cluster or AKS Cluster. # The Custom Locations RP will perform a checkAccess API for listAdminCredentials permissions. ${HostResourceId}, - [Parameter()] - [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Support.ResourceIdentityType])] + [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.PSArgumentCompleterAttribute("SystemAssigned", "None")] [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Support.ResourceIdentityType] + [System.String] # The identity type. ${IdentityType}, - [Parameter()] + [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Category('Body')] [System.String] # Kubernetes namespace that will be created on the specified cluster. ${Namespace}, - [Parameter()] + [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.Api20210815.IPatchableCustomLocationsTags]))] + [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.IPatchableCustomLocationsTags]))] [System.Collections.Hashtable] # Resource tags ${Tag}, + [Parameter(ParameterSetName='UpdateViaJsonFilePath', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Category('Body')] + [System.String] + # Path of Json file supplied to the Update operation + ${JsonFilePath}, + + [Parameter(ParameterSetName='UpdateViaJsonString', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Category('Body')] + [System.String] + # Json string supplied to the Update operation + ${JsonString}, + [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Category('Azure')] [System.Management.Automation.PSObject] - # The credentials, account, tenant, and subscription used for communication with Azure. + # The DefaultProfile parameter is not functional. + # Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription. ${DefaultProfile}, [Parameter(DontShow)] diff --git a/src/CustomLocation/CustomLocation.Autorest/docs/Az.CustomLocation.md b/src/CustomLocation/CustomLocation.Autorest/docs/Az.CustomLocation.md index 5f3cf23e1de1..fc9074a6c882 100644 --- a/src/CustomLocation/CustomLocation.Autorest/docs/Az.CustomLocation.md +++ b/src/CustomLocation/CustomLocation.Autorest/docs/Az.CustomLocation.md @@ -11,18 +11,36 @@ Locale: en-US Microsoft Azure PowerShell: CustomLocation cmdlets ## Az.CustomLocation Cmdlets +### [Find-AzCustomLocationTargetResourceGroup](Find-AzCustomLocationTargetResourceGroup.md) +Returns the target resource group associated with the resource sync rules of the Custom Location that match the rules passed in with the Find Target Resource Group Request. + ### [Get-AzCustomLocation](Get-AzCustomLocation.md) Gets the details of the customLocation with a specified resource group and name. ### [Get-AzCustomLocationEnabledResourceType](Get-AzCustomLocationEnabledResourceType.md) Gets the list of the Enabled Resource Types. +### [Get-AzCustomLocationResourceSyncRule](Get-AzCustomLocationResourceSyncRule.md) +Gets the details of the resourceSyncRule with a specified resource group, subscription id Custom Location resource name and Resource Sync Rule name. + ### [New-AzCustomLocation](New-AzCustomLocation.md) -Creates or updates a Custom Location in the specified Subscription and Resource Group +Create a Custom Location in the specified Subscription and Resource Group + +### [New-AzCustomLocationMatchExpressionsObject](New-AzCustomLocationMatchExpressionsObject.md) +Create an in-memory object for MatchExpressionsProperties. + +### [New-AzCustomLocationResourceSyncRule](New-AzCustomLocationResourceSyncRule.md) +Create a Resource Sync Rule in the parent Custom Location, Subscription Id and Resource Group ### [Remove-AzCustomLocation](Remove-AzCustomLocation.md) Deletes the Custom Location with the specified Resource Name, Resource Group, and Subscription Id. +### [Remove-AzCustomLocationResourceSyncRule](Remove-AzCustomLocationResourceSyncRule.md) +Deletes the Resource Sync Rule with the specified Resource Sync Rule Name, Custom Location Resource Name, Resource Group, and Subscription Id. + ### [Update-AzCustomLocation](Update-AzCustomLocation.md) Updates a Custom Location with the specified Resource Name in the specified Resource Group and Subscription. +### [Update-AzCustomLocationResourceSyncRule](Update-AzCustomLocationResourceSyncRule.md) +Updates a Resource Sync Rule with the specified Resource Sync Rule name in the specified Resource Group, Subscription and Custom Location name. + diff --git a/src/CustomLocation/CustomLocation.Autorest/docs/Find-AzCustomLocationTargetResourceGroup.md b/src/CustomLocation/CustomLocation.Autorest/docs/Find-AzCustomLocationTargetResourceGroup.md new file mode 100644 index 000000000000..1b0c7c8c06cf --- /dev/null +++ b/src/CustomLocation/CustomLocation.Autorest/docs/Find-AzCustomLocationTargetResourceGroup.md @@ -0,0 +1,255 @@ +--- +external help file: +Module Name: Az.CustomLocation +online version: https://learn.microsoft.com/powershell/module/az.customlocation/find-azcustomlocationtargetresourcegroup +schema: 2.0.0 +--- + +# Find-AzCustomLocationTargetResourceGroup + +## SYNOPSIS +Returns the target resource group associated with the resource sync rules of the Custom Location that match the rules passed in with the Find Target Resource Group Request. + +## SYNTAX + +### FindExpanded (Default) +``` +Find-AzCustomLocationTargetResourceGroup -CustomLocationName -ResourceGroupName + [-SubscriptionId ] [-Label ] [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] + [] +``` + +### FindViaIdentityExpanded +``` +Find-AzCustomLocationTargetResourceGroup -InputObject [-Label ] + [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] +``` + +### FindViaJsonFilePath +``` +Find-AzCustomLocationTargetResourceGroup -CustomLocationName -ResourceGroupName + -JsonFilePath [-SubscriptionId ] [-DefaultProfile ] [-PassThru] [-Confirm] + [-WhatIf] [] +``` + +### FindViaJsonString +``` +Find-AzCustomLocationTargetResourceGroup -CustomLocationName -ResourceGroupName + -JsonString [-SubscriptionId ] [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] + [] +``` + +## DESCRIPTION +Returns the target resource group associated with the resource sync rules of the Custom Location that match the rules passed in with the Find Target Resource Group Request. + +## EXAMPLES + +### Example 1: Returns the target resource group associated with the resource sync rules of the Custom Location that match the rules passed in with the Find Target Resource Group Request. +```powershell +Find-AzCustomLocationTargetResourceGroup -ResourceGroupName azps_test_cluster -CustomLocationName azps-customlocation -Label @{"Key1"="Value1"} -PassThru +``` + +```output +True +``` + +Returns the target resource group associated with the resource sync rules of the Custom Location that match the rules passed in with the Find Target Resource Group Request. + +### Example 2: Returns the target resource group associated with the resource sync rules of the Custom Location that match the rules passed in with the Find Target Resource Group Request. +```powershell +$obj = Get-AzCustomLocation -ResourceGroupName azps_test_cluster -Name azps-customlocation +Find-AzCustomLocationTargetResourceGroup -InputObject $obj -Label @{"Key1"="Value1"} -PassThru +``` + +```output +True +``` + +Returns the target resource group associated with the resource sync rules of the Custom Location that match the rules passed in with the Find Target Resource Group Request. + +## PARAMETERS + +### -CustomLocationName +Custom Locations name. + +```yaml +Type: System.String +Parameter Sets: FindExpanded, FindViaJsonFilePath, FindViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The DefaultProfile parameter is not functional. +Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocationIdentity +Parameter Sets: FindViaIdentityExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -JsonFilePath +Path of Json file supplied to the Find operation + +```yaml +Type: System.String +Parameter Sets: FindViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Find operation + +```yaml +Type: System.String +Parameter Sets: FindViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Label +Labels of the custom resource, this is a map of {key,value} pairs. + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: FindExpanded, FindViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +Returns true when the command succeeds + +```yaml +Type: System.Management.Automation.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. +The name is case insensitive. + +```yaml +Type: System.String +Parameter Sets: FindExpanded, FindViaJsonFilePath, FindViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. + +```yaml +Type: System.String +Parameter Sets: FindExpanded, FindViaJsonFilePath, FindViaJsonString +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.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: System.Management.Automation.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 + +### Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocationIdentity + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocationFindTargetResourceGroupResult + +## NOTES + +## RELATED LINKS + diff --git a/src/CustomLocation/CustomLocation.Autorest/docs/Get-AzCustomLocation.md b/src/CustomLocation/CustomLocation.Autorest/docs/Get-AzCustomLocation.md index 93f3148cdf24..f39249f0ee09 100644 --- a/src/CustomLocation/CustomLocation.Autorest/docs/Get-AzCustomLocation.md +++ b/src/CustomLocation/CustomLocation.Autorest/docs/Get-AzCustomLocation.md @@ -45,56 +45,44 @@ Get-AzCustomLocation ``` ```output -Location Name Namespace --------- ---- ---- -eastus azps_test_cluster arc +Location Name Namespace ResourceGroupName +-------- ---- --------- ----------------- +eastus azps-customlocation azps-namespace azps_test_cluster ``` List the details of the customLocation. ### Example 2: List the details of the customLocation with a specified resource group. ```powershell -Get-AzCustomLocation -ResourceGroupName azps_test_group +Get-AzCustomLocation -ResourceGroupName azps_test_cluster ``` ```output -Location Name Namespace --------- ---- ---- -eastus azps_test_cluster arc +Location Name Namespace ResourceGroupName +-------- ---- --------- ----------------- +eastus azps-customlocation azps-namespace azps_test_cluster ``` List the details of the customLocation with a specified resource group. ### Example 3: Gets the details of the customLocation with a specified resource group and name. ```powershell -Get-AzCustomLocation -ResourceGroupName azps_test_group -Name azps_test_cluster +Get-AzCustomLocation -ResourceGroupName azps_test_cluster -Name azps-customlocation ``` ```output -Location Name Namespace --------- ---- ---- -eastus azps_test_cluster arc +Location Name Namespace ResourceGroupName +-------- ---- --------- ----------------- +eastus azps-customlocation azps-namespace azps_test_cluster ``` Gets the details of the customLocation with a specified resource group and name. -### Example 4: Gets the details of the customLocation. -```powershell -New-AzCustomLocation -ResourceGroupName azps_test_group -Name azps_test_cluster -Location eastus -ClusterExtensionId "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/azps_test_group/providers/Microsoft.Kubernetes/connectedClusters/azps_test_cluster/providers/Microsoft.KubernetesConfiguration/extensions/azps_test_extension" -HostResourceId "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/azps_test_group/providers/Microsoft.Kubernetes/connectedClusters/azps_test_cluster" -Namespace arc | Get-AzCustomLocation -``` - -```output -Location Name Namespace --------- ---- ---- -eastus azps_test_cluster arc -``` - -Gets the details of the customLocation. - ## PARAMETERS ### -DefaultProfile -The credentials, account, tenant, and subscription used for communication with Azure. +The DefaultProfile parameter is not functional. +Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription. ```yaml Type: System.Management.Automation.PSObject @@ -179,22 +167,9 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.Api20210815.ICustomLocation +### Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocation ## NOTES -ALIASES - -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - - -INPUTOBJECT : Identity Parameter - - `[Id ]`: Resource identity path - - `[ResourceGroupName ]`: The name of the resource group. The name is case insensitive. - - `[ResourceName ]`: Custom Locations name. - - `[SubscriptionId ]`: The ID of the target subscription. - ## RELATED LINKS diff --git a/src/CustomLocation/CustomLocation.Autorest/docs/Get-AzCustomLocationEnabledResourceType.md b/src/CustomLocation/CustomLocation.Autorest/docs/Get-AzCustomLocationEnabledResourceType.md index f32b5152a161..310b930107bb 100644 --- a/src/CustomLocation/CustomLocation.Autorest/docs/Get-AzCustomLocationEnabledResourceType.md +++ b/src/CustomLocation/CustomLocation.Autorest/docs/Get-AzCustomLocationEnabledResourceType.md @@ -28,9 +28,9 @@ Get-AzCustomLocationEnabledResourceType -ResourceGroupName azps_test_group -Name ``` ```output -Name Type ----- ---- -017e563408cfcbaad0604875fef1f0e5a36d5fefa5e81a4c1c212c5a77fbcbde Microsoft.ExtendedLocation/customLocations/enabledResourceTypes +Name ExtensionType +---- ------------- +435b5e8926f937f7a473d48f25731707c20916dfb52a47e0401a40181cb28217 microsoft.arcdataservices ``` Gets the list of the Enabled Resource Types. @@ -38,7 +38,8 @@ Gets the list of the Enabled Resource Types. ## PARAMETERS ### -DefaultProfile -The credentials, account, tenant, and subscription used for communication with Azure. +The DefaultProfile parameter is not functional. +Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription. ```yaml Type: System.Management.Automation.PSObject @@ -105,11 +106,9 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.Api20210815.IEnabledResourceType +### Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.IEnabledResourceType ## NOTES -ALIASES - ## RELATED LINKS diff --git a/src/CustomLocation/CustomLocation.Autorest/docs/Get-AzCustomLocationResourceSyncRule.md b/src/CustomLocation/CustomLocation.Autorest/docs/Get-AzCustomLocationResourceSyncRule.md new file mode 100644 index 000000000000..707d586c65f6 --- /dev/null +++ b/src/CustomLocation/CustomLocation.Autorest/docs/Get-AzCustomLocationResourceSyncRule.md @@ -0,0 +1,195 @@ +--- +external help file: +Module Name: Az.CustomLocation +online version: https://learn.microsoft.com/powershell/module/az.customlocation/get-azcustomlocationresourcesyncrule +schema: 2.0.0 +--- + +# Get-AzCustomLocationResourceSyncRule + +## SYNOPSIS +Gets the details of the resourceSyncRule with a specified resource group, subscription id Custom Location resource name and Resource Sync Rule name. + +## SYNTAX + +### List (Default) +``` +Get-AzCustomLocationResourceSyncRule -CustomLocationName -ResourceGroupName + [-SubscriptionId ] [-DefaultProfile ] [] +``` + +### Get +``` +Get-AzCustomLocationResourceSyncRule -CustomLocationName -Name -ResourceGroupName + [-SubscriptionId ] [-DefaultProfile ] [] +``` + +### GetViaIdentity +``` +Get-AzCustomLocationResourceSyncRule -InputObject [-DefaultProfile ] + [] +``` + +### GetViaIdentityCustomlocation +``` +Get-AzCustomLocationResourceSyncRule -CustomlocationInputObject -Name + [-DefaultProfile ] [] +``` + +## DESCRIPTION +Gets the details of the resourceSyncRule with a specified resource group, subscription id Custom Location resource name and Resource Sync Rule name. + +## EXAMPLES + +### Example 1: List Resource Sync Rule by Custom Location name. +```powershell +Get-AzCustomLocationResourceSyncRule -ResourceGroupName azps_test_cluster -CustomLocationName azps-customlocation +``` + +```output +Location Name ResourceGroupName +-------- ---- ----------------- +eastus azps-resourcesyncrule azps_test_cluster +``` + +List Resource Sync Rule by Custom Location name. + +### Example 2: Get the detail of the resourceSyncRule with a specified resource group, subscription id Custom Location resource name and Resource Sync Rule name. +```powershell +Get-AzCustomLocationResourceSyncRule -ResourceGroupName azps_test_cluster -CustomLocationName azps-customlocation -Name azps-resourcesyncrule +``` + +```output +Location Name ResourceGroupName +-------- ---- ----------------- +eastus azps-resourcesyncrule azps_test_cluster +``` + +Get the detail of the resourceSyncRule with a specified resource group, subscription id Custom Location resource name and Resource Sync Rule name. + +## PARAMETERS + +### -CustomlocationInputObject +Identity Parameter +To construct, see NOTES section for CUSTOMLOCATIONINPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocationIdentity +Parameter Sets: GetViaIdentityCustomlocation +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -CustomLocationName +Custom Locations name. + +```yaml +Type: System.String +Parameter Sets: Get, List +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The DefaultProfile parameter is not functional. +Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocationIdentity +Parameter Sets: GetViaIdentity +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +Resource Sync Rule name. + +```yaml +Type: System.String +Parameter Sets: Get, GetViaIdentityCustomlocation +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. +The name is case insensitive. + +```yaml +Type: System.String +Parameter Sets: Get, List +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. + +```yaml +Type: System.String[] +Parameter Sets: Get, List +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +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 + +### Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocationIdentity + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.IResourceSyncRule + +## NOTES + +## RELATED LINKS + diff --git a/src/CustomLocation/CustomLocation.Autorest/docs/New-AzCustomLocation.md b/src/CustomLocation/CustomLocation.Autorest/docs/New-AzCustomLocation.md index b37c3e006ad2..465da80471b2 100644 --- a/src/CustomLocation/CustomLocation.Autorest/docs/New-AzCustomLocation.md +++ b/src/CustomLocation/CustomLocation.Autorest/docs/New-AzCustomLocation.md @@ -8,35 +8,59 @@ schema: 2.0.0 # New-AzCustomLocation ## SYNOPSIS -Creates or updates a Custom Location in the specified Subscription and Resource Group +Create a Custom Location in the specified Subscription and Resource Group ## SYNTAX +### CreateExpanded (Default) ``` -New-AzCustomLocation -Name -ResourceGroupName -ClusterExtensionId - -HostResourceId -Location -Namespace [-SubscriptionId ] - [-AuthenticationType ] [-AuthenticationValue ] [-DisplayName ] - [-IdentityType ] [-Tag ] [-DefaultProfile ] [-AsJob] [-NoWait] - [-Confirm] [-WhatIf] [] +New-AzCustomLocation -Name -ResourceGroupName -Location [-SubscriptionId ] + [-AuthenticationType ] [-AuthenticationValue ] [-ClusterExtensionId ] + [-DisplayName ] [-HostResourceId ] [-IdentityType ] [-Namespace ] + [-Tag ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + +### CreateViaIdentityExpanded +``` +New-AzCustomLocation -InputObject -Location [-AuthenticationType ] + [-AuthenticationValue ] [-ClusterExtensionId ] [-DisplayName ] + [-HostResourceId ] [-IdentityType ] [-Namespace ] [-Tag ] + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + +### CreateViaJsonFilePath +``` +New-AzCustomLocation -Name -ResourceGroupName -JsonFilePath + [-SubscriptionId ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] + [] +``` + +### CreateViaJsonString +``` +New-AzCustomLocation -Name -ResourceGroupName -JsonString + [-SubscriptionId ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] + [] ``` ## DESCRIPTION -Creates or updates a Custom Location in the specified Subscription and Resource Group +Create a Custom Location in the specified Subscription and Resource Group ## EXAMPLES -### Example 1: Creates or updates a Custom Location in the specified Subscription and Resource Group +### Example 1: Creates or updates a Custom Location in the specified Subscription and Resource Group. ```powershell -New-AzCustomLocation -ResourceGroupName azps_test_group -Name azps_test_cluster -Location eastus -ClusterExtensionId "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/azps_test_group/providers/Microsoft.Kubernetes/connectedClusters/azps_test_cluster/providers/Microsoft.KubernetesConfiguration/extensions/azps_test_extension" -HostResourceId "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/azps_test_group/providers/Microsoft.Kubernetes/connectedClusters/azps_test_cluster" -Namespace arc +$HostResourceId = (Get-AzConnectedKubernetes -ClusterName azps-connect -ResourceGroupName azps_test_cluster).Id +$ClusterExtensionId = (Get-AzKubernetesExtension -ClusterName azps-connect -ClusterType ConnectedClusters -ResourceGroupName azps_test_cluster -Name azps-extension).Id +New-AzCustomLocation -ResourceGroupName azps_test_cluster -Name azps-customlocation -Location eastus -ClusterExtensionId $ClusterExtensionId -HostResourceId $HostResourceId -Namespace azps-namespace ``` ```output -Location Name Namespace --------- ---- ---- -eastus azps_test_cluster arc +Location Name Namespace ResourceGroupName +-------- ---- --------- ----------------- +eastus azps-customlocation azps-namespace azps_test_cluster ``` -Creates or updates a Custom Location in the specified Subscription and Resource Group +Creates or updates a Custom Location in the specified Subscription and Resource Group. ## PARAMETERS @@ -60,7 +84,7 @@ The type of the Custom Locations authentication ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -75,7 +99,7 @@ The kubeconfig value. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -90,10 +114,10 @@ Contains the reference to the add-on that contains charts to deploy CRDs and ope ```yaml Type: System.String[] -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: -Required: True +Required: False Position: Named Default value: None Accept pipeline input: False @@ -101,7 +125,8 @@ Accept wildcard characters: False ``` ### -DefaultProfile -The credentials, account, tenant, and subscription used for communication with Azure. +The DefaultProfile parameter is not functional. +Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription. ```yaml Type: System.Management.Automation.PSObject @@ -120,7 +145,7 @@ Display name for the Custom Locations location. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -136,10 +161,10 @@ The Custom Locations RP will perform a checkAccess API for listAdminCredentials ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: -Required: True +Required: False Position: Named Default value: None Accept pipeline input: False @@ -150,8 +175,8 @@ Accept wildcard characters: False The identity type. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Support.ResourceIdentityType -Parameter Sets: (All) +Type: System.String +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -161,12 +186,58 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -InputObject +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocationIdentity +Parameter Sets: CreateViaIdentityExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -JsonFilePath +Path of Json file supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Location The geo-location where the resource lives ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: True @@ -181,7 +252,7 @@ Custom Locations name. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: Required: True @@ -196,10 +267,10 @@ Kubernetes namespace that will be created on the specified cluster. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: -Required: True +Required: False Position: Named Default value: None Accept pipeline input: False @@ -227,7 +298,7 @@ The name is case insensitive. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: Required: True @@ -242,7 +313,7 @@ The ID of the target subscription. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: Required: False @@ -257,7 +328,7 @@ Resource tags. ```yaml Type: System.Collections.Hashtable -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -303,13 +374,13 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS +### Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocationIdentity + ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.Api20210815.ICustomLocation +### Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocation ## NOTES -ALIASES - ## RELATED LINKS diff --git a/src/CustomLocation/CustomLocation.Autorest/docs/New-AzCustomLocationMatchExpressionsObject.md b/src/CustomLocation/CustomLocation.Autorest/docs/New-AzCustomLocationMatchExpressionsObject.md new file mode 100644 index 000000000000..a5155383fd53 --- /dev/null +++ b/src/CustomLocation/CustomLocation.Autorest/docs/New-AzCustomLocationMatchExpressionsObject.md @@ -0,0 +1,98 @@ +--- +external help file: +Module Name: Az.CustomLocation +online version: https://learn.microsoft.com/powershell/module/Az.CustomLocation/new-azcustomlocationmatchexpressionsobject +schema: 2.0.0 +--- + +# New-AzCustomLocationMatchExpressionsObject + +## SYNOPSIS +Create an in-memory object for MatchExpressionsProperties. + +## SYNTAX + +``` +New-AzCustomLocationMatchExpressionsObject [-Key ] [-Operator ] [-Value ] + [] +``` + +## DESCRIPTION +Create an in-memory object for MatchExpressionsProperties. + +## EXAMPLES + +### Example 1: Create an in-memory object for MatchExpressionsProperties. +```powershell +New-AzCustomLocationMatchExpressionsObject -Key "key4" -Operator "In" -Value "value4" +``` + +```output +Key Operator +--- -------- +key4 In +``` + +Create an in-memory object for MatchExpressionsProperties. + +## PARAMETERS + +### -Key +Key is the label key that the selector applies to. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Operator +The Operator field represents a key's relationship to a set of values. +Valid operators are In, NotIn, Exists and DoesNotExist. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Value +The label value. + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +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 + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.MatchExpressionsProperties + +## NOTES + +## RELATED LINKS + diff --git a/src/CustomLocation/CustomLocation.Autorest/docs/New-AzCustomLocationResourceSyncRule.md b/src/CustomLocation/CustomLocation.Autorest/docs/New-AzCustomLocationResourceSyncRule.md new file mode 100644 index 000000000000..98f6616f63f2 --- /dev/null +++ b/src/CustomLocation/CustomLocation.Autorest/docs/New-AzCustomLocationResourceSyncRule.md @@ -0,0 +1,386 @@ +--- +external help file: +Module Name: Az.CustomLocation +online version: https://learn.microsoft.com/powershell/module/az.customlocation/new-azcustomlocationresourcesyncrule +schema: 2.0.0 +--- + +# New-AzCustomLocationResourceSyncRule + +## SYNOPSIS +Create a Resource Sync Rule in the parent Custom Location, Subscription Id and Resource Group + +## SYNTAX + +### CreateExpanded (Default) +``` +New-AzCustomLocationResourceSyncRule -CustomLocationName -Name -ResourceGroupName + -Location [-SubscriptionId ] [-Priority ] + [-SelectorMatchExpression ] [-SelectorMatchLabel ] + [-Tag ] [-TargetResourceGroup ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] + [-WhatIf] [] +``` + +### CreateViaIdentityCustomlocationExpanded +``` +New-AzCustomLocationResourceSyncRule -CustomlocationInputObject -Name + -Location [-Priority ] [-SelectorMatchExpression ] + [-SelectorMatchLabel ] [-Tag ] [-TargetResourceGroup ] + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + +### CreateViaIdentityExpanded +``` +New-AzCustomLocationResourceSyncRule -InputObject -Location + [-Priority ] [-SelectorMatchExpression ] + [-SelectorMatchLabel ] [-Tag ] [-TargetResourceGroup ] + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + +### CreateViaJsonFilePath +``` +New-AzCustomLocationResourceSyncRule -CustomLocationName -Name -ResourceGroupName + -JsonFilePath [-SubscriptionId ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] + [-WhatIf] [] +``` + +### CreateViaJsonString +``` +New-AzCustomLocationResourceSyncRule -CustomLocationName -Name -ResourceGroupName + -JsonString [-SubscriptionId ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] + [-WhatIf] [] +``` + +## DESCRIPTION +Create a Resource Sync Rule in the parent Custom Location, Subscription Id and Resource Group + +## EXAMPLES + +### Example 1: Create a Resource Sync Rule in the parent Custom Location, Subscription Id and Resource Group. +```powershell +$MatchExpressions = New-AzCustomLocationMatchExpressionsObject -Key "key4" -Operator "In" -Value "value4" +New-AzCustomLocationResourceSyncRule -Name azps-resourcesyncrule -ResourceGroupName azps_test_cluster -CustomLocationName azps-customlocation -Location eastus -Priority 999 -SelectorMatchExpression $MatchExpressions -SelectorMatchLabel @{"Key1"="Value1"} -TargetResourceGroup "/subscriptions/{subId}/resourceGroups/azps_test_cluster" +``` + +```output +Location Name ResourceGroupName +-------- ---- ----------------- +eastus azps-resourcesyncrule azps_test_cluster +``` + +Create a Resource Sync Rule in the parent Custom Location, Subscription Id and Resource Group. + +## PARAMETERS + +### -AsJob +Run the command as a job + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CustomlocationInputObject +Identity Parameter +To construct, see NOTES section for CUSTOMLOCATIONINPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocationIdentity +Parameter Sets: CreateViaIdentityCustomlocationExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -CustomLocationName +Custom Locations name. + +```yaml +Type: System.String +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The DefaultProfile parameter is not functional. +Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocationIdentity +Parameter Sets: CreateViaIdentityExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -JsonFilePath +Path of Json file supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Location +The geo-location where the resource lives + +```yaml +Type: System.String +Parameter Sets: CreateExpanded, CreateViaIdentityCustomlocationExpanded, CreateViaIdentityExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Resource Sync Rule name. + +```yaml +Type: System.String +Parameter Sets: CreateExpanded, CreateViaIdentityCustomlocationExpanded, CreateViaJsonFilePath, CreateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NoWait +Run the command asynchronously + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Priority +Priority represents a priority of the Resource Sync Rule + +```yaml +Type: System.Int32 +Parameter Sets: CreateExpanded, CreateViaIdentityCustomlocationExpanded, CreateViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. +The name is case insensitive. + +```yaml +Type: System.String +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SelectorMatchExpression +MatchExpressions is a list of resource selector requirements. +Valid operators include In, NotIn, Exists, and DoesNotExist. +The values set must be non-empty in the case of In and NotIn. +The values set must be empty in the case of Exists and DoesNotExist. +To construct, see NOTES section for SELECTORMATCHEXPRESSION properties and create a hash table. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.IMatchExpressionsProperties[] +Parameter Sets: CreateExpanded, CreateViaIdentityCustomlocationExpanded, CreateViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SelectorMatchLabel +MatchLabels is a map of {key,value} pairs. +A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is 'key', the operator is 'In', and the values array contains only 'value'. + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: CreateExpanded, CreateViaIdentityCustomlocationExpanded, CreateViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. + +```yaml +Type: System.String +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Tag +Resource tags. + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: CreateExpanded, CreateViaIdentityCustomlocationExpanded, CreateViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -TargetResourceGroup +For an unmapped custom resource, its labels will be used to find matching resource sync rules. +If this resource sync rule is one of the matching rules with highest priority, then the unmapped custom resource will be projected to the target resource group associated with this resource sync rule. +The user creating this resource sync rule should have write permissions on the target resource group and this write permission will be validated when creating the resource sync rule. + +```yaml +Type: System.String +Parameter Sets: CreateExpanded, CreateViaIdentityCustomlocationExpanded, CreateViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.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: System.Management.Automation.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 + +### Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocationIdentity + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.IResourceSyncRule + +## NOTES + +## RELATED LINKS + diff --git a/src/CustomLocation/CustomLocation.Autorest/docs/Remove-AzCustomLocation.md b/src/CustomLocation/CustomLocation.Autorest/docs/Remove-AzCustomLocation.md index 63f3d9f88d4a..6c807a774a10 100644 --- a/src/CustomLocation/CustomLocation.Autorest/docs/Remove-AzCustomLocation.md +++ b/src/CustomLocation/CustomLocation.Autorest/docs/Remove-AzCustomLocation.md @@ -31,14 +31,15 @@ Deletes the Custom Location with the specified Resource Name, Resource Group, an ### Example 1: Deletes the Custom Location. ```powershell -Remove-AzCustomLocation -ResourceGroupName azps_test_group -Name azps_test_cluster +Remove-AzCustomLocation -ResourceGroupName azps_test_cluster -Name azps-customlocation ``` Deletes the Custom Location. ### Example 2: Deletes the Custom Location. ```powershell -Get-AzCustomLocation -ResourceGroupName azps_test_group -Name azps_test_cluster | Remove-AzCustomLocation +$obj = Get-AzCustomLocation -ResourceGroupName azps_test_cluster -Name azps-customlocation +Remove-AzCustomLocation -InputObject $obj ``` Deletes the Custom Location. @@ -61,7 +62,8 @@ Accept wildcard characters: False ``` ### -DefaultProfile -The credentials, account, tenant, and subscription used for communication with Azure. +The DefaultProfile parameter is not functional. +Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription. ```yaml Type: System.Management.Automation.PSObject @@ -211,18 +213,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -ALIASES - -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - - -INPUTOBJECT : Identity Parameter - - `[Id ]`: Resource identity path - - `[ResourceGroupName ]`: The name of the resource group. The name is case insensitive. - - `[ResourceName ]`: Custom Locations name. - - `[SubscriptionId ]`: The ID of the target subscription. - ## RELATED LINKS diff --git a/src/CustomLocation/CustomLocation.Autorest/docs/Remove-AzCustomLocationResourceSyncRule.md b/src/CustomLocation/CustomLocation.Autorest/docs/Remove-AzCustomLocationResourceSyncRule.md new file mode 100644 index 000000000000..39af97e7aeca --- /dev/null +++ b/src/CustomLocation/CustomLocation.Autorest/docs/Remove-AzCustomLocationResourceSyncRule.md @@ -0,0 +1,233 @@ +--- +external help file: +Module Name: Az.CustomLocation +online version: https://learn.microsoft.com/powershell/module/az.customlocation/remove-azcustomlocationresourcesyncrule +schema: 2.0.0 +--- + +# Remove-AzCustomLocationResourceSyncRule + +## SYNOPSIS +Deletes the Resource Sync Rule with the specified Resource Sync Rule Name, Custom Location Resource Name, Resource Group, and Subscription Id. + +## SYNTAX + +### Delete (Default) +``` +Remove-AzCustomLocationResourceSyncRule -CustomLocationName -Name + -ResourceGroupName [-SubscriptionId ] [-DefaultProfile ] [-PassThru] [-Confirm] + [-WhatIf] [] +``` + +### DeleteViaIdentity +``` +Remove-AzCustomLocationResourceSyncRule -InputObject [-DefaultProfile ] + [-PassThru] [-Confirm] [-WhatIf] [] +``` + +### DeleteViaIdentityCustomlocation +``` +Remove-AzCustomLocationResourceSyncRule -CustomlocationInputObject -Name + [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] +``` + +## DESCRIPTION +Deletes the Resource Sync Rule with the specified Resource Sync Rule Name, Custom Location Resource Name, Resource Group, and Subscription Id. + +## EXAMPLES + +### Example 1: Deletes the Resource Sync Rule with the specified Resource Sync Rule Name, Custom Location Resource Name, Resource Group, and Subscription Id. +```powershell +Remove-AzCustomLocationResourceSyncRule -CustomLocationName azps-customlocation -Name azps-resourcesyncrule -ResourceGroupName azps_test_cluster +``` + +Deletes the Resource Sync Rule with the specified Resource Sync Rule Name, Custom Location Resource Name, Resource Group, and Subscription Id. + +### Example 2: Deletes the Resource Sync Rule with the specified Resource Sync Rule Name, Custom Location Resource Name, Resource Group, and Subscription Id. +```powershell +$obj = Get-AzCustomLocationResourceSyncRule -ResourceGroupName azps_test_cluster -CustomLocationName azps-customlocation -Name azps-resourcesyncrule +Remove-AzCustomLocationResourceSyncRule -InputObject $obj +``` + +Deletes the Resource Sync Rule with the specified Resource Sync Rule Name, Custom Location Resource Name, Resource Group, and Subscription Id. + +### Example 3: Deletes the Resource Sync Rule with the specified Resource Sync Rule Name, Custom Location Resource Name, Resource Group, and Subscription Id. +```powershell +$obj = Get-AzCustomLocation -ResourceGroupName azps_test_cluster -Name azps-customlocation +Remove-AzCustomLocationResourceSyncRule -CustomlocationInputObject $obj -Name azps-resourcesyncrule +``` + +Deletes the Resource Sync Rule with the specified Resource Sync Rule Name, Custom Location Resource Name, Resource Group, and Subscription Id. + +## PARAMETERS + +### -CustomlocationInputObject +Identity Parameter +To construct, see NOTES section for CUSTOMLOCATIONINPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocationIdentity +Parameter Sets: DeleteViaIdentityCustomlocation +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -CustomLocationName +Custom Locations name. + +```yaml +Type: System.String +Parameter Sets: Delete +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The DefaultProfile parameter is not functional. +Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocationIdentity +Parameter Sets: DeleteViaIdentity +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +Resource Sync Rule name. + +```yaml +Type: System.String +Parameter Sets: Delete, DeleteViaIdentityCustomlocation +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +Returns true when the command succeeds + +```yaml +Type: System.Management.Automation.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. +The name is case insensitive. + +```yaml +Type: System.String +Parameter Sets: Delete +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. + +```yaml +Type: System.String +Parameter Sets: Delete +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.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: System.Management.Automation.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 + +### Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocationIdentity + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS + diff --git a/src/CustomLocation/CustomLocation.Autorest/docs/Update-AzCustomLocation.md b/src/CustomLocation/CustomLocation.Autorest/docs/Update-AzCustomLocation.md index 15c82d58db7e..eb94675ffc87 100644 --- a/src/CustomLocation/CustomLocation.Autorest/docs/Update-AzCustomLocation.md +++ b/src/CustomLocation/CustomLocation.Autorest/docs/Update-AzCustomLocation.md @@ -16,19 +16,30 @@ Updates a Custom Location with the specified Resource Name in the specified Reso ``` Update-AzCustomLocation -Name -ResourceGroupName [-SubscriptionId ] [-AuthenticationType ] [-AuthenticationValue ] [-ClusterExtensionId ] - [-DisplayName ] [-HostResourceId ] [-IdentityType ] - [-Namespace ] [-Tag ] [-DefaultProfile ] [-Confirm] [-WhatIf] - [] + [-DisplayName ] [-HostResourceId ] [-IdentityType ] [-Namespace ] + [-Tag ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] ``` ### UpdateViaIdentityExpanded ``` Update-AzCustomLocation -InputObject [-AuthenticationType ] [-AuthenticationValue ] [-ClusterExtensionId ] [-DisplayName ] - [-HostResourceId ] [-IdentityType ] [-Namespace ] [-Tag ] + [-HostResourceId ] [-IdentityType ] [-Namespace ] [-Tag ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] ``` +### UpdateViaJsonFilePath +``` +Update-AzCustomLocation -Name -ResourceGroupName -JsonFilePath + [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + +### UpdateViaJsonString +``` +Update-AzCustomLocation -Name -ResourceGroupName -JsonString + [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION Updates a Custom Location with the specified Resource Name in the specified Resource Group and Subscription. @@ -36,26 +47,29 @@ Updates a Custom Location with the specified Resource Name in the specified Reso ### Example 1: Updates a Custom Location with the specified Resource Name in the specified Resource Group and Subscription. ```powershell -Update-AzCustomLocation -ResourceGroupName azps_test_group -Name azps_test_cluster_1 -ClusterExtensionId "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/azps_test_group/providers/Microsoft.Kubernetes/connectedClusters/azps_test_cluster/providers/Microsoft.KubernetesConfiguration/extensions/azps_test_extension" -HostResourceId "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/azps_test_group/providers/Microsoft.Kubernetes/connectedClusters/azps_test_cluster" -Namespace arc +$HostResourceId = (Get-AzConnectedKubernetes -ClusterName azps-connect -ResourceGroupName azps_test_cluster).Id +$ClusterExtensionId = (Get-AzKubernetesExtension -ClusterName azps-connect -ClusterType ConnectedClusters -ResourceGroupName azps_test_cluster -Name azps-extension).Id +Update-AzCustomLocation -ResourceGroupName azps_test_cluster -Name azps-customlocation -ClusterExtensionId $ClusterExtensionId -HostResourceId $HostResourceId -Namespace azps-namespace -Tag @{"Key1"="Value1"} ``` ```output -Location Name Namespace --------- ---- ---- -eastus azps_test_cluster_1 arc +Location Name Namespace ResourceGroupName +-------- ---- --------- ----------------- +eastus azps-customlocation azps-namespace azps_test_cluster ``` Updates a Custom Location with the specified Resource Name in the specified Resource Group and Subscription. ### Example 2: Updates a Custom Location. ```powershell -Get-AzCustomLocation -ResourceGroupName azps_test_group -Name azps_test_cluster | Update-AzCustomLocation +$obj = Get-AzCustomLocation -ResourceGroupName azps_test_cluster -Name azps-customlocation +Update-AzCustomLocation -InputObject $obj -Tag @{"Key1"="Value1"} ``` ```output -Location Name Namespace --------- ---- ---- -eastus azps_test_cluster_1 arc +Location Name Namespace ResourceGroupName +-------- ---- --------- ----------------- +eastus azps-customlocation azps-namespace azps_test_cluster ``` Updates a Custom Location. @@ -67,7 +81,7 @@ The type of the Custom Locations authentication ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -82,7 +96,7 @@ The kubeconfig value. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -97,7 +111,7 @@ Contains the reference to the add-on that contains charts to deploy CRDs and ope ```yaml Type: System.String[] -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -108,7 +122,8 @@ Accept wildcard characters: False ``` ### -DefaultProfile -The credentials, account, tenant, and subscription used for communication with Azure. +The DefaultProfile parameter is not functional. +Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription. ```yaml Type: System.Management.Automation.PSObject @@ -127,7 +142,7 @@ Display name for the Custom Locations location. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -143,7 +158,7 @@ The Custom Locations RP will perform a checkAccess API for listAdminCredentials ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -157,8 +172,8 @@ Accept wildcard characters: False The identity type. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Support.ResourceIdentityType -Parameter Sets: (All) +Type: System.String +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -184,12 +199,42 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Update operation + +```yaml +Type: System.String +Parameter Sets: UpdateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Update operation + +```yaml +Type: System.String +Parameter Sets: UpdateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Name Custom Locations name. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateExpanded, UpdateViaJsonFilePath, UpdateViaJsonString Aliases: Required: True @@ -204,7 +249,7 @@ Kubernetes namespace that will be created on the specified cluster. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -220,7 +265,7 @@ The name is case insensitive. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateExpanded, UpdateViaJsonFilePath, UpdateViaJsonString Aliases: Required: True @@ -235,7 +280,7 @@ The ID of the target subscription. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateExpanded, UpdateViaJsonFilePath, UpdateViaJsonString Aliases: Required: False @@ -250,7 +295,7 @@ Resource tags ```yaml Type: System.Collections.Hashtable -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -300,22 +345,9 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.Api20210815.ICustomLocation +### Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocation ## NOTES -ALIASES - -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - - -INPUTOBJECT : Identity Parameter - - `[Id ]`: Resource identity path - - `[ResourceGroupName ]`: The name of the resource group. The name is case insensitive. - - `[ResourceName ]`: Custom Locations name. - - `[SubscriptionId ]`: The ID of the target subscription. - ## RELATED LINKS diff --git a/src/CustomLocation/CustomLocation.Autorest/docs/Update-AzCustomLocationResourceSyncRule.md b/src/CustomLocation/CustomLocation.Autorest/docs/Update-AzCustomLocationResourceSyncRule.md new file mode 100644 index 000000000000..83128589036c --- /dev/null +++ b/src/CustomLocation/CustomLocation.Autorest/docs/Update-AzCustomLocationResourceSyncRule.md @@ -0,0 +1,401 @@ +--- +external help file: +Module Name: Az.CustomLocation +online version: https://learn.microsoft.com/powershell/module/az.customlocation/update-azcustomlocationresourcesyncrule +schema: 2.0.0 +--- + +# Update-AzCustomLocationResourceSyncRule + +## SYNOPSIS +Updates a Resource Sync Rule with the specified Resource Sync Rule name in the specified Resource Group, Subscription and Custom Location name. + +## SYNTAX + +### UpdateExpanded (Default) +``` +Update-AzCustomLocationResourceSyncRule -CustomLocationName -Name + -ResourceGroupName [-SubscriptionId ] [-Priority ] + [-SelectorMatchExpression ] [-SelectorMatchLabel ] + [-Tag ] [-TargetResourceGroup ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] + [-WhatIf] [] +``` + +### UpdateViaIdentityCustomlocationExpanded +``` +Update-AzCustomLocationResourceSyncRule -CustomlocationInputObject -Name + [-Priority ] [-SelectorMatchExpression ] + [-SelectorMatchLabel ] [-Tag ] [-TargetResourceGroup ] + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + +### UpdateViaIdentityExpanded +``` +Update-AzCustomLocationResourceSyncRule -InputObject [-Priority ] + [-SelectorMatchExpression ] [-SelectorMatchLabel ] + [-Tag ] [-TargetResourceGroup ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] + [-WhatIf] [] +``` + +### UpdateViaJsonFilePath +``` +Update-AzCustomLocationResourceSyncRule -CustomLocationName -Name + -ResourceGroupName -JsonFilePath [-SubscriptionId ] [-DefaultProfile ] + [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + +### UpdateViaJsonString +``` +Update-AzCustomLocationResourceSyncRule -CustomLocationName -Name + -ResourceGroupName -JsonString [-SubscriptionId ] [-DefaultProfile ] + [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + +## DESCRIPTION +Updates a Resource Sync Rule with the specified Resource Sync Rule name in the specified Resource Group, Subscription and Custom Location name. + +## EXAMPLES + +### Example 1: Updates a Resource Sync Rule with the specified Resource Sync Rule name in the specified Resource Group, Subscription and Custom Location name. +```powershell +$MatchExpressions = New-AzCustomLocationMatchExpressionsObject -Key "key4" -Operator "In" -Value "value4" +Update-AzCustomLocationResourceSyncRule -Name azps-resourcesyncrule -ResourceGroupName azps_test_cluster -CustomLocationName azps-customlocation -Priority 999 -SelectorMatchExpression $MatchExpressions -SelectorMatchLabel @{"Key1"="Value1"} -TargetResourceGroup "/subscriptions/{subId}/resourceGroups/azps_test_cluster" -Tag @{"abc"="123"} +``` + +```output +Location Name ResourceGroupName +-------- ---- ----------------- +eastus azps-resourcesyncrule azps_test_cluster +``` + +Updates a Resource Sync Rule with the specified Resource Sync Rule name in the specified Resource Group, Subscription and Custom Location name. + +### Example 2: Updates a Resource Sync Rule with the specified Resource Sync Rule name in the specified Resource Group, Subscription and Custom Location name. +```powershell +$MatchExpressions = New-AzCustomLocationMatchExpressionsObject -Key "key4" -Operator "In" -Value "value4" +$obj = Get-AzCustomLocationResourceSyncRule -ResourceGroupName azps_test_cluster -CustomLocationName azps-customlocation -Name azps-resourcesyncrule +Update-AzCustomLocationResourceSyncRule -InputObject $obj -Priority 999 -SelectorMatchExpression $MatchExpressions -SelectorMatchLabel @{"Key1"="Value1"} -TargetResourceGroup "/subscriptions/{subId}/resourceGroups/azps_test_cluster" -Tag @{"abc"="123"} +``` + +```output +Location Name ResourceGroupName +-------- ---- ----------------- +eastus azps-resourcesyncrule azps_test_cluster +``` + +Updates a Resource Sync Rule with the specified Resource Sync Rule name in the specified Resource Group, Subscription and Custom Location name. + +### Example 3: Updates a Resource Sync Rule with the specified Resource Sync Rule name in the specified Resource Group, Subscription and Custom Location name. +```powershell +$MatchExpressions = New-AzCustomLocationMatchExpressionsObject -Key "key4" -Operator "In" -Value "value4" +$obj = Get-AzCustomLocation -ResourceGroupName azps_test_cluster -Name azps-customlocation +Update-AzCustomLocationResourceSyncRule -CustomlocationInputObject $obj -Name azps-resourcesyncrule -Priority 999 -SelectorMatchExpression $MatchExpressions -SelectorMatchLabel @{"Key1"="Value1"} -TargetResourceGroup "/subscriptions/{subId}/resourceGroups/azps_test_cluster" -Tag @{"abc"="123"} +``` + +```output +Location Name ResourceGroupName +-------- ---- ----------------- +eastus azps-resourcesyncrule azps_test_cluster +``` + +Updates a Resource Sync Rule with the specified Resource Sync Rule name in the specified Resource Group, Subscription and Custom Location name. + +## PARAMETERS + +### -AsJob +Run the command as a job + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CustomlocationInputObject +Identity Parameter +To construct, see NOTES section for CUSTOMLOCATIONINPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocationIdentity +Parameter Sets: UpdateViaIdentityCustomlocationExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -CustomLocationName +Custom Locations name. + +```yaml +Type: System.String +Parameter Sets: UpdateExpanded, UpdateViaJsonFilePath, UpdateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The DefaultProfile parameter is not functional. +Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocationIdentity +Parameter Sets: UpdateViaIdentityExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -JsonFilePath +Path of Json file supplied to the Update operation + +```yaml +Type: System.String +Parameter Sets: UpdateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Update operation + +```yaml +Type: System.String +Parameter Sets: UpdateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Resource Sync Rule name. + +```yaml +Type: System.String +Parameter Sets: UpdateExpanded, UpdateViaIdentityCustomlocationExpanded, UpdateViaJsonFilePath, UpdateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NoWait +Run the command asynchronously + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Priority +Priority represents a priority of the Resource Sync Rule + +```yaml +Type: System.Int32 +Parameter Sets: UpdateExpanded, UpdateViaIdentityCustomlocationExpanded, UpdateViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. +The name is case insensitive. + +```yaml +Type: System.String +Parameter Sets: UpdateExpanded, UpdateViaJsonFilePath, UpdateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SelectorMatchExpression +MatchExpressions is a list of resource selector requirements. +Valid operators include In, NotIn, Exists, and DoesNotExist. +The values set must be non-empty in the case of In and NotIn. +The values set must be empty in the case of Exists and DoesNotExist. +To construct, see NOTES section for SELECTORMATCHEXPRESSION properties and create a hash table. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.IMatchExpressionsProperties[] +Parameter Sets: UpdateExpanded, UpdateViaIdentityCustomlocationExpanded, UpdateViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SelectorMatchLabel +MatchLabels is a map of {key,value} pairs. +A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is 'key', the operator is 'In', and the values array contains only 'value'. + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: UpdateExpanded, UpdateViaIdentityCustomlocationExpanded, UpdateViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. + +```yaml +Type: System.String +Parameter Sets: UpdateExpanded, UpdateViaJsonFilePath, UpdateViaJsonString +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Tag +Resource tags + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: UpdateExpanded, UpdateViaIdentityCustomlocationExpanded, UpdateViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -TargetResourceGroup +For an unmapped custom resource, its labels will be used to find matching resource sync rules. +If this resource sync rule is one of the matching rules with highest priority, then the unmapped custom resource will be projected to the target resource group associated with this resource sync rule. +The user creating this resource sync rule should have write permissions on the target resource group and this write permission will be validated when creating the resource sync rule. + +```yaml +Type: System.String +Parameter Sets: UpdateExpanded, UpdateViaIdentityCustomlocationExpanded, UpdateViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.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: System.Management.Automation.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 + +### Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocationIdentity + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.IResourceSyncRule + +## NOTES + +## RELATED LINKS + diff --git a/src/CustomLocation/CustomLocation.Autorest/examples/Find-AzCustomLocationTargetResourceGroup.md b/src/CustomLocation/CustomLocation.Autorest/examples/Find-AzCustomLocationTargetResourceGroup.md new file mode 100644 index 000000000000..72a1285828e3 --- /dev/null +++ b/src/CustomLocation/CustomLocation.Autorest/examples/Find-AzCustomLocationTargetResourceGroup.md @@ -0,0 +1,22 @@ +### Example 1: Returns the target resource group associated with the resource sync rules of the Custom Location that match the rules passed in with the Find Target Resource Group Request. +```powershell +Find-AzCustomLocationTargetResourceGroup -ResourceGroupName azps_test_cluster -CustomLocationName azps-customlocation -Label @{"Key1"="Value1"} -PassThru +``` + +```output +True +``` + +Returns the target resource group associated with the resource sync rules of the Custom Location that match the rules passed in with the Find Target Resource Group Request. + +### Example 2: Returns the target resource group associated with the resource sync rules of the Custom Location that match the rules passed in with the Find Target Resource Group Request. +```powershell +$obj = Get-AzCustomLocation -ResourceGroupName azps_test_cluster -Name azps-customlocation +Find-AzCustomLocationTargetResourceGroup -InputObject $obj -Label @{"Key1"="Value1"} -PassThru +``` + +```output +True +``` + +Returns the target resource group associated with the resource sync rules of the Custom Location that match the rules passed in with the Find Target Resource Group Request. \ No newline at end of file diff --git a/src/CustomLocation/CustomLocation.Autorest/examples/Get-AzCustomLocation.md b/src/CustomLocation/CustomLocation.Autorest/examples/Get-AzCustomLocation.md index 7ed827398e6d..fba558abfa8a 100644 --- a/src/CustomLocation/CustomLocation.Autorest/examples/Get-AzCustomLocation.md +++ b/src/CustomLocation/CustomLocation.Autorest/examples/Get-AzCustomLocation.md @@ -4,48 +4,35 @@ Get-AzCustomLocation ``` ```output -Location Name Namespace --------- ---- ---- -eastus azps_test_cluster arc +Location Name Namespace ResourceGroupName +-------- ---- --------- ----------------- +eastus azps-customlocation azps-namespace azps_test_cluster ``` List the details of the customLocation. ### Example 2: List the details of the customLocation with a specified resource group. ```powershell -Get-AzCustomLocation -ResourceGroupName azps_test_group +Get-AzCustomLocation -ResourceGroupName azps_test_cluster ``` ```output -Location Name Namespace --------- ---- ---- -eastus azps_test_cluster arc +Location Name Namespace ResourceGroupName +-------- ---- --------- ----------------- +eastus azps-customlocation azps-namespace azps_test_cluster ``` List the details of the customLocation with a specified resource group. ### Example 3: Gets the details of the customLocation with a specified resource group and name. ```powershell -Get-AzCustomLocation -ResourceGroupName azps_test_group -Name azps_test_cluster +Get-AzCustomLocation -ResourceGroupName azps_test_cluster -Name azps-customlocation ``` ```output -Location Name Namespace --------- ---- ---- -eastus azps_test_cluster arc +Location Name Namespace ResourceGroupName +-------- ---- --------- ----------------- +eastus azps-customlocation azps-namespace azps_test_cluster ``` -Gets the details of the customLocation with a specified resource group and name. - -### Example 4: Gets the details of the customLocation. -```powershell -New-AzCustomLocation -ResourceGroupName azps_test_group -Name azps_test_cluster -Location eastus -ClusterExtensionId "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/azps_test_group/providers/Microsoft.Kubernetes/connectedClusters/azps_test_cluster/providers/Microsoft.KubernetesConfiguration/extensions/azps_test_extension" -HostResourceId "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/azps_test_group/providers/Microsoft.Kubernetes/connectedClusters/azps_test_cluster" -Namespace arc | Get-AzCustomLocation -``` - -```output -Location Name Namespace --------- ---- ---- -eastus azps_test_cluster arc -``` - -Gets the details of the customLocation. \ No newline at end of file +Gets the details of the customLocation with a specified resource group and name. \ No newline at end of file diff --git a/src/CustomLocation/CustomLocation.Autorest/examples/Get-AzCustomLocationEnabledResourceType.md b/src/CustomLocation/CustomLocation.Autorest/examples/Get-AzCustomLocationEnabledResourceType.md index 971415420831..fd4a6069e2d2 100644 --- a/src/CustomLocation/CustomLocation.Autorest/examples/Get-AzCustomLocationEnabledResourceType.md +++ b/src/CustomLocation/CustomLocation.Autorest/examples/Get-AzCustomLocationEnabledResourceType.md @@ -4,9 +4,9 @@ Get-AzCustomLocationEnabledResourceType -ResourceGroupName azps_test_group -Name ``` ```output -Name Type ----- ---- -017e563408cfcbaad0604875fef1f0e5a36d5fefa5e81a4c1c212c5a77fbcbde Microsoft.ExtendedLocation/customLocations/enabledResourceTypes +Name ExtensionType +---- ------------- +435b5e8926f937f7a473d48f25731707c20916dfb52a47e0401a40181cb28217 microsoft.arcdataservices ``` Gets the list of the Enabled Resource Types. \ No newline at end of file diff --git a/src/CustomLocation/CustomLocation.Autorest/examples/Get-AzCustomLocationResourceSyncRule.md b/src/CustomLocation/CustomLocation.Autorest/examples/Get-AzCustomLocationResourceSyncRule.md new file mode 100644 index 000000000000..eeffdf5b323d --- /dev/null +++ b/src/CustomLocation/CustomLocation.Autorest/examples/Get-AzCustomLocationResourceSyncRule.md @@ -0,0 +1,25 @@ +### Example 1: List Resource Sync Rule by Custom Location name. +```powershell +Get-AzCustomLocationResourceSyncRule -ResourceGroupName azps_test_cluster -CustomLocationName azps-customlocation +``` + +```output +Location Name ResourceGroupName +-------- ---- ----------------- +eastus azps-resourcesyncrule azps_test_cluster +``` + +List Resource Sync Rule by Custom Location name. + +### Example 2: Get the detail of the resourceSyncRule with a specified resource group, subscription id Custom Location resource name and Resource Sync Rule name. +```powershell +Get-AzCustomLocationResourceSyncRule -ResourceGroupName azps_test_cluster -CustomLocationName azps-customlocation -Name azps-resourcesyncrule +``` + +```output +Location Name ResourceGroupName +-------- ---- ----------------- +eastus azps-resourcesyncrule azps_test_cluster +``` + +Get the detail of the resourceSyncRule with a specified resource group, subscription id Custom Location resource name and Resource Sync Rule name. \ No newline at end of file diff --git a/src/CustomLocation/CustomLocation.Autorest/examples/New-AzCustomLocation.md b/src/CustomLocation/CustomLocation.Autorest/examples/New-AzCustomLocation.md index de82e5a78741..a39e8ef095d0 100644 --- a/src/CustomLocation/CustomLocation.Autorest/examples/New-AzCustomLocation.md +++ b/src/CustomLocation/CustomLocation.Autorest/examples/New-AzCustomLocation.md @@ -1,12 +1,14 @@ -### Example 1: Creates or updates a Custom Location in the specified Subscription and Resource Group +### Example 1: Creates or updates a Custom Location in the specified Subscription and Resource Group. ```powershell -New-AzCustomLocation -ResourceGroupName azps_test_group -Name azps_test_cluster -Location eastus -ClusterExtensionId "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/azps_test_group/providers/Microsoft.Kubernetes/connectedClusters/azps_test_cluster/providers/Microsoft.KubernetesConfiguration/extensions/azps_test_extension" -HostResourceId "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/azps_test_group/providers/Microsoft.Kubernetes/connectedClusters/azps_test_cluster" -Namespace arc +$HostResourceId = (Get-AzConnectedKubernetes -ClusterName azps-connect -ResourceGroupName azps_test_cluster).Id +$ClusterExtensionId = (Get-AzKubernetesExtension -ClusterName azps-connect -ClusterType ConnectedClusters -ResourceGroupName azps_test_cluster -Name azps-extension).Id +New-AzCustomLocation -ResourceGroupName azps_test_cluster -Name azps-customlocation -Location eastus -ClusterExtensionId $ClusterExtensionId -HostResourceId $HostResourceId -Namespace azps-namespace ``` ```output -Location Name Namespace --------- ---- ---- -eastus azps_test_cluster arc +Location Name Namespace ResourceGroupName +-------- ---- --------- ----------------- +eastus azps-customlocation azps-namespace azps_test_cluster ``` -Creates or updates a Custom Location in the specified Subscription and Resource Group \ No newline at end of file +Creates or updates a Custom Location in the specified Subscription and Resource Group. \ No newline at end of file diff --git a/src/CustomLocation/CustomLocation.Autorest/examples/New-AzCustomLocationMatchExpressionsObject.md b/src/CustomLocation/CustomLocation.Autorest/examples/New-AzCustomLocationMatchExpressionsObject.md new file mode 100644 index 000000000000..417574fa1a7f --- /dev/null +++ b/src/CustomLocation/CustomLocation.Autorest/examples/New-AzCustomLocationMatchExpressionsObject.md @@ -0,0 +1,12 @@ +### Example 1: Create an in-memory object for MatchExpressionsProperties. +```powershell +New-AzCustomLocationMatchExpressionsObject -Key "key4" -Operator "In" -Value "value4" +``` + +```output +Key Operator +--- -------- +key4 In +``` + +Create an in-memory object for MatchExpressionsProperties. \ No newline at end of file diff --git a/src/CustomLocation/CustomLocation.Autorest/examples/New-AzCustomLocationResourceSyncRule.md b/src/CustomLocation/CustomLocation.Autorest/examples/New-AzCustomLocationResourceSyncRule.md new file mode 100644 index 000000000000..4891db6244a8 --- /dev/null +++ b/src/CustomLocation/CustomLocation.Autorest/examples/New-AzCustomLocationResourceSyncRule.md @@ -0,0 +1,13 @@ +### Example 1: Create a Resource Sync Rule in the parent Custom Location, Subscription Id and Resource Group. +```powershell +$MatchExpressions = New-AzCustomLocationMatchExpressionsObject -Key "key4" -Operator "In" -Value "value4" +New-AzCustomLocationResourceSyncRule -Name azps-resourcesyncrule -ResourceGroupName azps_test_cluster -CustomLocationName azps-customlocation -Location eastus -Priority 999 -SelectorMatchExpression $MatchExpressions -SelectorMatchLabel @{"Key1"="Value1"} -TargetResourceGroup "/subscriptions/{subId}/resourceGroups/azps_test_cluster" +``` + +```output +Location Name ResourceGroupName +-------- ---- ----------------- +eastus azps-resourcesyncrule azps_test_cluster +``` + +Create a Resource Sync Rule in the parent Custom Location, Subscription Id and Resource Group. \ No newline at end of file diff --git a/src/CustomLocation/CustomLocation.Autorest/examples/Remove-AzCustomLocation.md b/src/CustomLocation/CustomLocation.Autorest/examples/Remove-AzCustomLocation.md index f082f1531042..75d2762a0422 100644 --- a/src/CustomLocation/CustomLocation.Autorest/examples/Remove-AzCustomLocation.md +++ b/src/CustomLocation/CustomLocation.Autorest/examples/Remove-AzCustomLocation.md @@ -1,13 +1,14 @@ ### Example 1: Deletes the Custom Location. ```powershell -Remove-AzCustomLocation -ResourceGroupName azps_test_group -Name azps_test_cluster +Remove-AzCustomLocation -ResourceGroupName azps_test_cluster -Name azps-customlocation ``` Deletes the Custom Location. ### Example 2: Deletes the Custom Location. ```powershell -Get-AzCustomLocation -ResourceGroupName azps_test_group -Name azps_test_cluster | Remove-AzCustomLocation +$obj = Get-AzCustomLocation -ResourceGroupName azps_test_cluster -Name azps-customlocation +Remove-AzCustomLocation -InputObject $obj ``` Deletes the Custom Location. \ No newline at end of file diff --git a/src/CustomLocation/CustomLocation.Autorest/examples/Remove-AzCustomLocationResourceSyncRule.md b/src/CustomLocation/CustomLocation.Autorest/examples/Remove-AzCustomLocationResourceSyncRule.md new file mode 100644 index 000000000000..9bfc14b9dcaf --- /dev/null +++ b/src/CustomLocation/CustomLocation.Autorest/examples/Remove-AzCustomLocationResourceSyncRule.md @@ -0,0 +1,22 @@ +### Example 1: Deletes the Resource Sync Rule with the specified Resource Sync Rule Name, Custom Location Resource Name, Resource Group, and Subscription Id. +```powershell +Remove-AzCustomLocationResourceSyncRule -CustomLocationName azps-customlocation -Name azps-resourcesyncrule -ResourceGroupName azps_test_cluster +``` + +Deletes the Resource Sync Rule with the specified Resource Sync Rule Name, Custom Location Resource Name, Resource Group, and Subscription Id. + +### Example 2: Deletes the Resource Sync Rule with the specified Resource Sync Rule Name, Custom Location Resource Name, Resource Group, and Subscription Id. +```powershell +$obj = Get-AzCustomLocationResourceSyncRule -ResourceGroupName azps_test_cluster -CustomLocationName azps-customlocation -Name azps-resourcesyncrule +Remove-AzCustomLocationResourceSyncRule -InputObject $obj +``` + +Deletes the Resource Sync Rule with the specified Resource Sync Rule Name, Custom Location Resource Name, Resource Group, and Subscription Id. + +### Example 3: Deletes the Resource Sync Rule with the specified Resource Sync Rule Name, Custom Location Resource Name, Resource Group, and Subscription Id. +```powershell +$obj = Get-AzCustomLocation -ResourceGroupName azps_test_cluster -Name azps-customlocation +Remove-AzCustomLocationResourceSyncRule -CustomlocationInputObject $obj -Name azps-resourcesyncrule +``` + +Deletes the Resource Sync Rule with the specified Resource Sync Rule Name, Custom Location Resource Name, Resource Group, and Subscription Id. \ No newline at end of file diff --git a/src/CustomLocation/CustomLocation.Autorest/examples/Update-AzCustomLocation.md b/src/CustomLocation/CustomLocation.Autorest/examples/Update-AzCustomLocation.md index f8bfc0b57358..183371e92c38 100644 --- a/src/CustomLocation/CustomLocation.Autorest/examples/Update-AzCustomLocation.md +++ b/src/CustomLocation/CustomLocation.Autorest/examples/Update-AzCustomLocation.md @@ -1,25 +1,28 @@ ### Example 1: Updates a Custom Location with the specified Resource Name in the specified Resource Group and Subscription. ```powershell -Update-AzCustomLocation -ResourceGroupName azps_test_group -Name azps_test_cluster_1 -ClusterExtensionId "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/azps_test_group/providers/Microsoft.Kubernetes/connectedClusters/azps_test_cluster/providers/Microsoft.KubernetesConfiguration/extensions/azps_test_extension" -HostResourceId "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/azps_test_group/providers/Microsoft.Kubernetes/connectedClusters/azps_test_cluster" -Namespace arc +$HostResourceId = (Get-AzConnectedKubernetes -ClusterName azps-connect -ResourceGroupName azps_test_cluster).Id +$ClusterExtensionId = (Get-AzKubernetesExtension -ClusterName azps-connect -ClusterType ConnectedClusters -ResourceGroupName azps_test_cluster -Name azps-extension).Id +Update-AzCustomLocation -ResourceGroupName azps_test_cluster -Name azps-customlocation -ClusterExtensionId $ClusterExtensionId -HostResourceId $HostResourceId -Namespace azps-namespace -Tag @{"Key1"="Value1"} ``` ```output -Location Name Namespace --------- ---- ---- -eastus azps_test_cluster_1 arc +Location Name Namespace ResourceGroupName +-------- ---- --------- ----------------- +eastus azps-customlocation azps-namespace azps_test_cluster ``` Updates a Custom Location with the specified Resource Name in the specified Resource Group and Subscription. ### Example 2: Updates a Custom Location. ```powershell -Get-AzCustomLocation -ResourceGroupName azps_test_group -Name azps_test_cluster | Update-AzCustomLocation +$obj = Get-AzCustomLocation -ResourceGroupName azps_test_cluster -Name azps-customlocation +Update-AzCustomLocation -InputObject $obj -Tag @{"Key1"="Value1"} ``` ```output -Location Name Namespace --------- ---- ---- -eastus azps_test_cluster_1 arc +Location Name Namespace ResourceGroupName +-------- ---- --------- ----------------- +eastus azps-customlocation azps-namespace azps_test_cluster ``` Updates a Custom Location. \ No newline at end of file diff --git a/src/CustomLocation/CustomLocation.Autorest/examples/Update-AzCustomLocationResourceSyncRule.md b/src/CustomLocation/CustomLocation.Autorest/examples/Update-AzCustomLocationResourceSyncRule.md new file mode 100644 index 000000000000..e2fd484991a0 --- /dev/null +++ b/src/CustomLocation/CustomLocation.Autorest/examples/Update-AzCustomLocationResourceSyncRule.md @@ -0,0 +1,43 @@ +### Example 1: Updates a Resource Sync Rule with the specified Resource Sync Rule name in the specified Resource Group, Subscription and Custom Location name. +```powershell +$MatchExpressions = New-AzCustomLocationMatchExpressionsObject -Key "key4" -Operator "In" -Value "value4" +Update-AzCustomLocationResourceSyncRule -Name azps-resourcesyncrule -ResourceGroupName azps_test_cluster -CustomLocationName azps-customlocation -Priority 999 -SelectorMatchExpression $MatchExpressions -SelectorMatchLabel @{"Key1"="Value1"} -TargetResourceGroup "/subscriptions/{subId}/resourceGroups/azps_test_cluster" -Tag @{"abc"="123"} +``` + +```output +Location Name ResourceGroupName +-------- ---- ----------------- +eastus azps-resourcesyncrule azps_test_cluster +``` + +Updates a Resource Sync Rule with the specified Resource Sync Rule name in the specified Resource Group, Subscription and Custom Location name. + +### Example 2: Updates a Resource Sync Rule with the specified Resource Sync Rule name in the specified Resource Group, Subscription and Custom Location name. +```powershell +$MatchExpressions = New-AzCustomLocationMatchExpressionsObject -Key "key4" -Operator "In" -Value "value4" +$obj = Get-AzCustomLocationResourceSyncRule -ResourceGroupName azps_test_cluster -CustomLocationName azps-customlocation -Name azps-resourcesyncrule +Update-AzCustomLocationResourceSyncRule -InputObject $obj -Priority 999 -SelectorMatchExpression $MatchExpressions -SelectorMatchLabel @{"Key1"="Value1"} -TargetResourceGroup "/subscriptions/{subId}/resourceGroups/azps_test_cluster" -Tag @{"abc"="123"} +``` + +```output +Location Name ResourceGroupName +-------- ---- ----------------- +eastus azps-resourcesyncrule azps_test_cluster +``` + +Updates a Resource Sync Rule with the specified Resource Sync Rule name in the specified Resource Group, Subscription and Custom Location name. + +### Example 3: Updates a Resource Sync Rule with the specified Resource Sync Rule name in the specified Resource Group, Subscription and Custom Location name. +```powershell +$MatchExpressions = New-AzCustomLocationMatchExpressionsObject -Key "key4" -Operator "In" -Value "value4" +$obj = Get-AzCustomLocation -ResourceGroupName azps_test_cluster -Name azps-customlocation +Update-AzCustomLocationResourceSyncRule -CustomlocationInputObject $obj -Name azps-resourcesyncrule -Priority 999 -SelectorMatchExpression $MatchExpressions -SelectorMatchLabel @{"Key1"="Value1"} -TargetResourceGroup "/subscriptions/{subId}/resourceGroups/azps_test_cluster" -Tag @{"abc"="123"} +``` + +```output +Location Name ResourceGroupName +-------- ---- ----------------- +eastus azps-resourcesyncrule azps_test_cluster +``` + +Updates a Resource Sync Rule with the specified Resource Sync Rule name in the specified Resource Group, Subscription and Custom Location name. \ No newline at end of file diff --git a/src/CustomLocation/CustomLocation.Autorest/test/AzCustomLocation.Recording.json b/src/CustomLocation/CustomLocation.Autorest/test/AzCustomLocation.Recording.json index 88c1735cad60..e19b273d313b 100644 --- a/src/CustomLocation/CustomLocation.Autorest/test/AzCustomLocation.Recording.json +++ b/src/CustomLocation/CustomLocation.Autorest/test/AzCustomLocation.Recording.json @@ -1,15 +1,15 @@ { - "AzCustomLocation+[NoContext]+Create+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customlocations/hbj7fz?api-version=2021-08-15+1": { + "AzCustomLocation+[NoContext]+Create+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/0ovjr8?api-version=2021-08-31-preview+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customlocations/hbj7fz?api-version=2021-08-15", - "Content": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"clusterExtensionIds\": [ \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgrouphbj7fz/providers/Microsoft.Kubernetes/connectedClusters/1o0vu3/providers/Microsoft.KubernetesConfiguration/extensions/30auvc\" ],\r\n \"displayName\": \"hbj7fz\",\r\n \"hostResourceId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgrouphbj7fz/providers/Microsoft.Kubernetes/connectedClusters/1o0vu3\",\r\n \"hostType\": \"Kubernetes\",\r\n \"namespace\": \"arc\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/0ovjr8?api-version=2021-08-31-preview", + "Content": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"clusterExtensionIds\": [ \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/ConnectedClusters/nd1qe0/providers/Microsoft.KubernetesConfiguration/extensions/8964io\" ],\r\n \"displayName\": \"0ovjr8\",\r\n \"hostResourceId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/connectedClusters/nd1qe0\",\r\n \"hostType\": \"Kubernetes\",\r\n \"namespace\": \"azps2\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "539" ] + "Content-Length": [ "541" ] } }, "Response": { @@ -18,38 +18,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "Azure-Asyncoperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/f9b40bae-b1d9-4a29-9589-6ec67d48c159?api-version=2021-03-15-preview" ], - "X-Ms-Request-Id": [ "f9b40bae-b1d9-4a29-9589-6ec67d48c159" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/453891f4-a8a7-44fc-97d5-ad1d18cfebf9?api-version=2021-03-15-preview\u0026t=638367753175181000\u0026c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M\u0026s=nidxcEHjDTzMVmhvggWgUGNVFUDbkE49rxTL0z8WHbRyU-jYLbmBqdU7vA0v91YSqC_azvjSmDH7c7L32yiPqdJcy6tokoK2YGWxs-C1mvWhtuq7QEyMpUZtw_FIVZQWQhFeIonYZ9e4k4eWJoz4uK3KagYRay3YVDFuPXC3CbEJ5QsvdkaJh6IuwOBzuQQEZNKkeqzCFiccXMfom63U4lslKQrxgUBtph6vV0vpMACdunIBNy25P9ZSWUYaOv1k9oRKy_aTxuJMyVhx2KNx_aOsnHTE-gJBFGfqm1pRx83ap5M3duXE2Ci8Q0-HdfyWoJdrawGAwGsNaEyJdGULtQ\u0026h=QQu8xRYZl-SMM4_RVN73M-5xARi9BZh_4c1yH9ZVBXk" ], + "X-Ms-Async-Operation-Timeout": [ "PT90M" ], + "X-Ms-Request-Id": [ "453891f4-a8a7-44fc-97d5-ad1d18cfebf9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ "nginx" ], - "x-ms-correlation-request-id": [ "9841326e-9af9-4810-99bb-8b236f67c1b9" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20211027T075952Z:9841326e-9af9-4810-99bb-8b236f67c1b9" ], - "Date": [ "Wed, 27 Oct 2021 07:59:51 GMT" ] + "x-ms-correlation-request-id": [ "65ab1e4b-85ca-4f72-9fdd-2d8dbf8bf1d3" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133517Z:65ab1e4b-85ca-4f72-9fdd-2d8dbf8bf1d3" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 7E258171238E42669ADFD0833E13CE17 Ref B: TYO201100114045 Ref C: 2023-11-28T13:35:15Z" ], + "Date": [ "Tue, 28 Nov 2023 13:35:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "991" ], + "Content-Length": [ "993" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customlocations/hbj7fz\",\"name\":\"hbj7fz\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-27T07:59:48.9401285Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-27T07:59:48.9401285Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgrouphbj7fz/providers/Microsoft.Kubernetes/connectedClusters/1o0vu3\",\"namespace\":\"arc\",\"displayName\":\"hbj7fz\",\"provisioningState\":\"Creating\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgrouphbj7fz/providers/Microsoft.Kubernetes/connectedClusters/1o0vu3/providers/Microsoft.KubernetesConfiguration/extensions/30auvc\"],\"authentication\":{}}}", + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/0ovjr8\",\"name\":\"0ovjr8\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-11-28T13:35:16.1274495Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-11-28T13:35:16.1274495Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/connectedClusters/nd1qe0\",\"namespace\":\"azps2\",\"displayName\":\"0ovjr8\",\"provisioningState\":\"Creating\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/ConnectedClusters/nd1qe0/providers/Microsoft.KubernetesConfiguration/extensions/8964io\"],\"authentication\":{}}}", "isContentBase64": false } }, - "AzCustomLocation+[NoContext]+Create+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/f9b40bae-b1d9-4a29-9589-6ec67d48c159?api-version=2021-03-15-preview+2": { + "AzCustomLocation+[NoContext]+Create+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/453891f4-a8a7-44fc-97d5-ad1d18cfebf9?api-version=2021-03-15-preview\u0026t=638367753175181000\u0026c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M\u0026s=nidxcEHjDTzMVmhvggWgUGNVFUDbkE49rxTL0z8WHbRyU-jYLbmBqdU7vA0v91YSqC_azvjSmDH7c7L32yiPqdJcy6tokoK2YGWxs-C1mvWhtuq7QEyMpUZtw_FIVZQWQhFeIonYZ9e4k4eWJoz4uK3KagYRay3YVDFuPXC3CbEJ5QsvdkaJh6IuwOBzuQQEZNKkeqzCFiccXMfom63U4lslKQrxgUBtph6vV0vpMACdunIBNy25P9ZSWUYaOv1k9oRKy_aTxuJMyVhx2KNx_aOsnHTE-gJBFGfqm1pRx83ap5M3duXE2Ci8Q0-HdfyWoJdrawGAwGsNaEyJdGULtQ\u0026h=QQu8xRYZl-SMM4_RVN73M-5xARi9BZh_4c1yH9ZVBXk+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/f9b40bae-b1d9-4a29-9589-6ec67d48c159?api-version=2021-03-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/453891f4-a8a7-44fc-97d5-ad1d18cfebf9?api-version=2021-03-15-preview\u0026t=638367753175181000\u0026c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M\u0026s=nidxcEHjDTzMVmhvggWgUGNVFUDbkE49rxTL0z8WHbRyU-jYLbmBqdU7vA0v91YSqC_azvjSmDH7c7L32yiPqdJcy6tokoK2YGWxs-C1mvWhtuq7QEyMpUZtw_FIVZQWQhFeIonYZ9e4k4eWJoz4uK3KagYRay3YVDFuPXC3CbEJ5QsvdkaJh6IuwOBzuQQEZNKkeqzCFiccXMfom63U4lslKQrxgUBtph6vV0vpMACdunIBNy25P9ZSWUYaOv1k9oRKy_aTxuJMyVhx2KNx_aOsnHTE-gJBFGfqm1pRx83ap5M3duXE2Ci8Q0-HdfyWoJdrawGAwGsNaEyJdGULtQ\u0026h=QQu8xRYZl-SMM4_RVN73M-5xARi9BZh_4c1yH9ZVBXk", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "3" ], - "x-ms-client-request-id": [ "5a7f4fbc-342c-4e71-a840-54a24c7da2f7" ], + "x-ms-unique-id": [ "8" ], + "x-ms-client-request-id": [ "cc6aaff0-3ef2-4fbd-9ca2-12977c7c4b5d" ], "CommandName": [ "Az.CustomLocation.internal\\New-AzCustomLocation" ], "FullCommandName": [ "New-AzCustomLocation_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.10", "Az.CustomLocation/0.1.0" ] }, "ContentHeaders": { } @@ -59,38 +61,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], - "X-Ms-Request-Id": [ "f9b40bae-b1d9-4a29-9589-6ec67d48c159" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], + "X-Ms-Request-Id": [ "453891f4-a8a7-44fc-97d5-ad1d18cfebf9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ "nginx" ], - "x-ms-correlation-request-id": [ "4ac4c31f-5e25-4656-bfda-b41a785a7108" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20211027T080023Z:4ac4c31f-5e25-4656-bfda-b41a785a7108" ], - "Date": [ "Wed, 27 Oct 2021 08:00:23 GMT" ] + "x-ms-correlation-request-id": [ "5c70f0bc-7f11-4753-a727-8cbbe7559e64" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133548Z:5c70f0bc-7f11-4753-a727-8cbbe7559e64" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B41D1D5C647441588022436789AAC2B1 Ref B: TYO201100114045 Ref C: 2023-11-28T13:35:47Z" ], + "Date": [ "Tue, 28 Nov 2023 13:35:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "323" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ExtendedLocation/locations/eastus/operationsstatus/f9b40bae-b1d9-4a29-9589-6ec67d48c159\",\"name\":\"f9b40bae-b1d9-4a29-9589-6ec67d48c159\",\"status\":\"Succeeded\",\"startTime\":\"2021-10-27T07:59:51.439357936Z\",\"endTime\":\"2021-10-27T07:59:55.749915241Z\"}", + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ExtendedLocation/locations/eastus/operationsstatus/453891f4-a8a7-44fc-97d5-ad1d18cfebf9\",\"name\":\"453891f4-a8a7-44fc-97d5-ad1d18cfebf9\",\"status\":\"Succeeded\",\"startTime\":\"2023-11-28T13:35:17.121806865Z\",\"endTime\":\"2023-11-28T13:35:19.009505437Z\"}", "isContentBase64": false } }, - "AzCustomLocation+[NoContext]+Create+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customlocations/hbj7fz?api-version=2021-08-15+3": { + "AzCustomLocation+[NoContext]+Create+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/0ovjr8?api-version=2021-08-31-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customlocations/hbj7fz?api-version=2021-08-15", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/0ovjr8?api-version=2021-08-31-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "4" ], - "x-ms-client-request-id": [ "5a7f4fbc-342c-4e71-a840-54a24c7da2f7" ], + "x-ms-unique-id": [ "9" ], + "x-ms-client-request-id": [ "cc6aaff0-3ef2-4fbd-9ca2-12977c7c4b5d" ], "CommandName": [ "Az.CustomLocation.internal\\New-AzCustomLocation" ], "FullCommandName": [ "New-AzCustomLocation_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.10", "Az.CustomLocation/0.1.0" ] }, "ContentHeaders": { } @@ -100,35 +103,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "X-Ms-Request-Id": [ "e92108ab-90aa-44d1-aaab-64a23f50423c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], + "X-Ms-Request-Id": [ "5c563859-c023-403d-aab1-113076021e45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ "nginx" ], - "x-ms-correlation-request-id": [ "3dc83f98-90af-4155-a0ab-a94ed832b1fc" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20211027T080023Z:3dc83f98-90af-4155-a0ab-a94ed832b1fc" ], - "Date": [ "Wed, 27 Oct 2021 08:00:23 GMT" ] + "x-ms-correlation-request-id": [ "4df5a27e-61eb-471d-bf39-3bd90d1ae41e" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133549Z:4df5a27e-61eb-471d-bf39-3bd90d1ae41e" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 9CAA7B373E974D36A74CE5476A226531 Ref B: TYO201100114045 Ref C: 2023-11-28T13:35:48Z" ], + "Date": [ "Tue, 28 Nov 2023 13:35:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "992" ], + "Content-Length": [ "994" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customlocations/hbj7fz\",\"name\":\"hbj7fz\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-27T07:59:48.9401285Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-27T07:59:48.9401285Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgrouphbj7fz/providers/Microsoft.Kubernetes/connectedClusters/1o0vu3\",\"namespace\":\"arc\",\"displayName\":\"hbj7fz\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgrouphbj7fz/providers/Microsoft.Kubernetes/connectedClusters/1o0vu3/providers/Microsoft.KubernetesConfiguration/extensions/30auvc\"],\"authentication\":{}}}", + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/0ovjr8\",\"name\":\"0ovjr8\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-11-28T13:35:16.1274495Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-11-28T13:35:16.1274495Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/connectedClusters/nd1qe0\",\"namespace\":\"azps2\",\"displayName\":\"0ovjr8\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/ConnectedClusters/nd1qe0/providers/Microsoft.KubernetesConfiguration/extensions/8964io\"],\"authentication\":{}}}", "isContentBase64": false } }, - "AzCustomLocation+[NoContext]+Create+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customlocations/eyfqx6?api-version=2021-08-15+4": { + "AzCustomLocation+[NoContext]+Create+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/bv0to3?api-version=2021-08-31-preview+4": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customlocations/eyfqx6?api-version=2021-08-15", - "Content": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"clusterExtensionIds\": [ \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgrouphbj7fz/providers/Microsoft.Kubernetes/connectedClusters/1o0vu3/providers/Microsoft.KubernetesConfiguration/extensions/30auvc\" ],\r\n \"displayName\": \"hbj7fz\",\r\n \"hostResourceId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgrouphbj7fz/providers/Microsoft.Kubernetes/connectedClusters/1o0vu3\",\r\n \"hostType\": \"Kubernetes\",\r\n \"namespace\": \"arctwo\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/bv0to3?api-version=2021-08-31-preview", + "Content": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"clusterExtensionIds\": [ \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/ConnectedClusters/nd1qe0/providers/Microsoft.KubernetesConfiguration/extensions/8964io\" ],\r\n \"displayName\": \"bv0to3\",\r\n \"hostResourceId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/connectedClusters/nd1qe0\",\r\n \"hostType\": \"Kubernetes\",\r\n \"namespace\": \"azps3\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "542" ] + "Content-Length": [ "541" ] } }, "Response": { @@ -136,39 +140,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "Azure-Asyncoperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/9badfff3-21ba-43ca-a3df-5c055f6ac7df?api-version=2021-03-15-preview" ], - "X-Ms-Request-Id": [ "9badfff3-21ba-43ca-a3df-5c055f6ac7df" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/060c309d-5808-4ad5-8b0b-c8e7acc5ae0c?api-version=2021-03-15-preview\u0026t=638367753516696111\u0026c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M\u0026s=j2ElWH-Ew8ZGyrY832Afi7lBMIMZIan7tUmtIO7hrOZSJLUEz1KwAuMouadBXypc3X-FcTqiFqSCJc0sL4rNOJnhv781Q2twjHx5xr0JRvpAhFTQhIvKU-lKFNqQIb6rQfvahCkI6pPV9gv0U3Cvh_hI9HO_dDHW9UGIOe3Aax3agF-ekhhglz2w-cU6Vt0Kg-tf08F9LG95Kc-KU44PXAlGZ-0m8doK-akNZBL7FQipl0CIr-yGrAdQQQ8yFv-aipe6I9_wi8A9CUtpkDcXzCcvBk0p20usDDrrRi55c36RQZL8G45gK4idP29Pk6eb_7ZP2rUwwW692FY53ARhng\u0026h=GGcvIwOotRPjbTCngczBnm1aiJ-81sv7pqEIpb6YMTc" ], + "X-Ms-Async-Operation-Timeout": [ "PT90M" ], + "X-Ms-Request-Id": [ "060c309d-5808-4ad5-8b0b-c8e7acc5ae0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ "nginx" ], - "x-ms-correlation-request-id": [ "bf3a6a05-7dee-48ab-9d36-aebd3d84e0f6" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20211027T080039Z:bf3a6a05-7dee-48ab-9d36-aebd3d84e0f6" ], - "Date": [ "Wed, 27 Oct 2021 08:00:39 GMT" ] + "x-ms-correlation-request-id": [ "96b1037a-bade-4589-af5c-02100584296b" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133551Z:96b1037a-bade-4589-af5c-02100584296b" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B49981C22E4546ED8C620E2E04D76477 Ref B: TYO201100114045 Ref C: 2023-11-28T13:35:49Z" ], + "Date": [ "Tue, 28 Nov 2023 13:35:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "994" ], + "Content-Length": [ "993" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customlocations/eyfqx6\",\"name\":\"eyfqx6\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-27T08:00:32.4951417Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-27T08:00:32.4951417Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgrouphbj7fz/providers/Microsoft.Kubernetes/connectedClusters/1o0vu3\",\"namespace\":\"arctwo\",\"displayName\":\"hbj7fz\",\"provisioningState\":\"Creating\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgrouphbj7fz/providers/Microsoft.Kubernetes/connectedClusters/1o0vu3/providers/Microsoft.KubernetesConfiguration/extensions/30auvc\"],\"authentication\":{}}}", + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/bv0to3\",\"name\":\"bv0to3\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-11-28T13:35:50.7008581Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-11-28T13:35:50.7008581Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/connectedClusters/nd1qe0\",\"namespace\":\"azps3\",\"displayName\":\"bv0to3\",\"provisioningState\":\"Creating\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/ConnectedClusters/nd1qe0/providers/Microsoft.KubernetesConfiguration/extensions/8964io\"],\"authentication\":{}}}", "isContentBase64": false } }, - "AzCustomLocation+[NoContext]+Create+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/9badfff3-21ba-43ca-a3df-5c055f6ac7df?api-version=2021-03-15-preview+5": { + "AzCustomLocation+[NoContext]+Create+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/060c309d-5808-4ad5-8b0b-c8e7acc5ae0c?api-version=2021-03-15-preview\u0026t=638367753516696111\u0026c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M\u0026s=j2ElWH-Ew8ZGyrY832Afi7lBMIMZIan7tUmtIO7hrOZSJLUEz1KwAuMouadBXypc3X-FcTqiFqSCJc0sL4rNOJnhv781Q2twjHx5xr0JRvpAhFTQhIvKU-lKFNqQIb6rQfvahCkI6pPV9gv0U3Cvh_hI9HO_dDHW9UGIOe3Aax3agF-ekhhglz2w-cU6Vt0Kg-tf08F9LG95Kc-KU44PXAlGZ-0m8doK-akNZBL7FQipl0CIr-yGrAdQQQ8yFv-aipe6I9_wi8A9CUtpkDcXzCcvBk0p20usDDrrRi55c36RQZL8G45gK4idP29Pk6eb_7ZP2rUwwW692FY53ARhng\u0026h=GGcvIwOotRPjbTCngczBnm1aiJ-81sv7pqEIpb6YMTc+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/9badfff3-21ba-43ca-a3df-5c055f6ac7df?api-version=2021-03-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/060c309d-5808-4ad5-8b0b-c8e7acc5ae0c?api-version=2021-03-15-preview\u0026t=638367753516696111\u0026c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M\u0026s=j2ElWH-Ew8ZGyrY832Afi7lBMIMZIan7tUmtIO7hrOZSJLUEz1KwAuMouadBXypc3X-FcTqiFqSCJc0sL4rNOJnhv781Q2twjHx5xr0JRvpAhFTQhIvKU-lKFNqQIb6rQfvahCkI6pPV9gv0U3Cvh_hI9HO_dDHW9UGIOe3Aax3agF-ekhhglz2w-cU6Vt0Kg-tf08F9LG95Kc-KU44PXAlGZ-0m8doK-akNZBL7FQipl0CIr-yGrAdQQQ8yFv-aipe6I9_wi8A9CUtpkDcXzCcvBk0p20usDDrrRi55c36RQZL8G45gK4idP29Pk6eb_7ZP2rUwwW692FY53ARhng\u0026h=GGcvIwOotRPjbTCngczBnm1aiJ-81sv7pqEIpb6YMTc", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "6" ], - "x-ms-client-request-id": [ "9a3f0fc2-cc8d-43f0-af52-917170349a1d" ], + "x-ms-unique-id": [ "11" ], + "x-ms-client-request-id": [ "f616b634-4a28-44be-8b25-b506f72af23e" ], "CommandName": [ "Az.CustomLocation.internal\\New-AzCustomLocation" ], "FullCommandName": [ "New-AzCustomLocation_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.10", "Az.CustomLocation/0.1.0" ] }, "ContentHeaders": { } @@ -178,79 +184,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "X-Ms-Request-Id": [ "9badfff3-21ba-43ca-a3df-5c055f6ac7df" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], + "X-Ms-Request-Id": [ "060c309d-5808-4ad5-8b0b-c8e7acc5ae0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ "nginx" ], - "x-ms-correlation-request-id": [ "4cc1962c-9f91-4e6b-8721-3406dd6883d3" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20211027T080109Z:4cc1962c-9f91-4e6b-8721-3406dd6883d3" ], - "Date": [ "Wed, 27 Oct 2021 08:01:09 GMT" ] + "x-ms-correlation-request-id": [ "ffa52def-c7ee-4d07-9d4b-8d2278234561" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133622Z:ffa52def-c7ee-4d07-9d4b-8d2278234561" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 986376F968CF4007B4BA7B6CFE3A1E53 Ref B: TYO201100114045 Ref C: 2023-11-28T13:36:21Z" ], + "Date": [ "Tue, 28 Nov 2023 13:36:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "323" ], + "Content-Length": [ "321" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ExtendedLocation/locations/eastus/operationsstatus/9badfff3-21ba-43ca-a3df-5c055f6ac7df\",\"name\":\"9badfff3-21ba-43ca-a3df-5c055f6ac7df\",\"status\":\"Succeeded\",\"startTime\":\"2021-10-27T08:00:33.630035951Z\",\"endTime\":\"2021-10-27T08:00:36.044814913Z\"}", + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ExtendedLocation/locations/eastus/operationsstatus/060c309d-5808-4ad5-8b0b-c8e7acc5ae0c\",\"name\":\"060c309d-5808-4ad5-8b0b-c8e7acc5ae0c\",\"status\":\"Succeeded\",\"startTime\":\"2023-11-28T13:35:51.306118746Z\",\"endTime\":\"2023-11-28T13:35:52.6955821Z\"}", "isContentBase64": false } }, - "AzCustomLocation+[NoContext]+Create+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customlocations/eyfqx6?api-version=2021-08-15+6": { + "AzCustomLocation+[NoContext]+Create+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/bv0to3?api-version=2021-08-31-preview+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customlocations/eyfqx6?api-version=2021-08-15", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/bv0to3?api-version=2021-08-31-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "7" ], - "x-ms-client-request-id": [ "9a3f0fc2-cc8d-43f0-af52-917170349a1d" ], + "x-ms-unique-id": [ "12" ], + "x-ms-client-request-id": [ "f616b634-4a28-44be-8b25-b506f72af23e" ], "CommandName": [ "Az.CustomLocation.internal\\New-AzCustomLocation" ], "FullCommandName": [ "New-AzCustomLocation_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "X-Ms-Request-Id": [ "8f62ecb7-b53e-42a7-aa61-e8c6c3a8e344" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Server": [ "nginx" ], - "x-ms-correlation-request-id": [ "fe80d3e0-b785-4518-b436-a76599ca2f81" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20211027T080110Z:fe80d3e0-b785-4518-b436-a76599ca2f81" ], - "Date": [ "Wed, 27 Oct 2021 08:01:09 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "995" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customlocations/eyfqx6\",\"name\":\"eyfqx6\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-27T08:00:32.4951417Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-27T08:00:32.4951417Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgrouphbj7fz/providers/Microsoft.Kubernetes/connectedClusters/1o0vu3\",\"namespace\":\"arctwo\",\"displayName\":\"hbj7fz\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgrouphbj7fz/providers/Microsoft.Kubernetes/connectedClusters/1o0vu3/providers/Microsoft.KubernetesConfiguration/extensions/30auvc\"],\"authentication\":{}}}", - "isContentBase64": false - } - }, - "AzCustomLocation+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customLocations?api-version=2021-08-15+1": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customLocations?api-version=2021-08-15", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "8" ], - "x-ms-client-request-id": [ "43fa8fa7-443b-45f8-bd3c-231c87721e53" ], - "CommandName": [ "Get-AzCustomLocation" ], - "FullCommandName": [ "Get-AzCustomLocation_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.10", "Az.CustomLocation/0.1.0" ] }, "ContentHeaders": { } @@ -260,202 +226,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "2e296dcf-e6e0-4e32-8f08-a1e673e17342" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "X-Ms-Request-Id": [ "4958766f-2db2-4f03-a746-c11c84b650cb" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Server": [ "nginx" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20211027T080111Z:2e296dcf-e6e0-4e32-8f08-a1e673e17342" ], - "Date": [ "Wed, 27 Oct 2021 08:01:11 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "10479" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiclusterlocation\",\"name\":\"jinpeiclusterlocation\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T03:01:30.2948511Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T03:01:30.2948511Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"arc\",\"displayName\":\"jinpeiclusterlocation\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc200\",\"name\":\"jinpeiarc200\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:03:55.91253Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:03:55.91253Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"arc\",\"displayName\":\"jinpeiarc200\",\"provisioningState\":\"Failed\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc1\",\"name\":\"jinpeiarc1\",\"location\":\"eastus\",\"tags\":{\"aaa\":\"bbb\"},\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:06:29.3711688Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-19T09:48:08.8199852Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"arc\",\"displayName\":\"jinpeiarc1\",\"provisioningState\":\"Failed\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc2\",\"name\":\"jinpeiarc2\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:09:35.2177754Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:09:35.2177754Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc2\",\"displayName\":\"jinpeiarc2\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc3\",\"name\":\"jinpeiarc3\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:10:13.4530197Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:10:13.4530197Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc3\",\"displayName\":\"jinpeiarc3\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc4\",\"name\":\"jinpeiarc4\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:10:49.8831602Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:10:49.8831602Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc4\",\"displayName\":\"jinpeiarc4\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc5\",\"name\":\"jinpeiarc5\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:11:25.5933261Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:11:25.5933261Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc5\",\"displayName\":\"jinpeiarc5\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc6\",\"name\":\"jinpeiarc6\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:12:01.5784732Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:12:01.5784732Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc6\",\"displayName\":\"jinpeiarc6\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc7\",\"name\":\"jinpeiarc7\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:12:37.5786069Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:12:37.5786069Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc7\",\"displayName\":\"jinpeiarc7\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc8\",\"name\":\"jinpeiarc8\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:13:13.8037302Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:13:13.8037302Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc8\",\"displayName\":\"jinpeiarc8\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}}],\"nextLink\":\"https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5IJGgAAAAAAAA%3D%3D%23RT%3A1%23TRC%3A10%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAAcAAIaAP79%2FzJA%2B%2F%2F%2F9xFAfwBMgSEAYABTgQHAIAM%3D\\u0026api-version=2021-08-15\"}", - "isContentBase64": false - } - }, - "AzCustomLocation+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5IJGgAAAAAAAA%3D%3D%23RT%3A1%23TRC%3A10%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAAcAAIaAP79%2FzJA%2B%2F%2F%2F9xFAfwBMgSEAYABTgQHAIAM%3D\u0026api-version=2021-08-15+2": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5IJGgAAAAAAAA%3D%3D%23RT%3A1%23TRC%3A10%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAAcAAIaAP79%2FzJA%2B%2F%2F%2F9xFAfwBMgSEAYABTgQHAIAM%3D\u0026api-version=2021-08-15", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "9" ], - "x-ms-client-request-id": [ "43fa8fa7-443b-45f8-bd3c-231c87721e53" ], - "CommandName": [ "Get-AzCustomLocation" ], - "FullCommandName": [ "Get-AzCustomLocation_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "6a6f86fb-8f95-4a7e-8f6d-0226269a952c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "X-Ms-Request-Id": [ "0540442e-2072-49fb-ac13-09fbcafc6f5e" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Server": [ "nginx" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20211027T080112Z:6a6f86fb-8f95-4a7e-8f6d-0226269a952c" ], - "Date": [ "Wed, 27 Oct 2021 08:01:11 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "10476" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc9\",\"name\":\"jinpeiarc9\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:13:50.1888368Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:13:50.1888368Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc9\",\"displayName\":\"jinpeiarc9\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc10\",\"name\":\"jinpeiarc10\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:14:27.3140227Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:14:27.3140227Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc10\",\"displayName\":\"jinpeiarc10\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc11\",\"name\":\"jinpeiarc11\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:15:02.9440241Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:15:02.9440241Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc11\",\"displayName\":\"jinpeiarc11\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc12\",\"name\":\"jinpeiarc12\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:15:38.7950279Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:15:38.7950279Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc12\",\"displayName\":\"jinpeiarc12\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc13\",\"name\":\"jinpeiarc13\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:16:15.8700733Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:16:15.8700733Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc13\",\"displayName\":\"jinpeiarc13\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc14\",\"name\":\"jinpeiarc14\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:16:52.2001797Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:16:52.2001797Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc14\",\"displayName\":\"jinpeiarc14\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc15\",\"name\":\"jinpeiarc15\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:17:28.6504506Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:17:28.6504506Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc15\",\"displayName\":\"jinpeiarc15\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc16\",\"name\":\"jinpeiarc16\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:18:05.4805124Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:18:05.4805124Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc16\",\"displayName\":\"jinpeiarc16\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc17\",\"name\":\"jinpeiarc17\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:18:46.1955751Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:18:46.1955751Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc17\",\"displayName\":\"jinpeiarc17\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc18\",\"name\":\"jinpeiarc18\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:19:23.6906253Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:19:23.6906253Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc18\",\"displayName\":\"jinpeiarc18\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}}],\"nextLink\":\"https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5IUGgAAAAAAAA%3D%3D%23RT%3A2%23TRC%3A20%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAAaABEa8P8yQPv%2F%2F%2FcRQH8ATIEhAGAAU4EBwCAD\\u0026api-version=2021-08-15\"}", - "isContentBase64": false - } - }, - "AzCustomLocation+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5IUGgAAAAAAAA%3D%3D%23RT%3A2%23TRC%3A20%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAAaABEa8P8yQPv%2F%2F%2FcRQH8ATIEhAGAAU4EBwCAD\u0026api-version=2021-08-15+3": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5IUGgAAAAAAAA%3D%3D%23RT%3A2%23TRC%3A20%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAAaABEa8P8yQPv%2F%2F%2FcRQH8ATIEhAGAAU4EBwCAD\u0026api-version=2021-08-15", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "10" ], - "x-ms-client-request-id": [ "43fa8fa7-443b-45f8-bd3c-231c87721e53" ], - "CommandName": [ "Get-AzCustomLocation" ], - "FullCommandName": [ "Get-AzCustomLocation_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "3dd25ab1-6cd6-4934-85e4-7dafc4ade80e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "X-Ms-Request-Id": [ "43778216-260d-4453-9f72-b4d8e8cc1be6" ], + "X-Ms-Request-Id": [ "fa3b7383-9475-4477-a2cf-82002df6febb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ "nginx" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20211027T080112Z:3dd25ab1-6cd6-4934-85e4-7dafc4ade80e" ], - "Date": [ "Wed, 27 Oct 2021 08:01:12 GMT" ] + "x-ms-correlation-request-id": [ "483d566b-47f2-4ab3-8735-9967c421c847" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133623Z:483d566b-47f2-4ab3-8735-9967c421c847" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 28377AA1E2A8473A878652FE0174F00E Ref B: TYO201100114045 Ref C: 2023-11-28T13:36:22Z" ], + "Date": [ "Tue, 28 Nov 2023 13:36:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "10480" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc19\",\"name\":\"jinpeiarc19\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:19:59.5657012Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:19:59.5657012Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc19\",\"displayName\":\"jinpeiarc19\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc20\",\"name\":\"jinpeiarc20\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:20:36.0007223Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:20:36.0007223Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc20\",\"displayName\":\"jinpeiarc20\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc21\",\"name\":\"jinpeiarc21\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:21:12.0467685Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:21:12.0467685Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc21\",\"displayName\":\"jinpeiarc21\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc22\",\"name\":\"jinpeiarc22\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:21:48.4518111Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:21:48.4518111Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc22\",\"displayName\":\"jinpeiarc22\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc23\",\"name\":\"jinpeiarc23\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:22:27.8068772Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:22:27.8068772Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc23\",\"displayName\":\"jinpeiarc23\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc24\",\"name\":\"jinpeiarc24\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:23:03.6368946Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:23:03.6368946Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc24\",\"displayName\":\"jinpeiarc24\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc25\",\"name\":\"jinpeiarc25\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:23:39.6519345Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:23:39.6519345Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc25\",\"displayName\":\"jinpeiarc25\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc26\",\"name\":\"jinpeiarc26\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:24:17.7369765Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:24:17.7369765Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc26\",\"displayName\":\"jinpeiarc26\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc27\",\"name\":\"jinpeiarc27\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:24:54.5872552Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:24:54.5872552Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc27\",\"displayName\":\"jinpeiarc27\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc28\",\"name\":\"jinpeiarc28\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:25:30.4525369Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:25:30.4525369Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc28\",\"displayName\":\"jinpeiarc28\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}}],\"nextLink\":\"https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5IeGgAAAAAAAA%3D%3D%23RT%3A3%23TRC%3A30%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAAaABEaAMAyQPv%2F%2F%2FcRQH8ATIEhAGAAU4EBwCAD\\u0026api-version=2021-08-15\"}", - "isContentBase64": false - } - }, - "AzCustomLocation+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5IeGgAAAAAAAA%3D%3D%23RT%3A3%23TRC%3A30%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAAaABEaAMAyQPv%2F%2F%2FcRQH8ATIEhAGAAU4EBwCAD\u0026api-version=2021-08-15+4": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5IeGgAAAAAAAA%3D%3D%23RT%3A3%23TRC%3A30%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAAaABEaAMAyQPv%2F%2F%2FcRQH8ATIEhAGAAU4EBwCAD\u0026api-version=2021-08-15", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "11" ], - "x-ms-client-request-id": [ "43fa8fa7-443b-45f8-bd3c-231c87721e53" ], - "CommandName": [ "Get-AzCustomLocation" ], - "FullCommandName": [ "Get-AzCustomLocation_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "0b9d7b5f-7012-47df-a8d2-6a763b9c0a32" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], - "X-Ms-Request-Id": [ "4ce8c121-e43c-41dc-b466-263dbc3c7fab" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Server": [ "nginx" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20211027T080113Z:0b9d7b5f-7012-47df-a8d2-6a763b9c0a32" ], - "Date": [ "Wed, 27 Oct 2021 08:01:12 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "10480" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc29\",\"name\":\"jinpeiarc29\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:26:06.4627947Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:26:06.4627947Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc29\",\"displayName\":\"jinpeiarc29\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc30\",\"name\":\"jinpeiarc30\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:26:42.2280153Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:26:42.2280153Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc30\",\"displayName\":\"jinpeiarc30\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc31\",\"name\":\"jinpeiarc31\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:27:19.3082192Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:27:19.3082192Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc31\",\"displayName\":\"jinpeiarc31\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc32\",\"name\":\"jinpeiarc32\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:27:55.0537233Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:27:55.0537233Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc32\",\"displayName\":\"jinpeiarc32\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc33\",\"name\":\"jinpeiarc33\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:28:31.3545616Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:28:31.3545616Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc33\",\"displayName\":\"jinpeiarc33\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc34\",\"name\":\"jinpeiarc34\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:29:08.9647099Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:29:08.9647099Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc34\",\"displayName\":\"jinpeiarc34\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc35\",\"name\":\"jinpeiarc35\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:29:45.4948336Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:29:45.4948336Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc35\",\"displayName\":\"jinpeiarc35\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc36\",\"name\":\"jinpeiarc36\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:30:22.7099513Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:30:22.7099513Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc36\",\"displayName\":\"jinpeiarc36\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc37\",\"name\":\"jinpeiarc37\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:30:59.3800564Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:30:59.3800564Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc37\",\"displayName\":\"jinpeiarc37\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc38\",\"name\":\"jinpeiarc38\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:31:35.4251471Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:31:35.4251471Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc38\",\"displayName\":\"jinpeiarc38\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}}],\"nextLink\":\"https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5IoGgAAAAAAAA%3D%3D%23RT%3A4%23TRC%3A40%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAAaACEaAP8iQPv%2F%2F%2FcRQH8ATIEhAGAAU4EBwCAD\\u0026api-version=2021-08-15\"}", - "isContentBase64": false - } - }, - "AzCustomLocation+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5IoGgAAAAAAAA%3D%3D%23RT%3A4%23TRC%3A40%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAAaACEaAP8iQPv%2F%2F%2FcRQH8ATIEhAGAAU4EBwCAD\u0026api-version=2021-08-15+5": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5IoGgAAAAAAAA%3D%3D%23RT%3A4%23TRC%3A40%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAAaACEaAP8iQPv%2F%2F%2FcRQH8ATIEhAGAAU4EBwCAD\u0026api-version=2021-08-15", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "12" ], - "x-ms-client-request-id": [ "43fa8fa7-443b-45f8-bd3c-231c87721e53" ], - "CommandName": [ "Get-AzCustomLocation" ], - "FullCommandName": [ "Get-AzCustomLocation_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "2ccd5626-cd8d-4248-810a-c51e64214c4c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], - "X-Ms-Request-Id": [ "c61683f4-fbcf-4860-bc89-a90238fd198f" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Server": [ "nginx" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20211027T080113Z:2ccd5626-cd8d-4248-810a-c51e64214c4c" ], - "Date": [ "Wed, 27 Oct 2021 08:01:12 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "10478" ], + "Content-Length": [ "994" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc39\",\"name\":\"jinpeiarc39\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:32:13.9952411Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:32:13.9952411Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc39\",\"displayName\":\"jinpeiarc39\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc40\",\"name\":\"jinpeiarc40\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:32:50.1053394Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:32:50.1053394Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc40\",\"displayName\":\"jinpeiarc40\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc41\",\"name\":\"jinpeiarc41\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:33:26.1403918Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:33:26.1403918Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc41\",\"displayName\":\"jinpeiarc41\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc42\",\"name\":\"jinpeiarc42\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:34:04.1904553Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:34:04.1904553Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc42\",\"displayName\":\"jinpeiarc42\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc43\",\"name\":\"jinpeiarc43\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:34:40.7555202Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:34:40.7555202Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc43\",\"displayName\":\"jinpeiarc43\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc44\",\"name\":\"jinpeiarc44\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:35:16.97558Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:35:16.97558Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc44\",\"displayName\":\"jinpeiarc44\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc45\",\"name\":\"jinpeiarc45\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:35:52.9356323Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:35:52.9356323Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc45\",\"displayName\":\"jinpeiarc45\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc46\",\"name\":\"jinpeiarc46\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:36:28.8906818Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:36:28.8906818Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc46\",\"displayName\":\"jinpeiarc46\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc47\",\"name\":\"jinpeiarc47\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:37:05.2507563Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:37:05.2507563Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc47\",\"displayName\":\"jinpeiarc47\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc48\",\"name\":\"jinpeiarc48\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:37:42.2257816Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:37:42.2257816Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc48\",\"displayName\":\"jinpeiarc48\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}}],\"nextLink\":\"https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5IyGgAAAAAAAA%3D%3D%23RT%3A5%23TRC%3A50%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAAaADEa%2FP8SQPv%2F%2F%2FcRQH8ATIEhAGAAU4EBwCAD\\u0026api-version=2021-08-15\"}", + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/bv0to3\",\"name\":\"bv0to3\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-11-28T13:35:50.7008581Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-11-28T13:35:50.7008581Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/connectedClusters/nd1qe0\",\"namespace\":\"azps3\",\"displayName\":\"bv0to3\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/ConnectedClusters/nd1qe0/providers/Microsoft.KubernetesConfiguration/extensions/8964io\"],\"authentication\":{}}}", "isContentBase64": false } }, - "AzCustomLocation+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5IyGgAAAAAAAA%3D%3D%23RT%3A5%23TRC%3A50%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAAaADEa%2FP8SQPv%2F%2F%2FcRQH8ATIEhAGAAU4EBwCAD\u0026api-version=2021-08-15+6": { + "AzCustomLocation+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customLocations?api-version=2021-08-31-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5IyGgAAAAAAAA%3D%3D%23RT%3A5%23TRC%3A50%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAAaADEa%2FP8SQPv%2F%2F%2FcRQH8ATIEhAGAAU4EBwCAD\u0026api-version=2021-08-15", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customLocations?api-version=2021-08-31-preview", "Content": null, "isContentBase64": false, "Headers": { - "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "13" ], - "x-ms-client-request-id": [ "43fa8fa7-443b-45f8-bd3c-231c87721e53" ], + "x-ms-client-request-id": [ "a326e1e5-8b54-48a6-9543-c9a966e855be" ], "CommandName": [ "Get-AzCustomLocation" ], "FullCommandName": [ "Get-AzCustomLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.10", "Az.CustomLocation/0.1.0" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } @@ -465,365 +268,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "99fe0750-4824-4d57-9537-64bb020dee09" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], - "X-Ms-Request-Id": [ "e388f9b0-a081-4ecc-87e0-41ee1785dce6" ], + "x-ms-correlation-request-id": [ "9526bc10-bbba-477b-b50f-9d827fbf4280" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], + "X-Ms-Request-Id": [ "12b35184-5b19-406f-b7d5-b683b482bb75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ "nginx" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20211027T080114Z:99fe0750-4824-4d57-9537-64bb020dee09" ], - "Date": [ "Wed, 27 Oct 2021 08:01:13 GMT" ] + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133624Z:9526bc10-bbba-477b-b50f-9d827fbf4280" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 74C257CD98874D489C43B78E1C56CFFE Ref B: TYO201100114045 Ref C: 2023-11-28T13:36:23Z" ], + "Date": [ "Tue, 28 Nov 2023 13:36:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "10480" ], + "Content-Length": [ "4029" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc49\",\"name\":\"jinpeiarc49\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:38:18.0311763Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:38:18.0311763Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc49\",\"displayName\":\"jinpeiarc49\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc50\",\"name\":\"jinpeiarc50\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:38:55.0662201Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:38:55.0662201Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc50\",\"displayName\":\"jinpeiarc50\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc51\",\"name\":\"jinpeiarc51\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:39:30.9762589Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:39:30.9762589Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc51\",\"displayName\":\"jinpeiarc51\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc52\",\"name\":\"jinpeiarc52\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:40:07.2712986Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:40:07.2712986Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc52\",\"displayName\":\"jinpeiarc52\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc53\",\"name\":\"jinpeiarc53\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:42:47.1070364Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:42:47.1070364Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc53\",\"displayName\":\"jinpeiarc53\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc54\",\"name\":\"jinpeiarc54\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:43:23.9872878Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:43:23.9872878Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc54\",\"displayName\":\"jinpeiarc54\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc55\",\"name\":\"jinpeiarc55\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:43:59.7524423Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:43:59.7524423Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc55\",\"displayName\":\"jinpeiarc55\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc56\",\"name\":\"jinpeiarc56\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:44:35.8076181Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:44:35.8076181Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc56\",\"displayName\":\"jinpeiarc56\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc57\",\"name\":\"jinpeiarc57\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:45:11.8927796Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:45:11.8927796Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc57\",\"displayName\":\"jinpeiarc57\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc58\",\"name\":\"jinpeiarc58\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:45:47.6729199Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:45:47.6729199Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc58\",\"displayName\":\"jinpeiarc58\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}}],\"nextLink\":\"https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5I8GgAAAAAAAA%3D%3D%23RT%3A6%23TRC%3A60%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAAaADEaAPASQPv%2F%2F%2FcRQH8ATIEhAGAAU4EBwCAD\\u0026api-version=2021-08-15\"}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/azps_test_cluster/providers/microsoft.extendedlocation/customlocations/azps-custonlocation\",\"name\":\"azps-custonlocation\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-11-28T08:21:47.1402899Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-11-28T08:21:47.1402899Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps_test_cluster/providers/Microsoft.Kubernetes/connectedClusters/azps-connect\",\"namespace\":\"azps-namespace\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps_test_cluster/providers/Microsoft.Kubernetes/connectedClusters/azps-connect/providers/Microsoft.KubernetesConfiguration/extensions/azps-extension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6\",\"name\":\"4hzlx6\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-11-28T13:31:40.7832301Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-11-28T13:31:40.7832301Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/connectedClusters/nd1qe0\",\"namespace\":\"azps1\",\"displayName\":\"4hzlx6\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/ConnectedClusters/nd1qe0/providers/Microsoft.KubernetesConfiguration/extensions/8964io\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/0ovjr8\",\"name\":\"0ovjr8\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-11-28T13:35:16.1274495Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-11-28T13:35:16.1274495Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/connectedClusters/nd1qe0\",\"namespace\":\"azps2\",\"displayName\":\"0ovjr8\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/ConnectedClusters/nd1qe0/providers/Microsoft.KubernetesConfiguration/extensions/8964io\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/bv0to3\",\"name\":\"bv0to3\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-11-28T13:35:50.7008581Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-11-28T13:35:50.7008581Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/connectedClusters/nd1qe0\",\"namespace\":\"azps3\",\"displayName\":\"bv0to3\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/ConnectedClusters/nd1qe0/providers/Microsoft.KubernetesConfiguration/extensions/8964io\"],\"authentication\":{}}}]}", "isContentBase64": false } }, - "AzCustomLocation+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5I8GgAAAAAAAA%3D%3D%23RT%3A6%23TRC%3A60%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAAaADEaAPASQPv%2F%2F%2FcRQH8ATIEhAGAAU4EBwCAD\u0026api-version=2021-08-15+7": { + "AzCustomLocation+[NoContext]+List1+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customLocations?api-version=2021-08-31-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5I8GgAAAAAAAA%3D%3D%23RT%3A6%23TRC%3A60%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAAaADEaAPASQPv%2F%2F%2FcRQH8ATIEhAGAAU4EBwCAD\u0026api-version=2021-08-15", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customLocations?api-version=2021-08-31-preview", "Content": null, "isContentBase64": false, "Headers": { - "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "14" ], - "x-ms-client-request-id": [ "43fa8fa7-443b-45f8-bd3c-231c87721e53" ], - "CommandName": [ "Get-AzCustomLocation" ], - "FullCommandName": [ "Get-AzCustomLocation_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "656375a4-8953-4c0e-853a-ca7f471fbaf1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], - "X-Ms-Request-Id": [ "470403d4-2bec-4f72-8836-2b8da0c1c968" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Server": [ "nginx" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20211027T080114Z:656375a4-8953-4c0e-853a-ca7f471fbaf1" ], - "Date": [ "Wed, 27 Oct 2021 08:01:14 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "10486" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc59\",\"name\":\"jinpeiarc59\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:46:23.5130495Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:46:23.5130495Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc59\",\"displayName\":\"jinpeiarc59\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc60\",\"name\":\"jinpeiarc60\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:46:59.6781628Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:46:59.6781628Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc60\",\"displayName\":\"jinpeiarc60\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc61\",\"name\":\"jinpeiarc61\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:47:36.1032709Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:47:36.1032709Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc61\",\"displayName\":\"jinpeiarc61\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc62\",\"name\":\"jinpeiarc62\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:48:13.3433727Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:48:13.3433727Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc62\",\"displayName\":\"jinpeiarc62\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc63\",\"name\":\"jinpeiarc63\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:48:50.3484579Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:48:50.3484579Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc63\",\"displayName\":\"jinpeiarc63\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc64\",\"name\":\"jinpeiarc64\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:49:26.1435639Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:49:26.1435639Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc64\",\"displayName\":\"jinpeiarc64\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc65\",\"name\":\"jinpeiarc65\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:50:03.548615Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:50:03.548615Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc65\",\"displayName\":\"jinpeiarc65\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc66\",\"name\":\"jinpeiarc66\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:50:39.8336836Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:50:39.8336836Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc66\",\"displayName\":\"jinpeiarc66\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc67\",\"name\":\"jinpeiarc67\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:51:16.5287788Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:51:16.5287788Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc67\",\"displayName\":\"jinpeiarc67\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc68\",\"name\":\"jinpeiarc68\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:51:52.6138053Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:51:52.6138053Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc68\",\"displayName\":\"jinpeiarc68\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}}],\"nextLink\":\"https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5JGGgAAAAAAAA%3D%3D%23RT%3A7%23TRC%3A70%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAAYAEMawP%2F7%2F%2F%2F3EUB%2FAEyBIQBgAFOBAcAgAw%3D%3D\\u0026api-version=2021-08-15\"}", - "isContentBase64": false - } - }, - "AzCustomLocation+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5JGGgAAAAAAAA%3D%3D%23RT%3A7%23TRC%3A70%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAAYAEMawP%2F7%2F%2F%2F3EUB%2FAEyBIQBgAFOBAcAgAw%3D%3D\u0026api-version=2021-08-15+8": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5JGGgAAAAAAAA%3D%3D%23RT%3A7%23TRC%3A70%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAAYAEMawP%2F7%2F%2F%2F3EUB%2FAEyBIQBgAFOBAcAgAw%3D%3D\u0026api-version=2021-08-15", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "15" ], - "x-ms-client-request-id": [ "43fa8fa7-443b-45f8-bd3c-231c87721e53" ], - "CommandName": [ "Get-AzCustomLocation" ], - "FullCommandName": [ "Get-AzCustomLocation_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "07059bac-ec9d-475b-a4e5-b4d3e3e3a5c6" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], - "X-Ms-Request-Id": [ "5b1c86d8-3edc-41a7-8c7b-09100f653b52" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Server": [ "nginx" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20211027T080115Z:07059bac-ec9d-475b-a4e5-b4d3e3e3a5c6" ], - "Date": [ "Wed, 27 Oct 2021 08:01:14 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "10480" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc69\",\"name\":\"jinpeiarc69\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:52:29.6738618Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:52:29.6738618Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc69\",\"displayName\":\"jinpeiarc69\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc70\",\"name\":\"jinpeiarc70\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:53:06.2489146Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:53:06.2489146Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc70\",\"displayName\":\"jinpeiarc70\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc71\",\"name\":\"jinpeiarc71\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:53:42.9589935Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:53:42.9589935Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc71\",\"displayName\":\"jinpeiarc71\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc72\",\"name\":\"jinpeiarc72\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:54:21.3340152Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:54:21.3340152Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc72\",\"displayName\":\"jinpeiarc72\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc73\",\"name\":\"jinpeiarc73\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:54:57.4740907Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:54:57.4740907Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc73\",\"displayName\":\"jinpeiarc73\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc74\",\"name\":\"jinpeiarc74\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:55:33.5691101Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:55:33.5691101Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc74\",\"displayName\":\"jinpeiarc74\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc75\",\"name\":\"jinpeiarc75\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:56:09.4241486Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:56:09.4241486Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc75\",\"displayName\":\"jinpeiarc75\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc76\",\"name\":\"jinpeiarc76\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:56:46.0091901Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:56:46.0091901Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc76\",\"displayName\":\"jinpeiarc76\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc77\",\"name\":\"jinpeiarc77\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:57:22.6992603Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:57:22.6992603Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc77\",\"displayName\":\"jinpeiarc77\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc78\",\"name\":\"jinpeiarc78\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:58:00.2542745Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:58:00.2542745Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc78\",\"displayName\":\"jinpeiarc78\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}}],\"nextLink\":\"https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5JQGgAAAAAAAA%3D%3D%23RT%3A8%23TRC%3A80%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAAWAFIa%2B%2F%2F%2F9xFAfwBMgSEAYABTgQHAIAM%3D\\u0026api-version=2021-08-15\"}", - "isContentBase64": false - } - }, - "AzCustomLocation+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5JQGgAAAAAAAA%3D%3D%23RT%3A8%23TRC%3A80%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAAWAFIa%2B%2F%2F%2F9xFAfwBMgSEAYABTgQHAIAM%3D\u0026api-version=2021-08-15+9": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5JQGgAAAAAAAA%3D%3D%23RT%3A8%23TRC%3A80%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAAWAFIa%2B%2F%2F%2F9xFAfwBMgSEAYABTgQHAIAM%3D\u0026api-version=2021-08-15", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "16" ], - "x-ms-client-request-id": [ "43fa8fa7-443b-45f8-bd3c-231c87721e53" ], - "CommandName": [ "Get-AzCustomLocation" ], - "FullCommandName": [ "Get-AzCustomLocation_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "36690ad2-dd21-434c-9a87-6cbd853d1442" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], - "X-Ms-Request-Id": [ "c093f0f3-e92a-4183-84ed-ad24290309a1" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Server": [ "nginx" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20211027T080115Z:36690ad2-dd21-434c-9a87-6cbd853d1442" ], - "Date": [ "Wed, 27 Oct 2021 08:01:14 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "10472" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc79\",\"name\":\"jinpeiarc79\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:58:37.4343559Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:58:37.4343559Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc79\",\"displayName\":\"jinpeiarc79\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc80\",\"name\":\"jinpeiarc80\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:59:13.7446859Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:59:13.7446859Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc80\",\"displayName\":\"jinpeiarc80\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc81\",\"name\":\"jinpeiarc81\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T10:59:50.0049704Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T10:59:50.0049704Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc81\",\"displayName\":\"jinpeiarc81\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc82\",\"name\":\"jinpeiarc82\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:00:26.5451883Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:00:26.5451883Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc82\",\"displayName\":\"jinpeiarc82\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc83\",\"name\":\"jinpeiarc83\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:01:02.5804235Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:01:02.5804235Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc83\",\"displayName\":\"jinpeiarc83\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc84\",\"name\":\"jinpeiarc84\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:01:43.2156177Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:01:43.2156177Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc84\",\"displayName\":\"jinpeiarc84\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc85\",\"name\":\"jinpeiarc85\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:02:19.9007922Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:02:19.9007922Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc85\",\"displayName\":\"jinpeiarc85\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc86\",\"name\":\"jinpeiarc86\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:02:57.1259446Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:02:57.1259446Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc86\",\"displayName\":\"jinpeiarc86\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc87\",\"name\":\"jinpeiarc87\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:03:33.2160762Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:03:33.2160762Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc87\",\"displayName\":\"jinpeiarc87\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc88\",\"name\":\"jinpeiarc88\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:04:09.066226Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:04:09.066226Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc88\",\"displayName\":\"jinpeiarc88\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}}],\"nextLink\":\"https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5JbGgAAAAAAAA%3D%3D%23RT%3A9%23TRC%3A90%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAAWAFIaAPj%2F9xFAfwBMgSEAYABTgQHAIAM%3D\\u0026api-version=2021-08-15\"}", - "isContentBase64": false - } - }, - "AzCustomLocation+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5JbGgAAAAAAAA%3D%3D%23RT%3A9%23TRC%3A90%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAAWAFIaAPj%2F9xFAfwBMgSEAYABTgQHAIAM%3D\u0026api-version=2021-08-15+10": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5JbGgAAAAAAAA%3D%3D%23RT%3A9%23TRC%3A90%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAAWAFIaAPj%2F9xFAfwBMgSEAYABTgQHAIAM%3D\u0026api-version=2021-08-15", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "17" ], - "x-ms-client-request-id": [ "43fa8fa7-443b-45f8-bd3c-231c87721e53" ], - "CommandName": [ "Get-AzCustomLocation" ], - "FullCommandName": [ "Get-AzCustomLocation_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "d1ab39bb-c2e6-4abd-be7c-96bf76582a1e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], - "X-Ms-Request-Id": [ "c9fa366d-3a08-447c-850f-b63e0916c3d9" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Server": [ "nginx" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20211027T080116Z:d1ab39bb-c2e6-4abd-be7c-96bf76582a1e" ], - "Date": [ "Wed, 27 Oct 2021 08:01:15 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "10468" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc89\",\"name\":\"jinpeiarc89\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:04:45.2713112Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:04:45.2713112Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc89\",\"displayName\":\"jinpeiarc89\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc90\",\"name\":\"jinpeiarc90\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:05:25.0264176Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:05:25.0264176Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc90\",\"displayName\":\"jinpeiarc90\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc91\",\"name\":\"jinpeiarc91\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:06:01.5865087Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:06:01.5865087Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc91\",\"displayName\":\"jinpeiarc91\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc92\",\"name\":\"jinpeiarc92\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:06:37.7115935Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:06:37.7115935Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc92\",\"displayName\":\"jinpeiarc92\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc93\",\"name\":\"jinpeiarc93\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:07:14.8416929Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:07:14.8416929Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc93\",\"displayName\":\"jinpeiarc93\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc94\",\"name\":\"jinpeiarc94\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:07:52.1117417Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:07:52.1117417Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc94\",\"displayName\":\"jinpeiarc94\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc95\",\"name\":\"jinpeiarc95\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:08:28.9118128Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:08:28.9118128Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc95\",\"displayName\":\"jinpeiarc95\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc96\",\"name\":\"jinpeiarc96\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:09:04.9118984Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:09:04.9118984Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc96\",\"displayName\":\"jinpeiarc96\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc97\",\"name\":\"jinpeiarc97\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:09:42.8269304Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:09:42.8269304Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc97\",\"displayName\":\"jinpeiarc97\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc98\",\"name\":\"jinpeiarc98\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:10:18.7969879Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:10:18.7969879Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc98\",\"displayName\":\"jinpeiarc98\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}}],\"nextLink\":\"https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5JlGgAAAAAAAA%3D%3D%23RT%3A10%23TRC%3A100%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAAUAGEa4PcRQH8ATIEhAGAAU4EBwCAD\\u0026api-version=2021-08-15\"}", - "isContentBase64": false - } - }, - "AzCustomLocation+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5JlGgAAAAAAAA%3D%3D%23RT%3A10%23TRC%3A100%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAAUAGEa4PcRQH8ATIEhAGAAU4EBwCAD\u0026api-version=2021-08-15+11": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5JlGgAAAAAAAA%3D%3D%23RT%3A10%23TRC%3A100%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAAUAGEa4PcRQH8ATIEhAGAAU4EBwCAD\u0026api-version=2021-08-15", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "18" ], - "x-ms-client-request-id": [ "43fa8fa7-443b-45f8-bd3c-231c87721e53" ], - "CommandName": [ "Get-AzCustomLocation" ], - "FullCommandName": [ "Get-AzCustomLocation_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "4b496a0a-4b05-4072-9a66-27e69abbec19" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], - "X-Ms-Request-Id": [ "f2b5cfa3-baa6-4b12-9495-077345e8b4ff" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Server": [ "nginx" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20211027T080116Z:4b496a0a-4b05-4072-9a66-27e69abbec19" ], - "Date": [ "Wed, 27 Oct 2021 08:01:15 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "10506" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc99\",\"name\":\"jinpeiarc99\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:10:54.8120352Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:10:54.8120352Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc99\",\"displayName\":\"jinpeiarc99\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc100\",\"name\":\"jinpeiarc100\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:11:31.497113Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:11:31.497113Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc100\",\"displayName\":\"jinpeiarc100\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc101\",\"name\":\"jinpeiarc101\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:12:08.0471357Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:12:08.0471357Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc101\",\"displayName\":\"jinpeiarc101\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc102\",\"name\":\"jinpeiarc102\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:12:45.2674345Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:12:45.2674345Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc102\",\"displayName\":\"jinpeiarc102\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc103\",\"name\":\"jinpeiarc103\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:13:21.1324882Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:13:21.1324882Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc103\",\"displayName\":\"jinpeiarc103\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc104\",\"name\":\"jinpeiarc104\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:13:57.1580695Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:13:57.1580695Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc104\",\"displayName\":\"jinpeiarc104\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc105\",\"name\":\"jinpeiarc105\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:14:34.3930779Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:14:34.3930779Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc105\",\"displayName\":\"jinpeiarc105\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc106\",\"name\":\"jinpeiarc106\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:15:10.268163Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:15:10.268163Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc106\",\"displayName\":\"jinpeiarc106\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc107\",\"name\":\"jinpeiarc107\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:15:46.1782581Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:15:46.1782581Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc107\",\"displayName\":\"jinpeiarc107\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc108\",\"name\":\"jinpeiarc108\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:16:22.7185485Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:16:22.7185485Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc108\",\"displayName\":\"jinpeiarc108\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}}],\"nextLink\":\"https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5JwGgAAAAAAAA%3D%3D%23RT%3A11%23TRC%3A110%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAASAHAaEUB%2FAEyBIQBgAFOBAcAgAw%3D%3D\\u0026api-version=2021-08-15\"}", - "isContentBase64": false - } - }, - "AzCustomLocation+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5JwGgAAAAAAAA%3D%3D%23RT%3A11%23TRC%3A110%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAASAHAaEUB%2FAEyBIQBgAFOBAcAgAw%3D%3D\u0026api-version=2021-08-15+12": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5JwGgAAAAAAAA%3D%3D%23RT%3A11%23TRC%3A110%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAASAHAaEUB%2FAEyBIQBgAFOBAcAgAw%3D%3D\u0026api-version=2021-08-15", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "19" ], - "x-ms-client-request-id": [ "43fa8fa7-443b-45f8-bd3c-231c87721e53" ], - "CommandName": [ "Get-AzCustomLocation" ], - "FullCommandName": [ "Get-AzCustomLocation_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "a7653999-7292-4894-a196-583363e0824c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11984" ], - "X-Ms-Request-Id": [ "c6869d51-437b-4f19-a08d-d9969c1e2bc2" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Server": [ "nginx" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20211027T080116Z:a7653999-7292-4894-a196-583363e0824c" ], - "Date": [ "Wed, 27 Oct 2021 08:01:16 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "10512" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc109\",\"name\":\"jinpeiarc109\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:16:58.8037697Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:16:58.8037697Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc109\",\"displayName\":\"jinpeiarc109\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc110\",\"name\":\"jinpeiarc110\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:17:35.3789957Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:17:35.3789957Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc110\",\"displayName\":\"jinpeiarc110\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc111\",\"name\":\"jinpeiarc111\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:18:12.3341937Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:18:12.3341937Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc111\",\"displayName\":\"jinpeiarc111\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc112\",\"name\":\"jinpeiarc112\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:18:49.1693743Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:18:49.1693743Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc112\",\"displayName\":\"jinpeiarc112\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc113\",\"name\":\"jinpeiarc113\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:19:26.4145348Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:19:26.4145348Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc113\",\"displayName\":\"jinpeiarc113\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc114\",\"name\":\"jinpeiarc114\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:20:02.6796752Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:20:02.6796752Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc114\",\"displayName\":\"jinpeiarc114\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc115\",\"name\":\"jinpeiarc115\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:20:39.174802Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:20:39.174802Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc115\",\"displayName\":\"jinpeiarc115\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc116\",\"name\":\"jinpeiarc116\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:21:15.2249154Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:21:15.2249154Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc116\",\"displayName\":\"jinpeiarc116\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc117\",\"name\":\"jinpeiarc117\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:21:51.0200232Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:21:51.0200232Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc117\",\"displayName\":\"jinpeiarc117\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc118\",\"name\":\"jinpeiarc118\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:22:28.6251156Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:22:28.6251156Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc118\",\"displayName\":\"jinpeiarc118\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}}],\"nextLink\":\"https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5J6GgAAAAAAAA%3D%3D%23RT%3A12%23TRC%3A120%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAASAHIaAPx%2FAEyBIQBgAFOBAcAgAw%3D%3D\\u0026api-version=2021-08-15\"}", - "isContentBase64": false - } - }, - "AzCustomLocation+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5J6GgAAAAAAAA%3D%3D%23RT%3A12%23TRC%3A120%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAASAHIaAPx%2FAEyBIQBgAFOBAcAgAw%3D%3D\u0026api-version=2021-08-15+13": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5J6GgAAAAAAAA%3D%3D%23RT%3A12%23TRC%3A120%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAASAHIaAPx%2FAEyBIQBgAFOBAcAgAw%3D%3D\u0026api-version=2021-08-15", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "20" ], - "x-ms-client-request-id": [ "43fa8fa7-443b-45f8-bd3c-231c87721e53" ], - "CommandName": [ "Get-AzCustomLocation" ], - "FullCommandName": [ "Get-AzCustomLocation_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "357e529f-0afe-47b3-be6d-cfae6024e61c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11983" ], - "X-Ms-Request-Id": [ "e6833dca-07e6-453c-a3a1-a0ff0f405e6a" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Server": [ "nginx" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20211027T080117Z:357e529f-0afe-47b3-be6d-cfae6024e61c" ], - "Date": [ "Wed, 27 Oct 2021 08:01:16 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "10502" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc119\",\"name\":\"jinpeiarc119\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:23:05.7252042Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:23:05.7252042Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc119\",\"displayName\":\"jinpeiarc119\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc120\",\"name\":\"jinpeiarc120\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:23:42.2103162Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:23:42.2103162Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc120\",\"displayName\":\"jinpeiarc120\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc121\",\"name\":\"jinpeiarc121\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:24:18.8303916Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:24:18.8303916Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc121\",\"displayName\":\"jinpeiarc121\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc122\",\"name\":\"jinpeiarc122\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:24:54.760428Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:24:54.760428Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc122\",\"displayName\":\"jinpeiarc122\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc123\",\"name\":\"jinpeiarc123\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:25:30.9554989Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:25:30.9554989Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc123\",\"displayName\":\"jinpeiarc123\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc124\",\"name\":\"jinpeiarc124\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:26:07.3505807Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:26:07.3505807Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc124\",\"displayName\":\"jinpeiarc124\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc125\",\"name\":\"jinpeiarc125\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:26:43.3456109Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:26:43.3456109Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc125\",\"displayName\":\"jinpeiarc125\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc126\",\"name\":\"jinpeiarc126\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:27:21.170667Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:27:21.170667Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc126\",\"displayName\":\"jinpeiarc126\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc127\",\"name\":\"jinpeiarc127\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:28:01.5507207Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:28:01.5507207Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc127\",\"displayName\":\"jinpeiarc127\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc128\",\"name\":\"jinpeiarc128\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:28:37.5007713Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:28:37.5007713Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc128\",\"displayName\":\"jinpeiarc128\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}}],\"nextLink\":\"https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5KEGgAAAAAAAA%3D%3D%23RT%3A13%23TRC%3A130%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAAQAIEacABMgSEAYABTgQHAIAM%3D\\u0026api-version=2021-08-15\"}", - "isContentBase64": false - } - }, - "AzCustomLocation+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5KEGgAAAAAAAA%3D%3D%23RT%3A13%23TRC%3A130%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAAQAIEacABMgSEAYABTgQHAIAM%3D\u0026api-version=2021-08-15+14": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/customlocations?%24skipToken=%2BRID%3A~ojYsAPHDY5KEGgAAAAAAAA%3D%3D%23RT%3A13%23TRC%3A130%23ISV%3A2%23IEO%3A65551%23QCF%3A4%23FPC%3AAgEAAAAQAIEacABMgSEAYABTgQHAIAM%3D\u0026api-version=2021-08-15", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "21" ], - "x-ms-client-request-id": [ "43fa8fa7-443b-45f8-bd3c-231c87721e53" ], - "CommandName": [ "Get-AzCustomLocation" ], - "FullCommandName": [ "Get-AzCustomLocation_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "68f305ea-38fe-4e04-8488-0d5d55148a2a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11982" ], - "X-Ms-Request-Id": [ "5e0ed596-8f4e-4bb5-a976-0ce6db20b7db" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Server": [ "nginx" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20211027T080117Z:68f305ea-38fe-4e04-8488-0d5d55148a2a" ], - "Date": [ "Wed, 27 Oct 2021 08:01:17 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "9094" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc129\",\"name\":\"jinpeiarc129\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:29:14.0258187Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:29:14.0258187Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc129\",\"displayName\":\"jinpeiarc129\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc130\",\"name\":\"jinpeiarc130\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-12T11:29:50.1308638Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-12T11:29:50.1308638Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc130\",\"displayName\":\"jinpeiarc130\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc131\",\"name\":\"jinpeiarc131\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-19T09:56:37.297988Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-19T09:59:53.2088275Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"arc131\",\"displayName\":\"jinpeiarc131\",\"provisioningState\":\"Failed\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc132\",\"name\":\"jinpeiarc132\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-20T02:13:59.6567828Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-20T02:13:59.6567828Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"arc131\",\"displayName\":\"jinpeiarc132\",\"provisioningState\":\"Failed\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc133\",\"name\":\"jinpeiarc133\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-20T02:19:11.7118279Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-20T02:19:11.7118279Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"arc133\",\"displayName\":\"jinpeiarc133\",\"provisioningState\":\"Failed\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp/providers/microsoft.extendedlocation/customlocations/jinpeiarc201\",\"name\":\"jinpeiarc201\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-27T02:40:50.81553Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-27T02:40:50.81553Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc\",\"namespace\":\"jinpeiarc201\",\"provisioningState\":\"Failed\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/jinpei_gp_1027/providers/microsoft.extendedlocation/customlocations/jinpeiclusterlocation1027\",\"name\":\"jinpeiclusterlocation1027\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-27T07:02:00.2016198Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-27T07:02:45.451654Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp_1027/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc1027\",\"namespace\":\"arc1027\",\"displayName\":\"asdf\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/jinpei_gp_1027/providers/Microsoft.Kubernetes/connectedClusters/jinpeiarc1027/providers/Microsoft.KubernetesConfiguration/extensions/jinpeiextension1027\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customlocations/hbj7fz\",\"name\":\"hbj7fz\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-27T07:59:48.9401285Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-27T07:59:48.9401285Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgrouphbj7fz/providers/Microsoft.Kubernetes/connectedClusters/1o0vu3\",\"namespace\":\"arc\",\"displayName\":\"hbj7fz\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgrouphbj7fz/providers/Microsoft.Kubernetes/connectedClusters/1o0vu3/providers/Microsoft.KubernetesConfiguration/extensions/30auvc\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customlocations/eyfqx6\",\"name\":\"eyfqx6\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-27T08:00:32.4951417Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-27T08:00:32.4951417Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgrouphbj7fz/providers/Microsoft.Kubernetes/connectedClusters/1o0vu3\",\"namespace\":\"arctwo\",\"displayName\":\"hbj7fz\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgrouphbj7fz/providers/Microsoft.Kubernetes/connectedClusters/1o0vu3/providers/Microsoft.KubernetesConfiguration/extensions/30auvc\"],\"authentication\":{}}}]}", - "isContentBase64": false - } - }, - "AzCustomLocation+[NoContext]+List1+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customLocations?api-version=2021-08-15+1": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customLocations?api-version=2021-08-15", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "22" ], - "x-ms-client-request-id": [ "39dacde4-c757-4285-82f2-6747ce8ac73f" ], + "x-ms-client-request-id": [ "5b295d4c-02b2-4865-91c3-e6e55d15dd24" ], "CommandName": [ "Get-AzCustomLocation" ], "FullCommandName": [ "Get-AzCustomLocation_List1" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.10", "Az.CustomLocation/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -834,37 +310,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11981" ], - "X-Ms-Request-Id": [ "e915d025-b1d4-4f80-812f-d3d4043d8e24" ], + "x-ms-correlation-request-id": [ "a6df408d-dd80-498b-9315-696cb7b4167e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], + "X-Ms-Request-Id": [ "6335899d-a0ae-46cb-bb32-d583f1641c18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ "nginx" ], - "x-ms-correlation-request-id": [ "d5222f5d-4d1e-4c97-8c88-1be08c90c097" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20211027T080118Z:d5222f5d-4d1e-4c97-8c88-1be08c90c097" ], - "Date": [ "Wed, 27 Oct 2021 08:01:18 GMT" ] + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133625Z:a6df408d-dd80-498b-9315-696cb7b4167e" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 84C4CFD2ECDC407380D9A13126EBF0EB Ref B: TYO201100114045 Ref C: 2023-11-28T13:36:24Z" ], + "Date": [ "Tue, 28 Nov 2023 13:36:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2000" ], + "Content-Length": [ "2996" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customlocations/hbj7fz\",\"name\":\"hbj7fz\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-27T07:59:48.9401285Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-27T07:59:48.9401285Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgrouphbj7fz/providers/Microsoft.Kubernetes/connectedClusters/1o0vu3\",\"namespace\":\"arc\",\"displayName\":\"hbj7fz\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgrouphbj7fz/providers/Microsoft.Kubernetes/connectedClusters/1o0vu3/providers/Microsoft.KubernetesConfiguration/extensions/30auvc\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customlocations/eyfqx6\",\"name\":\"eyfqx6\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-27T08:00:32.4951417Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-27T08:00:32.4951417Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgrouphbj7fz/providers/Microsoft.Kubernetes/connectedClusters/1o0vu3\",\"namespace\":\"arctwo\",\"displayName\":\"hbj7fz\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgrouphbj7fz/providers/Microsoft.Kubernetes/connectedClusters/1o0vu3/providers/Microsoft.KubernetesConfiguration/extensions/30auvc\"],\"authentication\":{}}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6\",\"name\":\"4hzlx6\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-11-28T13:31:40.7832301Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-11-28T13:31:40.7832301Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/connectedClusters/nd1qe0\",\"namespace\":\"azps1\",\"displayName\":\"4hzlx6\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/ConnectedClusters/nd1qe0/providers/Microsoft.KubernetesConfiguration/extensions/8964io\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/0ovjr8\",\"name\":\"0ovjr8\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-11-28T13:35:16.1274495Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-11-28T13:35:16.1274495Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/connectedClusters/nd1qe0\",\"namespace\":\"azps2\",\"displayName\":\"0ovjr8\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/ConnectedClusters/nd1qe0/providers/Microsoft.KubernetesConfiguration/extensions/8964io\"],\"authentication\":{}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/bv0to3\",\"name\":\"bv0to3\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-11-28T13:35:50.7008581Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-11-28T13:35:50.7008581Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/connectedClusters/nd1qe0\",\"namespace\":\"azps3\",\"displayName\":\"bv0to3\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/ConnectedClusters/nd1qe0/providers/Microsoft.KubernetesConfiguration/extensions/8964io\"],\"authentication\":{}}}]}", "isContentBase64": false } }, - "AzCustomLocation+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customlocations/hbj7fz?api-version=2021-08-15+1": { + "AzCustomLocation+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/0ovjr8?api-version=2021-08-31-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customlocations/hbj7fz?api-version=2021-08-15", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/0ovjr8?api-version=2021-08-31-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "23" ], - "x-ms-client-request-id": [ "fb64a328-1afc-41cf-a558-a27cf55abb24" ], + "x-ms-unique-id": [ "15" ], + "x-ms-client-request-id": [ "0ebeb83a-c7f0-4099-adc8-3d49b4ca1841" ], "CommandName": [ "Get-AzCustomLocation" ], "FullCommandName": [ "Get-AzCustomLocation_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.10", "Az.CustomLocation/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -875,37 +352,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11980" ], - "X-Ms-Request-Id": [ "d2e21540-3040-4c92-9708-1dea3a08f6d0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], + "X-Ms-Request-Id": [ "4e2971a7-bf49-4679-beea-ffedf6f2e023" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ "nginx" ], - "x-ms-correlation-request-id": [ "7c2aaa08-465e-4e20-9f29-8be8493d758b" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20211027T080120Z:7c2aaa08-465e-4e20-9f29-8be8493d758b" ], - "Date": [ "Wed, 27 Oct 2021 08:01:19 GMT" ] + "x-ms-correlation-request-id": [ "46bf466c-da1a-46fd-8967-382548ee4127" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133626Z:46bf466c-da1a-46fd-8967-382548ee4127" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 02E6FC4FA544401D9D8FA0862ADA3A15 Ref B: TYO201100114045 Ref C: 2023-11-28T13:36:25Z" ], + "Date": [ "Tue, 28 Nov 2023 13:36:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "992" ], + "Content-Length": [ "994" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customlocations/hbj7fz\",\"name\":\"hbj7fz\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-27T07:59:48.9401285Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-27T07:59:48.9401285Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgrouphbj7fz/providers/Microsoft.Kubernetes/connectedClusters/1o0vu3\",\"namespace\":\"arc\",\"displayName\":\"hbj7fz\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgrouphbj7fz/providers/Microsoft.Kubernetes/connectedClusters/1o0vu3/providers/Microsoft.KubernetesConfiguration/extensions/30auvc\"],\"authentication\":{}}}", + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/0ovjr8\",\"name\":\"0ovjr8\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-11-28T13:35:16.1274495Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-11-28T13:35:16.1274495Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/connectedClusters/nd1qe0\",\"namespace\":\"azps2\",\"displayName\":\"0ovjr8\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/ConnectedClusters/nd1qe0/providers/Microsoft.KubernetesConfiguration/extensions/8964io\"],\"authentication\":{}}}", "isContentBase64": false } }, - "AzCustomLocation+[NoContext]+Get1+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customlocations/hbj7fz/enabledresourcetypes?api-version=2021-08-15+1": { + "AzCustomLocation+[NoContext]+Get1+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/0ovjr8/enabledresourcetypes?api-version=2021-08-31-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customlocations/hbj7fz/enabledresourcetypes?api-version=2021-08-15", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/0ovjr8/enabledresourcetypes?api-version=2021-08-31-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "24" ], - "x-ms-client-request-id": [ "ef910186-c1e2-47cf-b172-396bd5118f54" ], + "x-ms-unique-id": [ "16" ], + "x-ms-client-request-id": [ "3e0e606e-c7a5-4df5-be80-7ffcaf1b52d1" ], "CommandName": [ "Get-AzCustomLocationEnabledResourceType" ], "FullCommandName": [ "Get-AzCustomLocationEnabledResourceType_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.10", "Az.CustomLocation/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -916,35 +394,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11979" ], - "X-Ms-Request-Id": [ "882a759f-4b82-41db-b712-9cdb7672de27" ], + "x-ms-correlation-request-id": [ "868988f4-8cf8-4085-99a5-cee532494ce3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], + "X-Ms-Request-Id": [ "5383df86-d8a2-4001-89d8-f1331d304a1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ "nginx" ], - "x-ms-correlation-request-id": [ "98df252a-bb76-482b-838b-66e8451d020e" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20211027T080121Z:98df252a-bb76-482b-838b-66e8451d020e" ], - "Date": [ "Wed, 27 Oct 2021 08:01:21 GMT" ] + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133627Z:868988f4-8cf8-4085-99a5-cee532494ce3" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 96A01EADC44246DDADCBF6C370EE0481 Ref B: TYO201100114045 Ref C: 2023-11-28T13:36:26Z" ], + "Date": [ "Tue, 28 Nov 2023 13:36:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1769" ], + "Content-Length": [ "2950" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customlocations/hbj7fz/enabledresourcetypes/2dc3a97b73f5d11299b0a18cf78d7b67a843b97ac2f251e264f6e35a002f4540\",\"name\":\"2dc3a97b73f5d11299b0a18cf78d7b67a843b97ac2f251e264f6e35a002f4540\",\"properties\":{\"clusterExtensionId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgrouphbj7fz/providers/Microsoft.Kubernetes/connectedClusters/1o0vu3/providers/Microsoft.KubernetesConfiguration/extensions/30auvc\",\"extensionType\":\"microsoft.arcdataservices\",\"typesMetadata\":[{\"apiVersion\":\"2021-07-01-preview\",\"resourceType\":\"postgresInstances\",\"resourceProviderNamespace\":\"Microsoft.AzureArcData\"},{\"apiVersion\":\"2021-11-01\",\"resourceType\":\"sqlmanagedinstances\",\"resourceProviderNamespace\":\"Microsoft.AzureArcData\"},{\"apiVersion\":\"2021-08-01\",\"resourceType\":\"sqlmanagedinstances\",\"resourceProviderNamespace\":\"Microsoft.AzureArcData\"},{\"apiVersion\":\"2021-07-01-preview\",\"resourceType\":\"sqlmanagedinstances\",\"resourceProviderNamespace\":\"Microsoft.AzureArcData\"},{\"apiVersion\":\"2021-11-01\",\"resourceType\":\"datacontrollers\",\"resourceProviderNamespace\":\"Microsoft.AzureArcData\"},{\"apiVersion\":\"2021-08-01\",\"resourceType\":\"datacontrollers\",\"resourceProviderNamespace\":\"Microsoft.AzureArcData\"},{\"apiVersion\":\"2021-07-01-preview\",\"resourceType\":\"datacontrollers\",\"resourceProviderNamespace\":\"Microsoft.AzureArcData\"}]},\"type\":\"Microsoft.ExtendedLocation/customLocations/enabledResourceTypes\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-27T07:59:48.9401285Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-27T07:59:48.9401285Z\"}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/0ovjr8/enabledresourcetypes/4a73cf948f9db51b095cde9c8e3995031bd82bb7298c394145b3246ce3e90e56\",\"name\":\"4a73cf948f9db51b095cde9c8e3995031bd82bb7298c394145b3246ce3e90e56\",\"properties\":{\"clusterExtensionId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/ConnectedClusters/nd1qe0/providers/Microsoft.KubernetesConfiguration/extensions/8964io\",\"extensionType\":\"microsoft.arcdataservices\",\"typesMetadata\":[{\"apiVersion\":\"2023-01-15-preview\",\"resourceType\":\"postgresInstances\",\"resourceProviderNamespace\":\"Microsoft.AzureArcData\"},{\"apiVersion\":\"2022-03-01-preview\",\"resourceType\":\"postgresInstances\",\"resourceProviderNamespace\":\"Microsoft.AzureArcData\"},{\"apiVersion\":\"2021-07-01-preview\",\"resourceType\":\"postgresInstances\",\"resourceProviderNamespace\":\"Microsoft.AzureArcData\"},{\"apiVersion\":\"2023-01-15-preview\",\"resourceType\":\"sqlmanagedinstances\",\"resourceProviderNamespace\":\"Microsoft.AzureArcData\"},{\"apiVersion\":\"2022-03-01-preview\",\"resourceType\":\"sqlmanagedinstances\",\"resourceProviderNamespace\":\"Microsoft.AzureArcData\"},{\"apiVersion\":\"2021-11-01\",\"resourceType\":\"sqlmanagedinstances\",\"resourceProviderNamespace\":\"Microsoft.AzureArcData\"},{\"apiVersion\":\"2021-08-01\",\"resourceType\":\"sqlmanagedinstances\",\"resourceProviderNamespace\":\"Microsoft.AzureArcData\"},{\"apiVersion\":\"2021-07-01-preview\",\"resourceType\":\"sqlmanagedinstances\",\"resourceProviderNamespace\":\"Microsoft.AzureArcData\"},{\"apiVersion\":\"2023-01-15-preview\",\"resourceType\":\"sqlManagedInstances/failoverGroups\",\"resourceProviderNamespace\":\"Microsoft.AzureArcData\"},{\"apiVersion\":\"2023-01-15-preview\",\"resourceType\":\"datacontrollers/activeDirectoryConnectors\",\"resourceProviderNamespace\":\"Microsoft.AzureArcData\"},{\"apiVersion\":\"2022-03-01-preview\",\"resourceType\":\"datacontrollers/activeDirectoryConnectors\",\"resourceProviderNamespace\":\"Microsoft.AzureArcData\"},{\"apiVersion\":\"2023-01-15-preview\",\"resourceType\":\"datacontrollers\",\"resourceProviderNamespace\":\"Microsoft.AzureArcData\"},{\"apiVersion\":\"2022-03-01-preview\",\"resourceType\":\"datacontrollers\",\"resourceProviderNamespace\":\"Microsoft.AzureArcData\"},{\"apiVersion\":\"2021-11-01\",\"resourceType\":\"datacontrollers\",\"resourceProviderNamespace\":\"Microsoft.AzureArcData\"},{\"apiVersion\":\"2021-08-01\",\"resourceType\":\"datacontrollers\",\"resourceProviderNamespace\":\"Microsoft.AzureArcData\"},{\"apiVersion\":\"2021-07-01-preview\",\"resourceType\":\"datacontrollers\",\"resourceProviderNamespace\":\"Microsoft.AzureArcData\"}]},\"type\":\"Microsoft.ExtendedLocation/customLocations/enabledResourceTypes\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-11-28T13:35:16.1274495Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-11-28T13:35:16.1274495Z\"}}]}", "isContentBase64": false } }, - "AzCustomLocation+[NoContext]+Update+$PATCH+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customlocations/hbj7fz?api-version=2021-08-15+1": { + "AzCustomLocation+[NoContext]+Update+$PATCH+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/0ovjr8?api-version=2021-08-31-preview+1": { "Request": { "Method": "PATCH", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customlocations/hbj7fz?api-version=2021-08-15", - "Content": "{\r\n \"properties\": {\r\n \"clusterExtensionIds\": [ \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgrouphbj7fz/providers/Microsoft.Kubernetes/connectedClusters/1o0vu3/providers/Microsoft.KubernetesConfiguration/extensions/30auvc\" ],\r\n \"displayName\": \"hbj7fz\",\r\n \"hostResourceId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgrouphbj7fz/providers/Microsoft.Kubernetes/connectedClusters/1o0vu3\",\r\n \"hostType\": \"Kubernetes\",\r\n \"namespace\": \"arc\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/0ovjr8?api-version=2021-08-31-preview", + "Content": "{\r\n \"properties\": {\r\n \"clusterExtensionIds\": [ \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/ConnectedClusters/nd1qe0/providers/Microsoft.KubernetesConfiguration/extensions/8964io\" ],\r\n \"displayName\": \"0ovjr8\",\r\n \"hostResourceId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/connectedClusters/nd1qe0\",\r\n \"hostType\": \"Kubernetes\",\r\n \"namespace\": \"azps2\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "514" ] + "Content-Length": [ "516" ] } }, "Response": { @@ -952,38 +431,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], - "Azure-Asyncoperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/949d725a-930a-4633-ad3d-6e5e002539da?api-version=2021-03-15-preview" ], - "X-Ms-Request-Id": [ "949d725a-930a-4633-ad3d-6e5e002539da" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/70590e06-ad72-4c50-b780-096ce8c95f3f?api-version=2021-03-15-preview\u0026t=638367753898897614\u0026c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M\u0026s=cTYyx63WvuFhtyldbbPx8rtSrxXX47PqZysibFmBt2Na_G_sjpM1I7AzYC9vVFaf5BHJLMin26fG5N_hL_206KfqQxilZv4UGRyoy9UfRV-Ueogxeh015n3DFq3lAP3CXIpuHhb1WiEbZkCIfZT8xZTYX-pNZVR5jlddisWvBjJwcZIVty3mGAEdSRfMnGv5RcvFTqrJNS5oVoPEMTMhFTK3F_pREfHLECZ4gBKmlqirBsRkyEPCs-XXyU9O9RnSNJ-cu267zKluGXQBJDAacBVp7GdgraKPBgzTcala2K2vsDyNvyzL5WRs31KXTrb47effASgecGulFpxdjNLBGQ\u0026h=dxzR-gp5Xlt7rfby7lu_znF-7zVADxHM9k1_YGkRDVA" ], + "X-Ms-Async-Operation-Timeout": [ "PT90M" ], + "X-Ms-Request-Id": [ "70590e06-ad72-4c50-b780-096ce8c95f3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ "nginx" ], - "x-ms-correlation-request-id": [ "840f391a-1eac-4c32-ba5b-056bd1fa6420" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20211027T080124Z:840f391a-1eac-4c32-ba5b-056bd1fa6420" ], - "Date": [ "Wed, 27 Oct 2021 08:01:24 GMT" ] + "x-ms-correlation-request-id": [ "059d0a26-a051-40c5-8072-5e01dc5cddd4" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133629Z:059d0a26-a051-40c5-8072-5e01dc5cddd4" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 6D6841171EE84C88B6A91DA7065B0C32 Ref B: TYO201100114045 Ref C: 2023-11-28T13:36:28Z" ], + "Date": [ "Tue, 28 Nov 2023 13:36:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "991" ], + "Content-Length": [ "993" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customlocations/hbj7fz\",\"name\":\"hbj7fz\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-27T07:59:48.9401285Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-27T08:01:22.7801929Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgrouphbj7fz/providers/Microsoft.Kubernetes/connectedClusters/1o0vu3\",\"namespace\":\"arc\",\"displayName\":\"hbj7fz\",\"provisioningState\":\"Patching\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgrouphbj7fz/providers/Microsoft.Kubernetes/connectedClusters/1o0vu3/providers/Microsoft.KubernetesConfiguration/extensions/30auvc\"],\"authentication\":{}}}", + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/0ovjr8\",\"name\":\"0ovjr8\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-11-28T13:35:16.1274495Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-11-28T13:36:28.4678739Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/connectedClusters/nd1qe0\",\"namespace\":\"azps2\",\"displayName\":\"0ovjr8\",\"provisioningState\":\"Patching\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/ConnectedClusters/nd1qe0/providers/Microsoft.KubernetesConfiguration/extensions/8964io\"],\"authentication\":{}}}", "isContentBase64": false } }, - "AzCustomLocation+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customlocations/eyfqx6?api-version=2021-08-15+1": { + "AzCustomLocation+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/bv0to3?api-version=2021-08-31-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customlocations/eyfqx6?api-version=2021-08-15", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/bv0to3?api-version=2021-08-31-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "26" ], - "x-ms-client-request-id": [ "1c1382d7-26f9-4e77-9881-054e7b04ae11" ], + "x-ms-unique-id": [ "18" ], + "x-ms-client-request-id": [ "57ca125d-38dc-48d6-8d02-c2e510d74c44" ], "CommandName": [ "Get-AzCustomLocation" ], "FullCommandName": [ "Get-AzCustomLocation_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.10", "Az.CustomLocation/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -994,28 +475,29 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11978" ], - "X-Ms-Request-Id": [ "9185434e-1018-47bb-be70-a0f6f17e2935" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], + "X-Ms-Request-Id": [ "7cb40040-2378-4bff-9270-244bd75848f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ "nginx" ], - "x-ms-correlation-request-id": [ "ee87eb92-ab93-44c3-9b70-a3be0aee40b7" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20211027T080126Z:ee87eb92-ab93-44c3-9b70-a3be0aee40b7" ], - "Date": [ "Wed, 27 Oct 2021 08:01:25 GMT" ] + "x-ms-correlation-request-id": [ "35e8b6be-cc99-4871-a69b-4c8256a7f58c" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133630Z:35e8b6be-cc99-4871-a69b-4c8256a7f58c" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: FE1636D2B92F48179D27E920BD2FE384 Ref B: TYO201100114045 Ref C: 2023-11-28T13:36:30Z" ], + "Date": [ "Tue, 28 Nov 2023 13:36:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "995" ], + "Content-Length": [ "994" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customlocations/eyfqx6\",\"name\":\"eyfqx6\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-27T08:00:32.4951417Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-27T08:00:32.4951417Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgrouphbj7fz/providers/Microsoft.Kubernetes/connectedClusters/1o0vu3\",\"namespace\":\"arctwo\",\"displayName\":\"hbj7fz\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgrouphbj7fz/providers/Microsoft.Kubernetes/connectedClusters/1o0vu3/providers/Microsoft.KubernetesConfiguration/extensions/30auvc\"],\"authentication\":{}}}", + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/bv0to3\",\"name\":\"bv0to3\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-11-28T13:35:50.7008581Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-11-28T13:35:50.7008581Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/connectedClusters/nd1qe0\",\"namespace\":\"azps3\",\"displayName\":\"bv0to3\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/ConnectedClusters/nd1qe0/providers/Microsoft.KubernetesConfiguration/extensions/8964io\"],\"authentication\":{}}}", "isContentBase64": false } }, - "AzCustomLocation+[NoContext]+UpdateViaIdentityExpanded+$PATCH+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customlocations/eyfqx6?api-version=2021-08-15+2": { + "AzCustomLocation+[NoContext]+UpdateViaIdentityExpanded+$PATCH+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/bv0to3?api-version=2021-08-31-preview+2": { "Request": { "Method": "PATCH", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customlocations/eyfqx6?api-version=2021-08-15", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/bv0to3?api-version=2021-08-31-preview", "Content": "{\r\n \"properties\": {\r\n \"hostType\": \"Kubernetes\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -1030,38 +512,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], - "Azure-Asyncoperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/332e6612-0239-435e-aaf1-f72d8d3d4a2b?api-version=2021-03-15-preview" ], - "X-Ms-Request-Id": [ "332e6612-0239-435e-aaf1-f72d8d3d4a2b" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/2de23208-6814-4f6c-babf-5902cc391d19?api-version=2021-03-15-preview\u0026t=638367753926102083\u0026c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M\u0026s=VVvvFEyn2oQDDmsSl2rMD2z4GHt0WCaMUBbYYFPA-rUZeqBVu7A4RmcVviGg5OIC2CvPGh5U_meOG3lPkWt8endvg9cQU0LKBh5HXHlXOH6_ZUwarvzlIT-MPbHa7jh6Y94L0sTVfatnXQ1teOarRqFhEmJJ_ceYqz9eyDDX-p0tNjlij2kcAx2w9YmwVdaE1ANCbS8hqd7JapIf3eKwvKF5LnqHcGGHFalygA64w9olXoUwUxtFdbj_lNlTStmJq0Hiqh7sO0yLeG2AfWcyGjDN-8Xr0C_Yex3ImTOXXAfNTdupXvvNZ7lJFt6z6ooXMzpR7CmnMsicOskalnMS3A\u0026h=YdyndlH89582Qg-tgz3NBBzvKU1s5PJIgYjBOWwmBds" ], + "X-Ms-Async-Operation-Timeout": [ "PT90M" ], + "X-Ms-Request-Id": [ "2de23208-6814-4f6c-babf-5902cc391d19" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ "nginx" ], - "x-ms-correlation-request-id": [ "4047f66f-3b62-4a6d-bf06-2c6dfd2dfb40" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20211027T080128Z:4047f66f-3b62-4a6d-bf06-2c6dfd2dfb40" ], - "Date": [ "Wed, 27 Oct 2021 08:01:27 GMT" ] + "x-ms-correlation-request-id": [ "5ed70b8b-596d-40b3-a795-2f0fb908a61f" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133632Z:5ed70b8b-596d-40b3-a795-2f0fb908a61f" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0AFD903E01C0454981B2F912F6C476FD Ref B: TYO201100114045 Ref C: 2023-11-28T13:36:31Z" ], + "Date": [ "Tue, 28 Nov 2023 13:36:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "994" ], + "Content-Length": [ "993" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customlocations/eyfqx6\",\"name\":\"eyfqx6\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-27T08:00:32.4951417Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-27T08:01:27.1402657Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgrouphbj7fz/providers/Microsoft.Kubernetes/connectedClusters/1o0vu3\",\"namespace\":\"arctwo\",\"displayName\":\"hbj7fz\",\"provisioningState\":\"Patching\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgrouphbj7fz/providers/Microsoft.Kubernetes/connectedClusters/1o0vu3/providers/Microsoft.KubernetesConfiguration/extensions/30auvc\"],\"authentication\":{}}}", + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/bv0to3\",\"name\":\"bv0to3\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-11-28T13:35:50.7008581Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-11-28T13:36:31.4538626Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/connectedClusters/nd1qe0\",\"namespace\":\"azps3\",\"displayName\":\"bv0to3\",\"provisioningState\":\"Patching\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/ConnectedClusters/nd1qe0/providers/Microsoft.KubernetesConfiguration/extensions/8964io\"],\"authentication\":{}}}", "isContentBase64": false } }, - "AzCustomLocation+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customlocations/hbj7fz?api-version=2021-08-15+1": { + "AzCustomLocation+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/0ovjr8?api-version=2021-08-31-preview+1": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customlocations/hbj7fz?api-version=2021-08-15", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/0ovjr8?api-version=2021-08-31-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "28" ], - "x-ms-client-request-id": [ "a87141dd-44a4-4530-bc45-e175c5cd7150" ], + "x-ms-unique-id": [ "20" ], + "x-ms-client-request-id": [ "9f053624-2e3c-49fa-aee1-0a18742ce143" ], "CommandName": [ "Remove-AzCustomLocation" ], "FullCommandName": [ "Remove-AzCustomLocation_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.10", "Az.CustomLocation/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1072,19 +556,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationresults/07ceba5c-1175-4fcc-b89a-455bc0a93f75?api-version=2021-03-15-preview" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationresults/e97b2896-3dad-47cc-afd9-aabc80dface1?api-version=2021-03-15-preview\u0026t=638367753942394979\u0026c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M\u0026s=nu0mZA5TkbWONYzkq7XrApQ7Y9ORXvgeNfQfw1G-7jdrsrmBxni93hJPBCcZvHjLz7S2JxRrHiFXOIHYcNy5xc5xVoaTzHyuzD_D5S_cIRtFmp2rufHC1r9pXOBNQHzU6fYZQKR6nUfd2VBO9Wnzv9GLOriEtH5rG-TYI3xCZHyn-dFJtQ429VmxZ-VtWvKoC9LdQhH-S3KZ8RtYH8QOdg6SXyPkh5kb__6fu9JaXQAfmlYiffeQw-1CWeEtQgL_VNeKZkGfgatv9JiIUk0vEUsqXBSt9uEaq5qQRpcJ7-cSu12bz3c2gr-cP66lkVsotLk12YmMQH568H1ISuNfLw\u0026h=9O7XHy5ESSdBbG0JsFQcWwUQ-iLCoJZAvwk8I97G4UY" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "Azure-Asyncoperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/07ceba5c-1175-4fcc-b89a-455bc0a93f75?api-version=2021-03-15-preview" ], - "X-Ms-Request-Id": [ "07ceba5c-1175-4fcc-b89a-455bc0a93f75" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/e97b2896-3dad-47cc-afd9-aabc80dface1?api-version=2021-03-15-preview\u0026t=638367753942394979\u0026c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M\u0026s=obKIg85_e3xZh1m0GvYTOZeNVBhi6FUcfUVpLnL7DXaLp5wF2WQMtob7khYgUqbxVPBef-apdzi1-TviReRQfd0KbAGy3vs3ffiFNg1FI4KGmM7VhgmEbDpODXyMbsEH9UgwOHOzZ3caE0SaV40vsuYnXM3EuL84Td8jQErpACPr-X4GjK6wEyxVABR8eCxBr3lO12zWaPZjcbzyby1ABXxS4kMc04RSsEDvXehcQzzYI-AIem31iAPRE-mok-jr22jeR7rdNTW33WVEMml4Sazicukq4boVvrPJpxJT6KhZdPiIDPtb7QQ1FOJsuOLwdsrOIY1Tg5YZHQcbWKwDfA\u0026h=Jws9XobV5ZTzTrgL8pkYYtKF1Im485tHcg2yZhmJoVQ" ], + "X-Ms-Async-Operation-Timeout": [ "PT90M" ], + "X-Ms-Request-Id": [ "e97b2896-3dad-47cc-afd9-aabc80dface1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ "nginx" ], - "x-ms-correlation-request-id": [ "7c35cc07-196a-466f-a1c9-5f601088f6eb" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20211027T080130Z:7c35cc07-196a-466f-a1c9-5f601088f6eb" ], + "x-ms-correlation-request-id": [ "1f0e1905-7e18-4b58-8329-29c72600dd87" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133634Z:1f0e1905-7e18-4b58-8329-29c72600dd87" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 27 Oct 2021 08:01:30 GMT" ] + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 5C818916590449B89B4AA940BF33F3F4 Ref B: TYO201100114045 Ref C: 2023-11-28T13:36:32Z" ], + "Date": [ "Tue, 28 Nov 2023 13:36:33 GMT" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], "Expires": [ "-1" ], "Content-Length": [ "0" ] }, @@ -1092,20 +577,20 @@ "isContentBase64": false } }, - "AzCustomLocation+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/07ceba5c-1175-4fcc-b89a-455bc0a93f75?api-version=2021-03-15-preview+2": { + "AzCustomLocation+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/e97b2896-3dad-47cc-afd9-aabc80dface1?api-version=2021-03-15-preview\u0026t=638367753942394979\u0026c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M\u0026s=obKIg85_e3xZh1m0GvYTOZeNVBhi6FUcfUVpLnL7DXaLp5wF2WQMtob7khYgUqbxVPBef-apdzi1-TviReRQfd0KbAGy3vs3ffiFNg1FI4KGmM7VhgmEbDpODXyMbsEH9UgwOHOzZ3caE0SaV40vsuYnXM3EuL84Td8jQErpACPr-X4GjK6wEyxVABR8eCxBr3lO12zWaPZjcbzyby1ABXxS4kMc04RSsEDvXehcQzzYI-AIem31iAPRE-mok-jr22jeR7rdNTW33WVEMml4Sazicukq4boVvrPJpxJT6KhZdPiIDPtb7QQ1FOJsuOLwdsrOIY1Tg5YZHQcbWKwDfA\u0026h=Jws9XobV5ZTzTrgL8pkYYtKF1Im485tHcg2yZhmJoVQ+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/07ceba5c-1175-4fcc-b89a-455bc0a93f75?api-version=2021-03-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/e97b2896-3dad-47cc-afd9-aabc80dface1?api-version=2021-03-15-preview\u0026t=638367753942394979\u0026c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M\u0026s=obKIg85_e3xZh1m0GvYTOZeNVBhi6FUcfUVpLnL7DXaLp5wF2WQMtob7khYgUqbxVPBef-apdzi1-TviReRQfd0KbAGy3vs3ffiFNg1FI4KGmM7VhgmEbDpODXyMbsEH9UgwOHOzZ3caE0SaV40vsuYnXM3EuL84Td8jQErpACPr-X4GjK6wEyxVABR8eCxBr3lO12zWaPZjcbzyby1ABXxS4kMc04RSsEDvXehcQzzYI-AIem31iAPRE-mok-jr22jeR7rdNTW33WVEMml4Sazicukq4boVvrPJpxJT6KhZdPiIDPtb7QQ1FOJsuOLwdsrOIY1Tg5YZHQcbWKwDfA\u0026h=Jws9XobV5ZTzTrgL8pkYYtKF1Im485tHcg2yZhmJoVQ", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "29" ], - "x-ms-client-request-id": [ "a87141dd-44a4-4530-bc45-e175c5cd7150" ], + "x-ms-unique-id": [ "21" ], + "x-ms-client-request-id": [ "9f053624-2e3c-49fa-aee1-0a18742ce143" ], "CommandName": [ "Remove-AzCustomLocation" ], "FullCommandName": [ "Remove-AzCustomLocation_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.10", "Az.CustomLocation/0.1.0" ] }, "ContentHeaders": { } @@ -1115,38 +600,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11977" ], - "X-Ms-Request-Id": [ "07ceba5c-1175-4fcc-b89a-455bc0a93f75" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], + "X-Ms-Request-Id": [ "e97b2896-3dad-47cc-afd9-aabc80dface1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ "nginx" ], - "x-ms-correlation-request-id": [ "91842286-43a0-4979-84e3-484ec779faa6" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20211027T080201Z:91842286-43a0-4979-84e3-484ec779faa6" ], - "Date": [ "Wed, 27 Oct 2021 08:02:00 GMT" ] + "x-ms-correlation-request-id": [ "7019e689-bf4a-498b-9d64-c013dc53630e" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133704Z:7019e689-bf4a-498b-9d64-c013dc53630e" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: AEFDC2FB75B04F0AB11407D171A9CFB5 Ref B: TYO201100114045 Ref C: 2023-11-28T13:37:04Z" ], + "Date": [ "Tue, 28 Nov 2023 13:37:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "322" ], + "Content-Length": [ "323" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ExtendedLocation/locations/eastus/operationsstatus/07ceba5c-1175-4fcc-b89a-455bc0a93f75\",\"name\":\"07ceba5c-1175-4fcc-b89a-455bc0a93f75\",\"status\":\"Succeeded\",\"startTime\":\"2021-10-27T08:01:30.689425061Z\",\"endTime\":\"2021-10-27T08:01:33.22587599Z\"}", + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ExtendedLocation/locations/eastus/operationsstatus/e97b2896-3dad-47cc-afd9-aabc80dface1\",\"name\":\"e97b2896-3dad-47cc-afd9-aabc80dface1\",\"status\":\"Succeeded\",\"startTime\":\"2023-11-28T13:36:34.024572683Z\",\"endTime\":\"2023-11-28T13:36:35.620581698Z\"}", "isContentBase64": false } }, - "AzCustomLocation+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/07ceba5c-1175-4fcc-b89a-455bc0a93f75?api-version=2021-03-15-preview+3": { + "AzCustomLocation+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/e97b2896-3dad-47cc-afd9-aabc80dface1?api-version=2021-03-15-preview\u0026t=638367753942394979\u0026c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M\u0026s=obKIg85_e3xZh1m0GvYTOZeNVBhi6FUcfUVpLnL7DXaLp5wF2WQMtob7khYgUqbxVPBef-apdzi1-TviReRQfd0KbAGy3vs3ffiFNg1FI4KGmM7VhgmEbDpODXyMbsEH9UgwOHOzZ3caE0SaV40vsuYnXM3EuL84Td8jQErpACPr-X4GjK6wEyxVABR8eCxBr3lO12zWaPZjcbzyby1ABXxS4kMc04RSsEDvXehcQzzYI-AIem31iAPRE-mok-jr22jeR7rdNTW33WVEMml4Sazicukq4boVvrPJpxJT6KhZdPiIDPtb7QQ1FOJsuOLwdsrOIY1Tg5YZHQcbWKwDfA\u0026h=Jws9XobV5ZTzTrgL8pkYYtKF1Im485tHcg2yZhmJoVQ+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/07ceba5c-1175-4fcc-b89a-455bc0a93f75?api-version=2021-03-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/e97b2896-3dad-47cc-afd9-aabc80dface1?api-version=2021-03-15-preview\u0026t=638367753942394979\u0026c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M\u0026s=obKIg85_e3xZh1m0GvYTOZeNVBhi6FUcfUVpLnL7DXaLp5wF2WQMtob7khYgUqbxVPBef-apdzi1-TviReRQfd0KbAGy3vs3ffiFNg1FI4KGmM7VhgmEbDpODXyMbsEH9UgwOHOzZ3caE0SaV40vsuYnXM3EuL84Td8jQErpACPr-X4GjK6wEyxVABR8eCxBr3lO12zWaPZjcbzyby1ABXxS4kMc04RSsEDvXehcQzzYI-AIem31iAPRE-mok-jr22jeR7rdNTW33WVEMml4Sazicukq4boVvrPJpxJT6KhZdPiIDPtb7QQ1FOJsuOLwdsrOIY1Tg5YZHQcbWKwDfA\u0026h=Jws9XobV5ZTzTrgL8pkYYtKF1Im485tHcg2yZhmJoVQ", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "30" ], - "x-ms-client-request-id": [ "a87141dd-44a4-4530-bc45-e175c5cd7150" ], + "x-ms-unique-id": [ "22" ], + "x-ms-client-request-id": [ "9f053624-2e3c-49fa-aee1-0a18742ce143" ], "CommandName": [ "Remove-AzCustomLocation" ], "FullCommandName": [ "Remove-AzCustomLocation_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.10", "Az.CustomLocation/0.1.0" ] }, "ContentHeaders": { } @@ -1156,37 +642,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11976" ], - "X-Ms-Request-Id": [ "07ceba5c-1175-4fcc-b89a-455bc0a93f75" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], + "X-Ms-Request-Id": [ "e97b2896-3dad-47cc-afd9-aabc80dface1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ "nginx" ], - "x-ms-correlation-request-id": [ "20314111-dbdc-4e8f-98b2-732d1816b304" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20211027T080201Z:20314111-dbdc-4e8f-98b2-732d1816b304" ], - "Date": [ "Wed, 27 Oct 2021 08:02:00 GMT" ] + "x-ms-correlation-request-id": [ "33576cad-fd37-4eb7-9d66-7be19830528c" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133705Z:33576cad-fd37-4eb7-9d66-7be19830528c" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: C57341B2D02942D29EE3CB05618981B2 Ref B: TYO201100114045 Ref C: 2023-11-28T13:37:04Z" ], + "Date": [ "Tue, 28 Nov 2023 13:37:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "322" ], + "Content-Length": [ "323" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ExtendedLocation/locations/eastus/operationsstatus/07ceba5c-1175-4fcc-b89a-455bc0a93f75\",\"name\":\"07ceba5c-1175-4fcc-b89a-455bc0a93f75\",\"status\":\"Succeeded\",\"startTime\":\"2021-10-27T08:01:30.689425061Z\",\"endTime\":\"2021-10-27T08:01:33.22587599Z\"}", + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ExtendedLocation/locations/eastus/operationsstatus/e97b2896-3dad-47cc-afd9-aabc80dface1\",\"name\":\"e97b2896-3dad-47cc-afd9-aabc80dface1\",\"status\":\"Succeeded\",\"startTime\":\"2023-11-28T13:36:34.024572683Z\",\"endTime\":\"2023-11-28T13:36:35.620581698Z\"}", "isContentBase64": false } }, - "AzCustomLocation+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customlocations/eyfqx6?api-version=2021-08-15+1": { + "AzCustomLocation+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/bv0to3?api-version=2021-08-31-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customlocations/eyfqx6?api-version=2021-08-15", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/bv0to3?api-version=2021-08-31-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "31" ], - "x-ms-client-request-id": [ "eb059d43-2982-4b1e-8934-3277830b7ee0" ], + "x-ms-unique-id": [ "23" ], + "x-ms-client-request-id": [ "4ddc6591-51df-4e2d-9c25-ea7a6abf7a9d" ], "CommandName": [ "Get-AzCustomLocation" ], "FullCommandName": [ "Get-AzCustomLocation_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.10", "Az.CustomLocation/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1197,37 +684,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11975" ], - "X-Ms-Request-Id": [ "a35a911c-76bd-40d2-bf81-338c1bab2dad" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], + "X-Ms-Request-Id": [ "98802d68-4f20-4c53-9645-130c3f61b765" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ "nginx" ], - "x-ms-correlation-request-id": [ "9012aa84-1ce7-483f-9915-e2dca7649bae" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20211027T080202Z:9012aa84-1ce7-483f-9915-e2dca7649bae" ], - "Date": [ "Wed, 27 Oct 2021 08:02:01 GMT" ] + "x-ms-correlation-request-id": [ "b60215a4-a0c5-42aa-8c89-2782ee290325" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133706Z:b60215a4-a0c5-42aa-8c89-2782ee290325" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 359502AA2AE84DADB65729097B3FCEA2 Ref B: TYO201100114045 Ref C: 2023-11-28T13:37:05Z" ], + "Date": [ "Tue, 28 Nov 2023 13:37:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "995" ], + "Content-Length": [ "994" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customlocations/eyfqx6\",\"name\":\"eyfqx6\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-27T08:00:32.4951417Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2021-10-27T08:01:27.1402657Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgrouphbj7fz/providers/Microsoft.Kubernetes/connectedClusters/1o0vu3\",\"namespace\":\"arctwo\",\"displayName\":\"hbj7fz\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgrouphbj7fz/providers/Microsoft.Kubernetes/connectedClusters/1o0vu3/providers/Microsoft.KubernetesConfiguration/extensions/30auvc\"],\"authentication\":{}}}", + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/bv0to3\",\"name\":\"bv0to3\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-11-28T13:35:50.7008581Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-11-28T13:36:31.4538626Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/connectedClusters/nd1qe0\",\"namespace\":\"azps3\",\"displayName\":\"bv0to3\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/ConnectedClusters/nd1qe0/providers/Microsoft.KubernetesConfiguration/extensions/8964io\"],\"authentication\":{}}}", "isContentBase64": false } }, - "AzCustomLocation+[NoContext]+DeleteViaIdentity+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customlocations/eyfqx6?api-version=2021-08-15+2": { + "AzCustomLocation+[NoContext]+DeleteViaIdentity+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/bv0to3?api-version=2021-08-31-preview+2": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgrouphbj7fz/providers/microsoft.extendedlocation/customlocations/eyfqx6?api-version=2021-08-15", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/bv0to3?api-version=2021-08-31-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "32" ], - "x-ms-client-request-id": [ "c9bb2ae0-5da6-41a9-9f30-98fa8718d39d" ], + "x-ms-unique-id": [ "24" ], + "x-ms-client-request-id": [ "d4f83b04-a102-4abc-9f68-58d2adfd6980" ], "CommandName": [ "Remove-AzCustomLocation" ], "FullCommandName": [ "Remove-AzCustomLocation_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.10", "Az.CustomLocation/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1238,19 +726,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationresults/9e9e9352-4bd6-4d44-8a7d-d6d4b988b4b7?api-version=2021-03-15-preview" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], - "Azure-Asyncoperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/9e9e9352-4bd6-4d44-8a7d-d6d4b988b4b7?api-version=2021-03-15-preview" ], - "X-Ms-Request-Id": [ "9e9e9352-4bd6-4d44-8a7d-d6d4b988b4b7" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationresults/a0f2c8e5-50d7-4831-be3a-d8839b1252a6?api-version=2021-03-15-preview\u0026t=638367754281507816\u0026c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M\u0026s=ehyRpKXKRlmwXuftQGsu73WxpRndMBXh_CISXTJ7BSx_kFDbFK_fom9OOejmWcxFJS6YEnrplsnxB0FKawgx_MqVctcBAh1HIJfLa-5hMnbYQ4quDzJQoN3QrV3hqcuqFGVY3Xp8eBb3IdtCqj2MtfoMG8jcK2sfoz8pBDj0-kCvEhuGdePJTcrOvuzOlHrC1DWRANFvsrfepYqLmXHxv09asmA1Npnv8dtsdynF0bQJbRwSuU7r3W2JOo5mwL5gG6VbcNGpRuUEl244YhPMFBwhcqqaR5P5-REAAREnMa2Gb5CGqeAYQT7TNSpsGXfB2QcDlOwr24uztuotx5Vpxg\u0026h=WXCxDcVRYY-1eR0kQ4-E3S1sHcmuLOQOma9GFnH3Quo" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/a0f2c8e5-50d7-4831-be3a-d8839b1252a6?api-version=2021-03-15-preview\u0026t=638367754281507816\u0026c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M\u0026s=dFysRH7xHsFWKOB_NLKZv4gE0N_WxtL55KEEj3PpUH39nEYiMJy4zhRzVbm_V6YDQ7YnuZUW3D8HsqJQfhp6kjyRqMzTnQeI8W9iru-vdlBSXA1XDCMN3khAxMVNPbHGnG9ibZljW8EnCblvHc0Fvf7nmybqgbCaJQBlUGzGTeC6is9rbn4V_F3OSwMBSMlRLE8NjjS8wYWmyVchoZVOPYdBIkQoS5fWc08IplquHUJH0PFUfn10oKoxHyJUE9iI_aRcWUGswFU_qmKDQs0uHWktx5WxPBjViIMjk6wFbPAc3BLF5dNi5QWuJIs7z-7WN5d9reO9ESZGSMtqyT3vtg\u0026h=0U2UWOKixqK4Tm6eIBHFXKlT6R2RYX3DzKwY-9C0dAU" ], + "X-Ms-Async-Operation-Timeout": [ "PT90M" ], + "X-Ms-Request-Id": [ "a0f2c8e5-50d7-4831-be3a-d8839b1252a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ "nginx" ], - "x-ms-correlation-request-id": [ "bfdca6f2-e5be-4522-99bd-d93e8bf3f5af" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20211027T080205Z:bfdca6f2-e5be-4522-99bd-d93e8bf3f5af" ], + "x-ms-correlation-request-id": [ "6a09b478-1a68-4574-a292-812d664bd222" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133708Z:6a09b478-1a68-4574-a292-812d664bd222" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 27 Oct 2021 08:02:05 GMT" ] + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 6F989C2FD3F44B84869140409D4314D3 Ref B: TYO201100114045 Ref C: 2023-11-28T13:37:06Z" ], + "Date": [ "Tue, 28 Nov 2023 13:37:07 GMT" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], "Expires": [ "-1" ], "Content-Length": [ "0" ] }, @@ -1258,20 +747,20 @@ "isContentBase64": false } }, - "AzCustomLocation+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/9e9e9352-4bd6-4d44-8a7d-d6d4b988b4b7?api-version=2021-03-15-preview+3": { + "AzCustomLocation+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/a0f2c8e5-50d7-4831-be3a-d8839b1252a6?api-version=2021-03-15-preview\u0026t=638367754281507816\u0026c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M\u0026s=dFysRH7xHsFWKOB_NLKZv4gE0N_WxtL55KEEj3PpUH39nEYiMJy4zhRzVbm_V6YDQ7YnuZUW3D8HsqJQfhp6kjyRqMzTnQeI8W9iru-vdlBSXA1XDCMN3khAxMVNPbHGnG9ibZljW8EnCblvHc0Fvf7nmybqgbCaJQBlUGzGTeC6is9rbn4V_F3OSwMBSMlRLE8NjjS8wYWmyVchoZVOPYdBIkQoS5fWc08IplquHUJH0PFUfn10oKoxHyJUE9iI_aRcWUGswFU_qmKDQs0uHWktx5WxPBjViIMjk6wFbPAc3BLF5dNi5QWuJIs7z-7WN5d9reO9ESZGSMtqyT3vtg\u0026h=0U2UWOKixqK4Tm6eIBHFXKlT6R2RYX3DzKwY-9C0dAU+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/9e9e9352-4bd6-4d44-8a7d-d6d4b988b4b7?api-version=2021-03-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/a0f2c8e5-50d7-4831-be3a-d8839b1252a6?api-version=2021-03-15-preview\u0026t=638367754281507816\u0026c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M\u0026s=dFysRH7xHsFWKOB_NLKZv4gE0N_WxtL55KEEj3PpUH39nEYiMJy4zhRzVbm_V6YDQ7YnuZUW3D8HsqJQfhp6kjyRqMzTnQeI8W9iru-vdlBSXA1XDCMN3khAxMVNPbHGnG9ibZljW8EnCblvHc0Fvf7nmybqgbCaJQBlUGzGTeC6is9rbn4V_F3OSwMBSMlRLE8NjjS8wYWmyVchoZVOPYdBIkQoS5fWc08IplquHUJH0PFUfn10oKoxHyJUE9iI_aRcWUGswFU_qmKDQs0uHWktx5WxPBjViIMjk6wFbPAc3BLF5dNi5QWuJIs7z-7WN5d9reO9ESZGSMtqyT3vtg\u0026h=0U2UWOKixqK4Tm6eIBHFXKlT6R2RYX3DzKwY-9C0dAU", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "33" ], - "x-ms-client-request-id": [ "c9bb2ae0-5da6-41a9-9f30-98fa8718d39d" ], + "x-ms-unique-id": [ "25" ], + "x-ms-client-request-id": [ "d4f83b04-a102-4abc-9f68-58d2adfd6980" ], "CommandName": [ "Remove-AzCustomLocation" ], "FullCommandName": [ "Remove-AzCustomLocation_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.10", "Az.CustomLocation/0.1.0" ] }, "ContentHeaders": { } @@ -1281,38 +770,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11974" ], - "X-Ms-Request-Id": [ "9e9e9352-4bd6-4d44-8a7d-d6d4b988b4b7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], + "X-Ms-Request-Id": [ "a0f2c8e5-50d7-4831-be3a-d8839b1252a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ "nginx" ], - "x-ms-correlation-request-id": [ "dcf8ed6e-fab5-4d24-b2c2-89be3e747bde" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20211027T080235Z:dcf8ed6e-fab5-4d24-b2c2-89be3e747bde" ], - "Date": [ "Wed, 27 Oct 2021 08:02:35 GMT" ] + "x-ms-correlation-request-id": [ "71657133-e380-42b4-ad2d-f1a6bf25e1ac" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133739Z:71657133-e380-42b4-ad2d-f1a6bf25e1ac" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4DAD56732A2F4BB8AA8BB1DA6A40DA6F Ref B: TYO201100114045 Ref C: 2023-11-28T13:37:38Z" ], + "Date": [ "Tue, 28 Nov 2023 13:37:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "322" ], + "Content-Length": [ "323" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ExtendedLocation/locations/eastus/operationsstatus/9e9e9352-4bd6-4d44-8a7d-d6d4b988b4b7\",\"name\":\"9e9e9352-4bd6-4d44-8a7d-d6d4b988b4b7\",\"status\":\"Succeeded\",\"startTime\":\"2021-10-27T08:02:05.17579579Z\",\"endTime\":\"2021-10-27T08:02:07.956874127Z\"}", + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ExtendedLocation/locations/eastus/operationsstatus/a0f2c8e5-50d7-4831-be3a-d8839b1252a6\",\"name\":\"a0f2c8e5-50d7-4831-be3a-d8839b1252a6\",\"status\":\"Succeeded\",\"startTime\":\"2023-11-28T13:37:07.873747255Z\",\"endTime\":\"2023-11-28T13:37:09.406359817Z\"}", "isContentBase64": false } }, - "AzCustomLocation+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/9e9e9352-4bd6-4d44-8a7d-d6d4b988b4b7?api-version=2021-03-15-preview+4": { + "AzCustomLocation+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/a0f2c8e5-50d7-4831-be3a-d8839b1252a6?api-version=2021-03-15-preview\u0026t=638367754281507816\u0026c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M\u0026s=dFysRH7xHsFWKOB_NLKZv4gE0N_WxtL55KEEj3PpUH39nEYiMJy4zhRzVbm_V6YDQ7YnuZUW3D8HsqJQfhp6kjyRqMzTnQeI8W9iru-vdlBSXA1XDCMN3khAxMVNPbHGnG9ibZljW8EnCblvHc0Fvf7nmybqgbCaJQBlUGzGTeC6is9rbn4V_F3OSwMBSMlRLE8NjjS8wYWmyVchoZVOPYdBIkQoS5fWc08IplquHUJH0PFUfn10oKoxHyJUE9iI_aRcWUGswFU_qmKDQs0uHWktx5WxPBjViIMjk6wFbPAc3BLF5dNi5QWuJIs7z-7WN5d9reO9ESZGSMtqyT3vtg\u0026h=0U2UWOKixqK4Tm6eIBHFXKlT6R2RYX3DzKwY-9C0dAU+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/9e9e9352-4bd6-4d44-8a7d-d6d4b988b4b7?api-version=2021-03-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/a0f2c8e5-50d7-4831-be3a-d8839b1252a6?api-version=2021-03-15-preview\u0026t=638367754281507816\u0026c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M\u0026s=dFysRH7xHsFWKOB_NLKZv4gE0N_WxtL55KEEj3PpUH39nEYiMJy4zhRzVbm_V6YDQ7YnuZUW3D8HsqJQfhp6kjyRqMzTnQeI8W9iru-vdlBSXA1XDCMN3khAxMVNPbHGnG9ibZljW8EnCblvHc0Fvf7nmybqgbCaJQBlUGzGTeC6is9rbn4V_F3OSwMBSMlRLE8NjjS8wYWmyVchoZVOPYdBIkQoS5fWc08IplquHUJH0PFUfn10oKoxHyJUE9iI_aRcWUGswFU_qmKDQs0uHWktx5WxPBjViIMjk6wFbPAc3BLF5dNi5QWuJIs7z-7WN5d9reO9ESZGSMtqyT3vtg\u0026h=0U2UWOKixqK4Tm6eIBHFXKlT6R2RYX3DzKwY-9C0dAU", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "34" ], - "x-ms-client-request-id": [ "c9bb2ae0-5da6-41a9-9f30-98fa8718d39d" ], + "x-ms-unique-id": [ "26" ], + "x-ms-client-request-id": [ "d4f83b04-a102-4abc-9f68-58d2adfd6980" ], "CommandName": [ "Remove-AzCustomLocation" ], "FullCommandName": [ "Remove-AzCustomLocation_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.10", "Az.CustomLocation/0.1.0" ] }, "ContentHeaders": { } @@ -1322,21 +812,22 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11973" ], - "X-Ms-Request-Id": [ "9e9e9352-4bd6-4d44-8a7d-d6d4b988b4b7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], + "X-Ms-Request-Id": [ "a0f2c8e5-50d7-4831-be3a-d8839b1252a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ "nginx" ], - "x-ms-correlation-request-id": [ "b8f9ac5b-9731-42fe-a91d-35cc0fdd8050" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20211027T080236Z:b8f9ac5b-9731-42fe-a91d-35cc0fdd8050" ], - "Date": [ "Wed, 27 Oct 2021 08:02:36 GMT" ] + "x-ms-correlation-request-id": [ "dd56f643-cc70-4dce-906b-19c9ba87db62" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133739Z:dd56f643-cc70-4dce-906b-19c9ba87db62" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 69A74EC13CEC45A9AA674C72069C515A Ref B: TYO201100114045 Ref C: 2023-11-28T13:37:39Z" ], + "Date": [ "Tue, 28 Nov 2023 13:37:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "322" ], + "Content-Length": [ "323" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ExtendedLocation/locations/eastus/operationsstatus/9e9e9352-4bd6-4d44-8a7d-d6d4b988b4b7\",\"name\":\"9e9e9352-4bd6-4d44-8a7d-d6d4b988b4b7\",\"status\":\"Succeeded\",\"startTime\":\"2021-10-27T08:02:05.17579579Z\",\"endTime\":\"2021-10-27T08:02:07.956874127Z\"}", + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ExtendedLocation/locations/eastus/operationsstatus/a0f2c8e5-50d7-4831-be3a-d8839b1252a6\",\"name\":\"a0f2c8e5-50d7-4831-be3a-d8839b1252a6\",\"status\":\"Succeeded\",\"startTime\":\"2023-11-28T13:37:07.873747255Z\",\"endTime\":\"2023-11-28T13:37:09.406359817Z\"}", "isContentBase64": false } } diff --git a/src/CustomLocation/CustomLocation.Autorest/test/AzCustomLocation.Tests.ps1 b/src/CustomLocation/CustomLocation.Autorest/test/AzCustomLocation.Tests.ps1 index 879e0c4a25b7..6a19851f7521 100644 --- a/src/CustomLocation/CustomLocation.Autorest/test/AzCustomLocation.Tests.ps1 +++ b/src/CustomLocation/CustomLocation.Autorest/test/AzCustomLocation.Tests.ps1 @@ -14,11 +14,11 @@ while (-not $mockingPath) { Describe 'AzCustomLocation' { It 'Create' { { - $config = New-AzCustomLocation -ResourceGroupName $env.resourceGroup -Name $env.clusterLocationName -Location $env.location -ClusterExtensionId $env.ClusterExtensionId -HostResourceId $env.HostResourceId -DisplayName $env.clusterLocationName -Namespace arc - $config.Type | Should -Be "Microsoft.ExtendedLocation/customLocations" + $config = New-AzCustomLocation -ResourceGroupName $env.resourceGroup -Name $env.clusterLocationName1 -Location $env.location -ClusterExtensionId $env.ClusterExtensionId -HostResourceId $env.HostResourceId -DisplayName $env.clusterLocationName1 -Namespace azps2 + $config.Name | Should -Be $env.clusterLocationName1 - $config = New-AzCustomLocation -ResourceGroupName $env.resourceGroup -Name $env.clusterLocationName2 -Location $env.location -ClusterExtensionId $env.ClusterExtensionId -HostResourceId $env.HostResourceId -DisplayName $env.clusterLocationName -Namespace arctwo - $config.Type | Should -Be "Microsoft.ExtendedLocation/customLocations" + $config = New-AzCustomLocation -ResourceGroupName $env.resourceGroup -Name $env.clusterLocationName2 -Location $env.location -ClusterExtensionId $env.ClusterExtensionId -HostResourceId $env.HostResourceId -DisplayName $env.clusterLocationName2 -Namespace azps3 + $config.Name | Should -Be $env.clusterLocationName2 } | Should -Not -Throw } @@ -38,22 +38,22 @@ Describe 'AzCustomLocation' { It 'Get' { { - $config = Get-AzCustomLocation -ResourceGroupName $env.resourceGroup -Name $env.clusterLocationName - $config.Name | Should -Be $env.clusterLocationName + $config = Get-AzCustomLocation -ResourceGroupName $env.resourceGroup -Name $env.clusterLocationName1 + $config.Name | Should -Be $env.clusterLocationName1 } | Should -Not -Throw } It 'Get1' { { - $config = Get-AzCustomLocationEnabledResourceType -ResourceGroupName $env.resourceGroup -Name $env.clusterLocationName - $config.Type | Should -Be "Microsoft.ExtendedLocation/customLocations/enabledResourceTypes" + $config = Get-AzCustomLocationEnabledResourceType -ResourceGroupName $env.resourceGroup -Name $env.clusterLocationName1 + $config.Count | Should -BeGreaterThan 0 } | Should -Not -Throw } It 'Update' { { - $config = Update-AzCustomLocation -ResourceGroupName $env.resourceGroup -Name $env.clusterLocationName -ClusterExtensionId $env.ClusterExtensionId -HostResourceId $env.HostResourceId -DisplayName $env.clusterLocationName -Namespace arc - $config.Name | Should -Be $env.clusterLocationName + $config = Update-AzCustomLocation -ResourceGroupName $env.resourceGroup -Name $env.clusterLocationName1 -ClusterExtensionId $env.ClusterExtensionId -HostResourceId $env.HostResourceId -DisplayName $env.clusterLocationName1 -Namespace azps2 + $config.Name | Should -Be $env.clusterLocationName1 } | Should -Not -Throw } @@ -67,7 +67,7 @@ Describe 'AzCustomLocation' { It 'Delete' { { - Remove-AzCustomLocation -ResourceGroupName $env.resourceGroup -Name $env.clusterLocationName + Remove-AzCustomLocation -ResourceGroupName $env.resourceGroup -Name $env.clusterLocationName1 } | Should -Not -Throw } diff --git a/src/CustomLocation/CustomLocation.Autorest/test/AzCustomLocationResourceSyncRule.Recording.json b/src/CustomLocation/CustomLocation.Autorest/test/AzCustomLocationResourceSyncRule.Recording.json new file mode 100644 index 000000000000..b315b68dbac0 --- /dev/null +++ b/src/CustomLocation/CustomLocation.Autorest/test/AzCustomLocationResourceSyncRule.Recording.json @@ -0,0 +1,1019 @@ +{ + "AzCustomLocationResourceSyncRule+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/zfhkro?api-version=2021-08-31-preview+1": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/zfhkro?api-version=2021-08-31-preview", + "Content": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"selector\": {\r\n \"matchExpressions\": [\r\n {\r\n \"key\": \"key4\",\r\n \"operator\": \"In\",\r\n \"values\": [ \"value4\" ]\r\n }\r\n ],\r\n \"matchLabels\": {\r\n \"Key1\": \"Value1\"\r\n }\r\n },\r\n \"priority\": 998,\r\n \"targetResourceGroup\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6\"\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "424" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/f6ff0c07-07ac-470b-b59d-385e6599bb44?api-version=2021-03-15-preview\u0026t=638367754621767770\u0026c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M\u0026s=y7R8UFJRiX37NLm1EW6ZImn29dp5Ritp-BQOo287aC1mQc1ja1QQB2yHS4jqqmG5igQc_VaUr7_ZqUV6C9I87F-ucJ9jjScx0uw1O9NHxnsOpqxOAtasqLMMTFx6nsHWtqH7j2_SGvngiNZEhHSco0WWxVtrY64PttKnQ2o0mwFftYXKivFeMdXkVz-J5rv4A1yq6N8i9Og72bY4gxhTgP6uXXVEzqoHNeTOyol0WhRBUtKVd48KIcv6o_-JJ-gT4Q4_yLsu9JJGZt1nzBf6F525EiVjz15jpNR_s8cK4N-HFie70rVLjyQjneuZxzye8EaiHktjaDnEVmowYK6ovQ\u0026h=oMlpE2649oHy-QiHNEj423LMX8BZIMepFAA3mTSumZk" ], + "X-Ms-Async-Operation-Timeout": [ "PT90M" ], + "X-Ms-Request-Id": [ "f6ff0c07-07ac-470b-b59d-385e6599bb44" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "x-ms-correlation-request-id": [ "1ed12a64-5a4b-4244-ad21-1855fe41a0e0" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133742Z:1ed12a64-5a4b-4244-ad21-1855fe41a0e0" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 1767FE11381A4D7D944C2031A3B8C18D Ref B: TYO201100114045 Ref C: 2023-11-28T13:37:40Z" ], + "Date": [ "Tue, 28 Nov 2023 13:37:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "803" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/zfhkro\",\"name\":\"zfhkro\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations/resourceSyncRules\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-11-28T13:37:41.5204853Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-11-28T13:37:41.5204853Z\"},\"properties\":{\"priority\":998,\"provisioningState\":\"Creating\",\"targetResourceGroup\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6\",\"selector\":{\"matchLabels\":{\"Key1\":\"Value1\"},\"matchExpressions\":[{\"key\":\"key4\",\"operator\":\"In\",\"values\":[\"value4\"]}]}}}", + "isContentBase64": false + } + }, + "AzCustomLocationResourceSyncRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/f6ff0c07-07ac-470b-b59d-385e6599bb44?api-version=2021-03-15-preview\u0026t=638367754621767770\u0026c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M\u0026s=y7R8UFJRiX37NLm1EW6ZImn29dp5Ritp-BQOo287aC1mQc1ja1QQB2yHS4jqqmG5igQc_VaUr7_ZqUV6C9I87F-ucJ9jjScx0uw1O9NHxnsOpqxOAtasqLMMTFx6nsHWtqH7j2_SGvngiNZEhHSco0WWxVtrY64PttKnQ2o0mwFftYXKivFeMdXkVz-J5rv4A1yq6N8i9Og72bY4gxhTgP6uXXVEzqoHNeTOyol0WhRBUtKVd48KIcv6o_-JJ-gT4Q4_yLsu9JJGZt1nzBf6F525EiVjz15jpNR_s8cK4N-HFie70rVLjyQjneuZxzye8EaiHktjaDnEVmowYK6ovQ\u0026h=oMlpE2649oHy-QiHNEj423LMX8BZIMepFAA3mTSumZk+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/f6ff0c07-07ac-470b-b59d-385e6599bb44?api-version=2021-03-15-preview\u0026t=638367754621767770\u0026c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M\u0026s=y7R8UFJRiX37NLm1EW6ZImn29dp5Ritp-BQOo287aC1mQc1ja1QQB2yHS4jqqmG5igQc_VaUr7_ZqUV6C9I87F-ucJ9jjScx0uw1O9NHxnsOpqxOAtasqLMMTFx6nsHWtqH7j2_SGvngiNZEhHSco0WWxVtrY64PttKnQ2o0mwFftYXKivFeMdXkVz-J5rv4A1yq6N8i9Og72bY4gxhTgP6uXXVEzqoHNeTOyol0WhRBUtKVd48KIcv6o_-JJ-gT4Q4_yLsu9JJGZt1nzBf6F525EiVjz15jpNR_s8cK4N-HFie70rVLjyQjneuZxzye8EaiHktjaDnEVmowYK6ovQ\u0026h=oMlpE2649oHy-QiHNEj423LMX8BZIMepFAA3mTSumZk", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "28" ], + "x-ms-client-request-id": [ "aa7ce29a-96b9-438c-8da6-57ecb084471e" ], + "CommandName": [ "New-AzCustomLocationResourceSyncRule" ], + "FullCommandName": [ "New-AzCustomLocationResourceSyncRule_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.10", "Az.CustomLocation/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], + "X-Ms-Request-Id": [ "f6ff0c07-07ac-470b-b59d-385e6599bb44" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "x-ms-correlation-request-id": [ "1851abb0-4329-46dd-8494-1e3b25c169ca" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133813Z:1851abb0-4329-46dd-8494-1e3b25c169ca" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F227076797A04B438C5C94B946F3739B Ref B: TYO201100114045 Ref C: 2023-11-28T13:38:12Z" ], + "Date": [ "Tue, 28 Nov 2023 13:38:12 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "323" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ExtendedLocation/locations/eastus/operationsstatus/f6ff0c07-07ac-470b-b59d-385e6599bb44\",\"name\":\"f6ff0c07-07ac-470b-b59d-385e6599bb44\",\"status\":\"Succeeded\",\"startTime\":\"2023-11-28T13:37:41.793452633Z\",\"endTime\":\"2023-11-28T13:37:43.028043769Z\"}", + "isContentBase64": false + } + }, + "AzCustomLocationResourceSyncRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/zfhkro?api-version=2021-08-31-preview+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/zfhkro?api-version=2021-08-31-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "29" ], + "x-ms-client-request-id": [ "aa7ce29a-96b9-438c-8da6-57ecb084471e" ], + "CommandName": [ "New-AzCustomLocationResourceSyncRule" ], + "FullCommandName": [ "New-AzCustomLocationResourceSyncRule_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.10", "Az.CustomLocation/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], + "X-Ms-Request-Id": [ "4a207c63-0989-42fa-8b9f-820abbcbcaef" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "x-ms-correlation-request-id": [ "17200877-b1ad-4735-9acd-a7aa9ff0b445" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133814Z:17200877-b1ad-4735-9acd-a7aa9ff0b445" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 43F9E352818F4421B06D2F8DAF7C051D Ref B: TYO201100114045 Ref C: 2023-11-28T13:38:13Z" ], + "Date": [ "Tue, 28 Nov 2023 13:38:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "804" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/zfhkro\",\"name\":\"zfhkro\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations/resourceSyncRules\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-11-28T13:37:41.5204853Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-11-28T13:37:41.5204853Z\"},\"properties\":{\"priority\":998,\"provisioningState\":\"Succeeded\",\"targetResourceGroup\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6\",\"selector\":{\"matchLabels\":{\"Key1\":\"Value1\"},\"matchExpressions\":[{\"key\":\"key4\",\"operator\":\"In\",\"values\":[\"value4\"]}]}}}", + "isContentBase64": false + } + }, + "AzCustomLocationResourceSyncRule+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/jy13zu?api-version=2021-08-31-preview+4": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/jy13zu?api-version=2021-08-31-preview", + "Content": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"selector\": {\r\n \"matchExpressions\": [\r\n {\r\n \"key\": \"key4\",\r\n \"operator\": \"In\",\r\n \"values\": [ \"value4\" ]\r\n }\r\n ],\r\n \"matchLabels\": {\r\n \"Key1\": \"Value1\"\r\n }\r\n },\r\n \"priority\": 997,\r\n \"targetResourceGroup\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6\"\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "424" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/cf27a3a5-9da0-47b1-b14b-886e0629aaf9?api-version=2021-03-15-preview\u0026t=638367754961530530\u0026c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M\u0026s=MAcWftbO9-ZOOzXRjRAKO0hOCglZHRcU5Sy3OzKuWQpJ-i_a51Ogn7JWxr-RsiPRPJncgo4B3JcbWBH_FP5JMJc0kQmbTzcmZ_uVTDmUJWXv6VzsOpda7Y0R2UFK0pLWNedSqoYqRNiJgTAuTCYuKgg_2l5MiFK_dTVqT_lSd4-TR4k71Uh7v38YH6mt48ahwPpRUexwc4T4yw5zmC4Pf2ez27wLYEu8y_d4bVg9-oS0SHzarM9_CGQON1ojvFnTKENsp1fFl3QQfgurJK0BTVVJmihuTkDIsFCgrZuxpLvRX6fcS5g0mu2ZTJD3REfzFnb8MdAfvN8p6ixoYbRsJg\u0026h=costb1WUYXNmKlHckcoGW_wDF7j8w4xIYLhTOihaE7k" ], + "X-Ms-Async-Operation-Timeout": [ "PT90M" ], + "X-Ms-Request-Id": [ "cf27a3a5-9da0-47b1-b14b-886e0629aaf9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "x-ms-correlation-request-id": [ "a167f630-83b0-4a3a-87cb-5d71d7efac59" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133816Z:a167f630-83b0-4a3a-87cb-5d71d7efac59" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 94DE9850DF6C4AB29C22CD989821A573 Ref B: TYO201100114045 Ref C: 2023-11-28T13:38:14Z" ], + "Date": [ "Tue, 28 Nov 2023 13:38:15 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "801" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/jy13zu\",\"name\":\"jy13zu\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations/resourceSyncRules\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-11-28T13:38:15.481165Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-11-28T13:38:15.481165Z\"},\"properties\":{\"priority\":997,\"provisioningState\":\"Creating\",\"targetResourceGroup\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6\",\"selector\":{\"matchLabels\":{\"Key1\":\"Value1\"},\"matchExpressions\":[{\"key\":\"key4\",\"operator\":\"In\",\"values\":[\"value4\"]}]}}}", + "isContentBase64": false + } + }, + "AzCustomLocationResourceSyncRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/cf27a3a5-9da0-47b1-b14b-886e0629aaf9?api-version=2021-03-15-preview\u0026t=638367754961530530\u0026c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M\u0026s=MAcWftbO9-ZOOzXRjRAKO0hOCglZHRcU5Sy3OzKuWQpJ-i_a51Ogn7JWxr-RsiPRPJncgo4B3JcbWBH_FP5JMJc0kQmbTzcmZ_uVTDmUJWXv6VzsOpda7Y0R2UFK0pLWNedSqoYqRNiJgTAuTCYuKgg_2l5MiFK_dTVqT_lSd4-TR4k71Uh7v38YH6mt48ahwPpRUexwc4T4yw5zmC4Pf2ez27wLYEu8y_d4bVg9-oS0SHzarM9_CGQON1ojvFnTKENsp1fFl3QQfgurJK0BTVVJmihuTkDIsFCgrZuxpLvRX6fcS5g0mu2ZTJD3REfzFnb8MdAfvN8p6ixoYbRsJg\u0026h=costb1WUYXNmKlHckcoGW_wDF7j8w4xIYLhTOihaE7k+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/cf27a3a5-9da0-47b1-b14b-886e0629aaf9?api-version=2021-03-15-preview\u0026t=638367754961530530\u0026c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M\u0026s=MAcWftbO9-ZOOzXRjRAKO0hOCglZHRcU5Sy3OzKuWQpJ-i_a51Ogn7JWxr-RsiPRPJncgo4B3JcbWBH_FP5JMJc0kQmbTzcmZ_uVTDmUJWXv6VzsOpda7Y0R2UFK0pLWNedSqoYqRNiJgTAuTCYuKgg_2l5MiFK_dTVqT_lSd4-TR4k71Uh7v38YH6mt48ahwPpRUexwc4T4yw5zmC4Pf2ez27wLYEu8y_d4bVg9-oS0SHzarM9_CGQON1ojvFnTKENsp1fFl3QQfgurJK0BTVVJmihuTkDIsFCgrZuxpLvRX6fcS5g0mu2ZTJD3REfzFnb8MdAfvN8p6ixoYbRsJg\u0026h=costb1WUYXNmKlHckcoGW_wDF7j8w4xIYLhTOihaE7k", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "31" ], + "x-ms-client-request-id": [ "9ee6faab-98e5-492c-a7fb-ae3a03f2fde5" ], + "CommandName": [ "New-AzCustomLocationResourceSyncRule" ], + "FullCommandName": [ "New-AzCustomLocationResourceSyncRule_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.10", "Az.CustomLocation/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], + "X-Ms-Request-Id": [ "cf27a3a5-9da0-47b1-b14b-886e0629aaf9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "x-ms-correlation-request-id": [ "919236a4-486e-4097-ac93-8034eb98ad6f" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133847Z:919236a4-486e-4097-ac93-8034eb98ad6f" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 9F26EB34EE594F9FA1A1A551541EEDA2 Ref B: TYO201100114045 Ref C: 2023-11-28T13:38:46Z" ], + "Date": [ "Tue, 28 Nov 2023 13:38:46 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "323" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ExtendedLocation/locations/eastus/operationsstatus/cf27a3a5-9da0-47b1-b14b-886e0629aaf9\",\"name\":\"cf27a3a5-9da0-47b1-b14b-886e0629aaf9\",\"status\":\"Succeeded\",\"startTime\":\"2023-11-28T13:38:15.750342366Z\",\"endTime\":\"2023-11-28T13:38:17.037877478Z\"}", + "isContentBase64": false + } + }, + "AzCustomLocationResourceSyncRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/jy13zu?api-version=2021-08-31-preview+6": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/jy13zu?api-version=2021-08-31-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "32" ], + "x-ms-client-request-id": [ "9ee6faab-98e5-492c-a7fb-ae3a03f2fde5" ], + "CommandName": [ "New-AzCustomLocationResourceSyncRule" ], + "FullCommandName": [ "New-AzCustomLocationResourceSyncRule_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.10", "Az.CustomLocation/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], + "X-Ms-Request-Id": [ "4cfcc904-9540-4786-a2db-da5f9054a695" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "x-ms-correlation-request-id": [ "5b1db6eb-c8a5-414f-9657-12b6e7d2db0a" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133848Z:5b1db6eb-c8a5-414f-9657-12b6e7d2db0a" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 5B953F78D1574067926FE6E800F34CFC Ref B: TYO201100114045 Ref C: 2023-11-28T13:38:47Z" ], + "Date": [ "Tue, 28 Nov 2023 13:38:47 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "802" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/jy13zu\",\"name\":\"jy13zu\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations/resourceSyncRules\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-11-28T13:38:15.481165Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-11-28T13:38:15.481165Z\"},\"properties\":{\"priority\":997,\"provisioningState\":\"Succeeded\",\"targetResourceGroup\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6\",\"selector\":{\"matchLabels\":{\"Key1\":\"Value1\"},\"matchExpressions\":[{\"key\":\"key4\",\"operator\":\"In\",\"values\":[\"value4\"]}]}}}", + "isContentBase64": false + } + }, + "AzCustomLocationResourceSyncRule+[NoContext]+CreateViaIdentityCustomLocationExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6?api-version=2021-08-31-preview+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6?api-version=2021-08-31-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "33" ], + "x-ms-client-request-id": [ "5b0fab74-c023-4df4-8c3f-9ddb1c031250" ], + "CommandName": [ "Get-AzCustomLocation" ], + "FullCommandName": [ "Get-AzCustomLocation_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.10", "Az.CustomLocation/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], + "X-Ms-Request-Id": [ "e1b0b783-42a9-48cf-b385-a8be5a77d7b8" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "x-ms-correlation-request-id": [ "444715fe-3874-45ce-a41e-c408c4f0ef0b" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133849Z:444715fe-3874-45ce-a41e-c408c4f0ef0b" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: DC85139C290149C594F5D5F4BE0D2681 Ref B: TYO201100114045 Ref C: 2023-11-28T13:38:48Z" ], + "Date": [ "Tue, 28 Nov 2023 13:38:48 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "994" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6\",\"name\":\"4hzlx6\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-11-28T13:31:40.7832301Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-11-28T13:31:40.7832301Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/connectedClusters/nd1qe0\",\"namespace\":\"azps1\",\"displayName\":\"4hzlx6\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/ConnectedClusters/nd1qe0/providers/Microsoft.KubernetesConfiguration/extensions/8964io\"],\"authentication\":{}}}", + "isContentBase64": false + } + }, + "AzCustomLocationResourceSyncRule+[NoContext]+CreateViaIdentityCustomLocationExpanded+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/djw6g1?api-version=2021-08-31-preview+2": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/djw6g1?api-version=2021-08-31-preview", + "Content": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"selector\": {\r\n \"matchExpressions\": [\r\n {\r\n \"key\": \"key4\",\r\n \"operator\": \"In\",\r\n \"values\": [ \"value4\" ]\r\n }\r\n ],\r\n \"matchLabels\": {\r\n \"Key1\": \"Value1\"\r\n }\r\n },\r\n \"priority\": 996,\r\n \"targetResourceGroup\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6\"\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "424" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/6f073f58-c865-4175-9be9-0d8bc768def2?api-version=2021-03-15-preview\u0026t=638367755315824182\u0026c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M\u0026s=RSsfPfLSoQSBDSMo58GryNrx_S3frYvqjjbW7AoBohTc_7FuWLCYQ1MCD-O6750p_PcSi1b3mbcz2pGrETdMn798Ogi1gTkXMjb3nmba2dRNi2HKC8I1u4YvcCtPZaovX3OVu77nSLRVIxiQjuLEHmdjntok1J7f_unp_L5LTF-TY3MPZ99lU34sNOFaafZUU_y0XqJR9jE6AUtHrZFItVFLLRAMBY4uAKNU_C86nNIMipAOroKNx4ni-1Ys_xwIYFvet_WKBgRS7CsvZSxOaMJjPE_qcukf-vyTuApxzMALvpxPNB-lFusg7PH4MJk-RM7R5_-qCKcpw4KHEG104w\u0026h=Bu4edsM0RsnoxWYFnnybjmUCOix_XC52GG7oPB50ZmE" ], + "X-Ms-Async-Operation-Timeout": [ "PT90M" ], + "X-Ms-Request-Id": [ "6f073f58-c865-4175-9be9-0d8bc768def2" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "x-ms-correlation-request-id": [ "43bbe30f-e18f-47d4-98ce-078ddfafe557" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133851Z:43bbe30f-e18f-47d4-98ce-078ddfafe557" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 5582C1BB3D0E47BBBF5281AE0473258D Ref B: TYO201100114045 Ref C: 2023-11-28T13:38:49Z" ], + "Date": [ "Tue, 28 Nov 2023 13:38:51 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "803" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/djw6g1\",\"name\":\"djw6g1\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations/resourceSyncRules\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-11-28T13:38:50.3793399Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-11-28T13:38:50.3793399Z\"},\"properties\":{\"priority\":996,\"provisioningState\":\"Creating\",\"targetResourceGroup\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6\",\"selector\":{\"matchLabels\":{\"Key1\":\"Value1\"},\"matchExpressions\":[{\"key\":\"key4\",\"operator\":\"In\",\"values\":[\"value4\"]}]}}}", + "isContentBase64": false + } + }, + "AzCustomLocationResourceSyncRule+[NoContext]+CreateViaIdentityCustomLocationExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/6f073f58-c865-4175-9be9-0d8bc768def2?api-version=2021-03-15-preview\u0026t=638367755315824182\u0026c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M\u0026s=RSsfPfLSoQSBDSMo58GryNrx_S3frYvqjjbW7AoBohTc_7FuWLCYQ1MCD-O6750p_PcSi1b3mbcz2pGrETdMn798Ogi1gTkXMjb3nmba2dRNi2HKC8I1u4YvcCtPZaovX3OVu77nSLRVIxiQjuLEHmdjntok1J7f_unp_L5LTF-TY3MPZ99lU34sNOFaafZUU_y0XqJR9jE6AUtHrZFItVFLLRAMBY4uAKNU_C86nNIMipAOroKNx4ni-1Ys_xwIYFvet_WKBgRS7CsvZSxOaMJjPE_qcukf-vyTuApxzMALvpxPNB-lFusg7PH4MJk-RM7R5_-qCKcpw4KHEG104w\u0026h=Bu4edsM0RsnoxWYFnnybjmUCOix_XC52GG7oPB50ZmE+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/6f073f58-c865-4175-9be9-0d8bc768def2?api-version=2021-03-15-preview\u0026t=638367755315824182\u0026c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M\u0026s=RSsfPfLSoQSBDSMo58GryNrx_S3frYvqjjbW7AoBohTc_7FuWLCYQ1MCD-O6750p_PcSi1b3mbcz2pGrETdMn798Ogi1gTkXMjb3nmba2dRNi2HKC8I1u4YvcCtPZaovX3OVu77nSLRVIxiQjuLEHmdjntok1J7f_unp_L5LTF-TY3MPZ99lU34sNOFaafZUU_y0XqJR9jE6AUtHrZFItVFLLRAMBY4uAKNU_C86nNIMipAOroKNx4ni-1Ys_xwIYFvet_WKBgRS7CsvZSxOaMJjPE_qcukf-vyTuApxzMALvpxPNB-lFusg7PH4MJk-RM7R5_-qCKcpw4KHEG104w\u0026h=Bu4edsM0RsnoxWYFnnybjmUCOix_XC52GG7oPB50ZmE", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "35" ], + "x-ms-client-request-id": [ "54d6810d-44a3-4232-9515-799539e4031b" ], + "CommandName": [ "New-AzCustomLocationResourceSyncRule" ], + "FullCommandName": [ "New-AzCustomLocationResourceSyncRule_CreateViaIdentityCustomlocationExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.10", "Az.CustomLocation/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], + "X-Ms-Request-Id": [ "6f073f58-c865-4175-9be9-0d8bc768def2" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "x-ms-correlation-request-id": [ "1d08caa8-6419-4c00-8379-f23253992cfb" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133922Z:1d08caa8-6419-4c00-8379-f23253992cfb" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 9ED5C08B866E4E52912124E2BAAEFDFF Ref B: TYO201100114045 Ref C: 2023-11-28T13:39:21Z" ], + "Date": [ "Tue, 28 Nov 2023 13:39:22 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "323" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.ExtendedLocation/locations/eastus/operationsstatus/6f073f58-c865-4175-9be9-0d8bc768def2\",\"name\":\"6f073f58-c865-4175-9be9-0d8bc768def2\",\"status\":\"Succeeded\",\"startTime\":\"2023-11-28T13:38:51.174503209Z\",\"endTime\":\"2023-11-28T13:38:52.305077491Z\"}", + "isContentBase64": false + } + }, + "AzCustomLocationResourceSyncRule+[NoContext]+CreateViaIdentityCustomLocationExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/djw6g1?api-version=2021-08-31-preview+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/djw6g1?api-version=2021-08-31-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "36" ], + "x-ms-client-request-id": [ "54d6810d-44a3-4232-9515-799539e4031b" ], + "CommandName": [ "New-AzCustomLocationResourceSyncRule" ], + "FullCommandName": [ "New-AzCustomLocationResourceSyncRule_CreateViaIdentityCustomlocationExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.10", "Az.CustomLocation/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], + "X-Ms-Request-Id": [ "748bce25-8731-45f9-8226-f6b01f0db453" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "x-ms-correlation-request-id": [ "2dc37cb8-afc9-486a-942c-359d465eb001" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133923Z:2dc37cb8-afc9-486a-942c-359d465eb001" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0FC0602849F64BEA8140849BC95E51E0 Ref B: TYO201100114045 Ref C: 2023-11-28T13:39:22Z" ], + "Date": [ "Tue, 28 Nov 2023 13:39:22 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "804" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/djw6g1\",\"name\":\"djw6g1\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations/resourceSyncRules\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-11-28T13:38:50.3793399Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-11-28T13:38:50.3793399Z\"},\"properties\":{\"priority\":996,\"provisioningState\":\"Succeeded\",\"targetResourceGroup\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6\",\"selector\":{\"matchLabels\":{\"Key1\":\"Value1\"},\"matchExpressions\":[{\"key\":\"key4\",\"operator\":\"In\",\"values\":[\"value4\"]}]}}}", + "isContentBase64": false + } + }, + "AzCustomLocationResourceSyncRule+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules?api-version=2021-08-31-preview+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules?api-version=2021-08-31-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "37" ], + "x-ms-client-request-id": [ "da6bf2f0-2162-40e4-8130-89df8453e86e" ], + "CommandName": [ "Get-AzCustomLocationResourceSyncRule" ], + "FullCommandName": [ "Get-AzCustomLocationResourceSyncRule_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.10", "Az.CustomLocation/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "f9645720-e1f2-4b91-866a-03653678c0d3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], + "X-Ms-Request-Id": [ "a63782ac-2dbd-4340-8d99-1cbea7fc93d1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133924Z:f9645720-e1f2-4b91-866a-03653678c0d3" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: C2AA95DCE7644D13B234BC6BD7C03BF1 Ref B: TYO201100114045 Ref C: 2023-11-28T13:39:23Z" ], + "Date": [ "Tue, 28 Nov 2023 13:39:23 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "2424" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourcesyncrules/zfhkro\",\"name\":\"zfhkro\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations/resourceSyncRules\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-11-28T13:37:41.5204853Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-11-28T13:37:41.5204853Z\"},\"properties\":{\"priority\":998,\"provisioningState\":\"Succeeded\",\"targetResourceGroup\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6\",\"selector\":{\"matchLabels\":{\"Key1\":\"Value1\"},\"matchExpressions\":[{\"key\":\"key4\",\"operator\":\"In\",\"values\":[\"value4\"]}]}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourcesyncrules/jy13zu\",\"name\":\"jy13zu\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations/resourceSyncRules\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-11-28T13:38:15.481165Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-11-28T13:38:15.481165Z\"},\"properties\":{\"priority\":997,\"provisioningState\":\"Succeeded\",\"targetResourceGroup\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6\",\"selector\":{\"matchLabels\":{\"Key1\":\"Value1\"},\"matchExpressions\":[{\"key\":\"key4\",\"operator\":\"In\",\"values\":[\"value4\"]}]}}},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourcesyncrules/djw6g1\",\"name\":\"djw6g1\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations/resourceSyncRules\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-11-28T13:38:50.3793399Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-11-28T13:38:50.3793399Z\"},\"properties\":{\"priority\":996,\"provisioningState\":\"Succeeded\",\"targetResourceGroup\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6\",\"selector\":{\"matchLabels\":{\"Key1\":\"Value1\"},\"matchExpressions\":[{\"key\":\"key4\",\"operator\":\"In\",\"values\":[\"value4\"]}]}}}]}", + "isContentBase64": false + } + }, + "AzCustomLocationResourceSyncRule+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/jy13zu?api-version=2021-08-31-preview+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/jy13zu?api-version=2021-08-31-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "38" ], + "x-ms-client-request-id": [ "37d8a8bd-1dac-415b-b02a-b38ebe8e4865" ], + "CommandName": [ "Get-AzCustomLocationResourceSyncRule" ], + "FullCommandName": [ "Get-AzCustomLocationResourceSyncRule_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.10", "Az.CustomLocation/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], + "X-Ms-Request-Id": [ "bff77f9a-9bb4-4e8a-ad45-84d083a02289" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "x-ms-correlation-request-id": [ "dfa4eb2d-265b-443a-ba0c-bd385782ae8a" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133925Z:dfa4eb2d-265b-443a-ba0c-bd385782ae8a" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: EB24A3A9605B4609A546CCF6FCFC618B Ref B: TYO201100114045 Ref C: 2023-11-28T13:39:24Z" ], + "Date": [ "Tue, 28 Nov 2023 13:39:24 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "802" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/jy13zu\",\"name\":\"jy13zu\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations/resourceSyncRules\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-11-28T13:38:15.481165Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-11-28T13:38:15.481165Z\"},\"properties\":{\"priority\":997,\"provisioningState\":\"Succeeded\",\"targetResourceGroup\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6\",\"selector\":{\"matchLabels\":{\"Key1\":\"Value1\"},\"matchExpressions\":[{\"key\":\"key4\",\"operator\":\"In\",\"values\":[\"value4\"]}]}}}", + "isContentBase64": false + } + }, + "AzCustomLocationResourceSyncRule+[NoContext]+FindExpanded+$POST+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/findTargetResourceGroup?api-version=2021-08-31-preview+1": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/findTargetResourceGroup?api-version=2021-08-31-preview", + "Content": "{\r\n \"labels\": {\r\n \"Key1\": \"Value1\"\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "46" ] + } + }, + "Response": { + "StatusCode": 204, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "X-Ms-Request-Id": [ "c944dbd7-e80f-4a59-831e-5e49d7223e84" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "x-ms-correlation-request-id": [ "ac9c5fef-504f-440c-9306-2140801599de" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133925Z:ac9c5fef-504f-440c-9306-2140801599de" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: A908B4438E9445ED9118C42BDEBD3169 Ref B: TYO201100114045 Ref C: 2023-11-28T13:39:25Z" ], + "Date": [ "Tue, 28 Nov 2023 13:39:25 GMT" ] + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "AzCustomLocationResourceSyncRule+[NoContext]+FindViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6?api-version=2021-08-31-preview+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6?api-version=2021-08-31-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "40" ], + "x-ms-client-request-id": [ "8e048944-292b-4fa4-9f16-a0bb427fe2ec" ], + "CommandName": [ "Get-AzCustomLocation" ], + "FullCommandName": [ "Get-AzCustomLocation_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.10", "Az.CustomLocation/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], + "X-Ms-Request-Id": [ "dbea15e5-bf72-44bf-af0b-d53c4bfd77f5" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "x-ms-correlation-request-id": [ "15527992-4f65-4669-ad21-78b67791737f" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133926Z:15527992-4f65-4669-ad21-78b67791737f" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4840DFCBB1994B958AF0016C38376230 Ref B: TYO201100114045 Ref C: 2023-11-28T13:39:25Z" ], + "Date": [ "Tue, 28 Nov 2023 13:39:26 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "994" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6\",\"name\":\"4hzlx6\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-11-28T13:31:40.7832301Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-11-28T13:31:40.7832301Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/connectedClusters/nd1qe0\",\"namespace\":\"azps1\",\"displayName\":\"4hzlx6\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/ConnectedClusters/nd1qe0/providers/Microsoft.KubernetesConfiguration/extensions/8964io\"],\"authentication\":{}}}", + "isContentBase64": false + } + }, + "AzCustomLocationResourceSyncRule+[NoContext]+FindViaIdentityExpanded+$POST+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/findTargetResourceGroup?api-version=2021-08-31-preview+2": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/findTargetResourceGroup?api-version=2021-08-31-preview", + "Content": "{\r\n \"labels\": {\r\n \"Key1\": \"Value1\"\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "46" ] + } + }, + "Response": { + "StatusCode": 204, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "X-Ms-Request-Id": [ "f70003c4-1791-4fdd-8e95-2c6a9f9fccb2" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "x-ms-correlation-request-id": [ "a2993f9a-8771-4b71-a8dd-1bcc019094a0" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133927Z:a2993f9a-8771-4b71-a8dd-1bcc019094a0" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 679F72B9346749649541AEC56FF075BD Ref B: TYO201100114045 Ref C: 2023-11-28T13:39:26Z" ], + "Date": [ "Tue, 28 Nov 2023 13:39:27 GMT" ] + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "AzCustomLocationResourceSyncRule+[NoContext]+UpdateExpanded+$PATCH+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/zfhkro?api-version=2021-08-31-preview+1": { + "Request": { + "Method": "PATCH", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/zfhkro?api-version=2021-08-31-preview", + "Content": "{\r\n \"properties\": {\r\n \"selector\": {\r\n \"matchExpressions\": [\r\n {\r\n \"key\": \"key4\",\r\n \"operator\": \"In\",\r\n \"values\": [ \"value4\" ]\r\n }\r\n ],\r\n \"matchLabels\": {\r\n \"Key1\": \"Value1\"\r\n }\r\n },\r\n \"priority\": 998,\r\n \"targetResourceGroup\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6\"\r\n },\r\n \"tags\": {\r\n \"abc\": \"123\"\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "436" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/9ea19064-62cd-4cda-80f3-3902703e9cba?api-version=2021-03-15-preview\u0026t=638367755693632709\u0026c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M\u0026s=zkg0wzPe6eKa_9e-x3s_tpvG_Lrf9ZT7fUCKnZVNmvy4gxxXOFLmJTGuvaqiiX2qzwXBoHfICs1u1K_xBHsuf143nHFX2N3zP64dfudAZeX_AmccYz98Ni9ZKvcFWMvnycI4MR7_pONWycB2KXODRe95bmV6CnU0a6_FfQJCUPvB0yD_bE4g_ielZoxYl9iMxLtm-AhhfjA-DTMQLiz8ZG1M4jhQHcMeBhpsfiawx5deaFt1TAlPSNYRFdM2OwDK27-sdIjEvTJRSWk8UMD98VYZdtIca-Ljs-43eaCtFmWME6Tytn4rOfR1nhmh9wZ_CfcdodtqoZMBDbcnqAtg5g\u0026h=ykvDWGJWVo4xAQudvbmFSbX87BIX31aUztllFqk4Fe4" ], + "X-Ms-Async-Operation-Timeout": [ "PT90M" ], + "X-Ms-Request-Id": [ "9ea19064-62cd-4cda-80f3-3902703e9cba" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "x-ms-correlation-request-id": [ "6a163ad3-53b3-439d-9a7e-093b5c34a9f5" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133929Z:6a163ad3-53b3-439d-9a7e-093b5c34a9f5" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F978A1B6B73742B2A4F70C4B92A44F15 Ref B: TYO201100114045 Ref C: 2023-11-28T13:39:27Z" ], + "Date": [ "Tue, 28 Nov 2023 13:39:29 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "824" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/zfhkro\",\"name\":\"zfhkro\",\"location\":\"eastus\",\"tags\":{\"abc\":\"123\"},\"type\":\"Microsoft.ExtendedLocation/customLocations/resourceSyncRules\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-11-28T13:37:41.5204853Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-11-28T13:39:27.7539025Z\"},\"properties\":{\"priority\":998,\"provisioningState\":\"Patching\",\"targetResourceGroup\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6\",\"selector\":{\"matchLabels\":{\"Key1\":\"Value1\"},\"matchExpressions\":[{\"key\":\"key4\",\"operator\":\"In\",\"values\":[\"value4\"]}]}}}", + "isContentBase64": false + } + }, + "AzCustomLocationResourceSyncRule+[NoContext]+UpdateViaIdentityCustomLocationExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6?api-version=2021-08-31-preview+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6?api-version=2021-08-31-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "43" ], + "x-ms-client-request-id": [ "0443011e-6903-4c53-b132-8afc628adc23" ], + "CommandName": [ "Get-AzCustomLocation" ], + "FullCommandName": [ "Get-AzCustomLocation_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.10", "Az.CustomLocation/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], + "X-Ms-Request-Id": [ "6c13c770-6fb0-4002-8338-cce26f55de12" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "x-ms-correlation-request-id": [ "4044f498-960f-4265-8b87-cdfabe61e425" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133930Z:4044f498-960f-4265-8b87-cdfabe61e425" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: AD8578933A944C009D9F05B1F2475F3B Ref B: TYO201100114045 Ref C: 2023-11-28T13:39:29Z" ], + "Date": [ "Tue, 28 Nov 2023 13:39:30 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "994" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6\",\"name\":\"4hzlx6\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-11-28T13:31:40.7832301Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-11-28T13:31:40.7832301Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/connectedClusters/nd1qe0\",\"namespace\":\"azps1\",\"displayName\":\"4hzlx6\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/ConnectedClusters/nd1qe0/providers/Microsoft.KubernetesConfiguration/extensions/8964io\"],\"authentication\":{}}}", + "isContentBase64": false + } + }, + "AzCustomLocationResourceSyncRule+[NoContext]+UpdateViaIdentityCustomLocationExpanded+$PATCH+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/jy13zu?api-version=2021-08-31-preview+2": { + "Request": { + "Method": "PATCH", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/jy13zu?api-version=2021-08-31-preview", + "Content": "{\r\n \"properties\": {\r\n \"selector\": {\r\n \"matchExpressions\": [\r\n {\r\n \"key\": \"key4\",\r\n \"operator\": \"In\",\r\n \"values\": [ \"value4\" ]\r\n }\r\n ],\r\n \"matchLabels\": {\r\n \"Key1\": \"Value1\"\r\n }\r\n },\r\n \"priority\": 997,\r\n \"targetResourceGroup\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6\"\r\n },\r\n \"tags\": {\r\n \"abc\": \"123\"\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "436" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/d1b6aec1-d936-49a1-9e33-2cd6ec371992?api-version=2021-03-15-preview\u0026t=638367755726533163\u0026c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M\u0026s=HA9TKTWsWZWKHoRcgXqKQVNxDbHqxjGv82agasEwTOV0hXY34lRKM-l6Yaj43ZuMgaB2hxs21ZOY4wwP7DNOwXib8T2qLSckUX9UFSx8INNdrna9M7ySKgn0NcFRQrXnTgL24UkLhAF4gCvsmSrJQPHw7dBXoCLEMy1va7HdVFWwWJ2Jac003t2aW8Jx4h-02SUlvYV3u--RMimPnPQeuZgqPJ1Drz3ya1rljn3AvEYTC6DW5nwkwkzLhsyKzYjuJ1LzJmiUE-dVuIXoaXT_vixLLzW-ahQ8sJsJPfyi9lUlrGLmHUSmzzY0dkcRfjk8rpRa-pSm8mh58KgMVLqBFg\u0026h=e9hMA0Oo54gpG6GDOTbyfRON1oDj7lyf-IpkOVZ46lE" ], + "X-Ms-Async-Operation-Timeout": [ "PT90M" ], + "X-Ms-Request-Id": [ "d1b6aec1-d936-49a1-9e33-2cd6ec371992" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "x-ms-correlation-request-id": [ "7919f34e-0250-4da8-ac12-d72c6fad2cb0" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133932Z:7919f34e-0250-4da8-ac12-d72c6fad2cb0" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 38DA9BB7567F421A9DC4CE7AAFE6F416 Ref B: TYO201100114045 Ref C: 2023-11-28T13:39:30Z" ], + "Date": [ "Tue, 28 Nov 2023 13:39:32 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "823" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/jy13zu\",\"name\":\"jy13zu\",\"location\":\"eastus\",\"tags\":{\"abc\":\"123\"},\"type\":\"Microsoft.ExtendedLocation/customLocations/resourceSyncRules\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-11-28T13:38:15.481165Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-11-28T13:39:30.9814641Z\"},\"properties\":{\"priority\":997,\"provisioningState\":\"Patching\",\"targetResourceGroup\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6\",\"selector\":{\"matchLabels\":{\"Key1\":\"Value1\"},\"matchExpressions\":[{\"key\":\"key4\",\"operator\":\"In\",\"values\":[\"value4\"]}]}}}", + "isContentBase64": false + } + }, + "AzCustomLocationResourceSyncRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/djw6g1?api-version=2021-08-31-preview+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/djw6g1?api-version=2021-08-31-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "45" ], + "x-ms-client-request-id": [ "64293e7a-aa5d-47ee-9905-fcd324abe0c9" ], + "CommandName": [ "Get-AzCustomLocationResourceSyncRule" ], + "FullCommandName": [ "Get-AzCustomLocationResourceSyncRule_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.10", "Az.CustomLocation/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], + "X-Ms-Request-Id": [ "532c2ec5-33b6-4c0f-8b50-9d4f9d0091a9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "x-ms-correlation-request-id": [ "d6135ffd-a532-4d9d-b460-3c21762e9124" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133933Z:d6135ffd-a532-4d9d-b460-3c21762e9124" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: A47661A98CB94665BE3830DA0E0D70F6 Ref B: TYO201100114045 Ref C: 2023-11-28T13:39:32Z" ], + "Date": [ "Tue, 28 Nov 2023 13:39:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "804" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/djw6g1\",\"name\":\"djw6g1\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations/resourceSyncRules\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-11-28T13:38:50.3793399Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-11-28T13:38:50.3793399Z\"},\"properties\":{\"priority\":996,\"provisioningState\":\"Succeeded\",\"targetResourceGroup\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6\",\"selector\":{\"matchLabels\":{\"Key1\":\"Value1\"},\"matchExpressions\":[{\"key\":\"key4\",\"operator\":\"In\",\"values\":[\"value4\"]}]}}}", + "isContentBase64": false + } + }, + "AzCustomLocationResourceSyncRule+[NoContext]+UpdateViaIdentityExpanded+$PATCH+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/djw6g1?api-version=2021-08-31-preview+2": { + "Request": { + "Method": "PATCH", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/djw6g1?api-version=2021-08-31-preview", + "Content": "{\r\n \"properties\": {\r\n \"selector\": {\r\n \"matchExpressions\": [\r\n {\r\n \"key\": \"key4\",\r\n \"operator\": \"In\",\r\n \"values\": [ \"value4\" ]\r\n }\r\n ],\r\n \"matchLabels\": {\r\n \"Key1\": \"Value1\"\r\n }\r\n },\r\n \"priority\": 996,\r\n \"targetResourceGroup\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6\"\r\n },\r\n \"tags\": {\r\n \"abc\": \"123\"\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "436" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/microsoft.extendedlocation/locations/eastus/operationsstatus/ea8ee00e-9dbc-4650-9321-7a7a16a99408?api-version=2021-03-15-preview\u0026t=638367755759266112\u0026c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M\u0026s=4K678gpq0EJHfbUe2BTO1yCYFlhg3gunqNFKXY8k0D5hYMbyVMJuKvcssBln2hlDezbZY9ZTTWnDjFP3QS7Yygo0wfC-hRnN8HADHVn-JjRc1uouo4GOA0RtC-7CiHeTm2DXhiGi87trdp3EqAEvLIQwIOsHakrHwV4pUUnUka-8pvfwXf0zjuL0MBO9fYz6HfCLkrPRyWxNHq7eFBY4TWLqKOI90_QqT49BkxazZzUNLZVq9-igBwl9zb3YQsSMbk-Z-DP1F51DDadAQLtX7hZ28K0qKrnAT81lrBjvGsD8F-Ke6ywK2p0k-q7ScxmXXNW2L2XNyYRiGBPXKIwOAg\u0026h=mEFTUgXbCthaOWkvRZ-V_9F3iYk6sH_lPRbOvvMb9b0" ], + "X-Ms-Async-Operation-Timeout": [ "PT90M" ], + "X-Ms-Request-Id": [ "ea8ee00e-9dbc-4650-9321-7a7a16a99408" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "x-ms-correlation-request-id": [ "50abe548-6edc-4fb5-a96a-614cde3516fd" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133935Z:50abe548-6edc-4fb5-a96a-614cde3516fd" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: EB452F4FCAE24123BE9F4081CD028C9E Ref B: TYO201100114045 Ref C: 2023-11-28T13:39:33Z" ], + "Date": [ "Tue, 28 Nov 2023 13:39:35 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "824" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/djw6g1\",\"name\":\"djw6g1\",\"location\":\"eastus\",\"tags\":{\"abc\":\"123\"},\"type\":\"Microsoft.ExtendedLocation/customLocations/resourceSyncRules\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-11-28T13:38:50.3793399Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-11-28T13:39:34.2234779Z\"},\"properties\":{\"priority\":996,\"provisioningState\":\"Patching\",\"targetResourceGroup\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6\",\"selector\":{\"matchLabels\":{\"Key1\":\"Value1\"},\"matchExpressions\":[{\"key\":\"key4\",\"operator\":\"In\",\"values\":[\"value4\"]}]}}}", + "isContentBase64": false + } + }, + "AzCustomLocationResourceSyncRule+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/zfhkro?api-version=2021-08-31-preview+1": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/zfhkro?api-version=2021-08-31-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "47" ], + "x-ms-client-request-id": [ "9fd2ee34-060d-486e-91d8-8c1d2ff023dc" ], + "CommandName": [ "Remove-AzCustomLocationResourceSyncRule" ], + "FullCommandName": [ "Remove-AzCustomLocationResourceSyncRule_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.10", "Az.CustomLocation/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], + "X-Ms-Request-Id": [ "dd44b27f-a325-4573-b73b-d183544d9c30" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "x-ms-correlation-request-id": [ "2ea285ed-e8eb-4a45-8ef7-541e275cac6e" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133938Z:2ea285ed-e8eb-4a45-8ef7-541e275cac6e" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 46CD6785A0CF48CBB88EF1F7F4B0A8E4 Ref B: TYO201100114045 Ref C: 2023-11-28T13:39:36Z" ], + "Date": [ "Tue, 28 Nov 2023 13:39:38 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "AzCustomLocationResourceSyncRule+[NoContext]+DeleteViaIdentityCustomLocation+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6?api-version=2021-08-31-preview+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6?api-version=2021-08-31-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "48" ], + "x-ms-client-request-id": [ "a04cd09a-6e13-4f54-afbf-b46374a663d9" ], + "CommandName": [ "Get-AzCustomLocation" ], + "FullCommandName": [ "Get-AzCustomLocation_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.10", "Az.CustomLocation/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], + "X-Ms-Request-Id": [ "256220c7-26be-4fb8-bd4c-6fa05d9e4f67" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "x-ms-correlation-request-id": [ "43fedab2-d704-47be-a6a4-c8dce359ab88" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133938Z:43fedab2-d704-47be-a6a4-c8dce359ab88" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0AC95BDCDE8846EF94AFDC938409FEC3 Ref B: TYO201100114045 Ref C: 2023-11-28T13:39:38Z" ], + "Date": [ "Tue, 28 Nov 2023 13:39:38 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "994" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6\",\"name\":\"4hzlx6\",\"location\":\"eastus\",\"type\":\"Microsoft.ExtendedLocation/customLocations\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-11-28T13:31:40.7832301Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-11-28T13:31:40.7832301Z\"},\"properties\":{\"hostType\":\"Kubernetes\",\"hostResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/connectedClusters/nd1qe0\",\"namespace\":\"azps1\",\"displayName\":\"4hzlx6\",\"provisioningState\":\"Succeeded\",\"clusterExtensionIds\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/ConnectedClusters/nd1qe0/providers/Microsoft.KubernetesConfiguration/extensions/8964io\"],\"authentication\":{}}}", + "isContentBase64": false + } + }, + "AzCustomLocationResourceSyncRule+[NoContext]+DeleteViaIdentityCustomLocation+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/jy13zu?api-version=2021-08-31-preview+2": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/jy13zu?api-version=2021-08-31-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "49" ], + "x-ms-client-request-id": [ "9ba80695-ad73-490f-b66d-7dccabdad821" ], + "CommandName": [ "Remove-AzCustomLocationResourceSyncRule" ], + "FullCommandName": [ "Remove-AzCustomLocationResourceSyncRule_DeleteViaIdentityCustomlocation" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.10", "Az.CustomLocation/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], + "X-Ms-Request-Id": [ "77243cbc-a32a-4f41-89a8-97ee2d42e66f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "x-ms-correlation-request-id": [ "4974e22e-dcd7-43e7-a76f-462a06bbdd5e" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133940Z:4974e22e-dcd7-43e7-a76f-462a06bbdd5e" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: DC29527F479147E39C883451CB5D628A Ref B: TYO201100114045 Ref C: 2023-11-28T13:39:38Z" ], + "Date": [ "Tue, 28 Nov 2023 13:39:40 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "AzCustomLocationResourceSyncRule+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/djw6g1?api-version=2021-08-31-preview+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/djw6g1?api-version=2021-08-31-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "50" ], + "x-ms-client-request-id": [ "f08e2783-3b69-453b-b645-b14a9f52b96f" ], + "CommandName": [ "Get-AzCustomLocationResourceSyncRule" ], + "FullCommandName": [ "Get-AzCustomLocationResourceSyncRule_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.10", "Az.CustomLocation/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], + "X-Ms-Request-Id": [ "ffe48de7-405b-4b27-87f4-90939d3fc332" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "x-ms-correlation-request-id": [ "3c267193-3b56-4e1a-baeb-28015492d642" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133941Z:3c267193-3b56-4e1a-baeb-28015492d642" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: ED4FB78890704E09A2A39369520B5E19 Ref B: TYO201100114045 Ref C: 2023-11-28T13:39:40Z" ], + "Date": [ "Tue, 28 Nov 2023 13:39:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "825" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/djw6g1\",\"name\":\"djw6g1\",\"location\":\"eastus\",\"tags\":{\"abc\":\"123\"},\"type\":\"Microsoft.ExtendedLocation/customLocations/resourceSyncRules\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-11-28T13:38:50.3793399Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-11-28T13:39:34.2234779Z\"},\"properties\":{\"priority\":996,\"provisioningState\":\"Succeeded\",\"targetResourceGroup\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6\",\"selector\":{\"matchLabels\":{\"Key1\":\"Value1\"},\"matchExpressions\":[{\"key\":\"key4\",\"operator\":\"In\",\"values\":[\"value4\"]}]}}}", + "isContentBase64": false + } + }, + "AzCustomLocationResourceSyncRule+[NoContext]+DeleteViaIdentity+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/djw6g1?api-version=2021-08-31-preview+2": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup4hzlx6/providers/microsoft.extendedlocation/customlocations/4hzlx6/resourceSyncRules/djw6g1?api-version=2021-08-31-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "51" ], + "x-ms-client-request-id": [ "19523be0-b5b6-40ce-9fb6-f8a6c6912dcf" ], + "CommandName": [ "Remove-AzCustomLocationResourceSyncRule" ], + "FullCommandName": [ "Remove-AzCustomLocationResourceSyncRule_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.10", "Az.CustomLocation/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], + "X-Ms-Request-Id": [ "d624e7d7-0d1e-4ec4-9a02-7c3856ffa706" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "x-ms-correlation-request-id": [ "52eb3aef-749f-4330-bdee-d18aec65c846" ], + "x-ms-routing-request-id": [ "JAPANEAST:20231128T133943Z:52eb3aef-749f-4330-bdee-d18aec65c846" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 018BD91BAD9A4E5599DC7917E15A23D4 Ref B: TYO201100114045 Ref C: 2023-11-28T13:39:41Z" ], + "Date": [ "Tue, 28 Nov 2023 13:39:43 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null, + "isContentBase64": false + } + } +} \ No newline at end of file diff --git a/src/CustomLocation/CustomLocation.Autorest/test/AzCustomLocationResourceSyncRule.Tests.ps1 b/src/CustomLocation/CustomLocation.Autorest/test/AzCustomLocationResourceSyncRule.Tests.ps1 new file mode 100644 index 000000000000..d932ff344a07 --- /dev/null +++ b/src/CustomLocation/CustomLocation.Autorest/test/AzCustomLocationResourceSyncRule.Tests.ps1 @@ -0,0 +1,112 @@ +if(($null -eq $TestName) -or ($TestName -contains 'AzCustomLocationResourceSyncRule')) +{ + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'AzCustomLocationResourceSyncRule.Recording.json' + $currentPath = $PSScriptRoot + while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName +} + +Describe 'AzCustomLocationResourceSyncRule' { + It 'CreateExpanded' { + { + $MatchExpressions = New-AzCustomLocationMatchExpressionsObject -Key "key4" -Operator "In" -Value "value4" + $config = New-AzCustomLocationResourceSyncRule -Name $env.resourceSyncRuleName1 -ResourceGroupName $env.resourceGroup -CustomLocationName $env.clusterLocationName -Location $env.location -Priority 998 -SelectorMatchExpression $MatchExpressions -SelectorMatchLabel @{"Key1"="Value1"} -TargetResourceGroup "/subscriptions/$($env.SubscriptionId)/resourceGroups/$($env.resourceGroup)" + $config.Name | Should -Be $env.resourceSyncRuleName1 + + $config = New-AzCustomLocationResourceSyncRule -Name $env.resourceSyncRuleName2 -ResourceGroupName $env.resourceGroup -CustomLocationName $env.clusterLocationName -Location $env.location -Priority 997 -SelectorMatchExpression $MatchExpressions -SelectorMatchLabel @{"Key1"="Value1"} -TargetResourceGroup "/subscriptions/$($env.SubscriptionId)/resourceGroups/$($env.resourceGroup)" + $config.Name | Should -Be $env.resourceSyncRuleName2 + } | Should -Not -Throw + } + + It 'CreateViaIdentityCustomLocationExpanded' { + { + $MatchExpressions = New-AzCustomLocationMatchExpressionsObject -Key "key4" -Operator "In" -Value "value4" + $obj = Get-AzCustomLocation -ResourceGroupName $env.resourceGroup -Name $env.clusterLocationName + $config = New-AzCustomLocationResourceSyncRule -CustomlocationInputObject $obj -Name $env.resourceSyncRuleName3 -Location $env.location -Priority 996 -SelectorMatchExpression $MatchExpressions -SelectorMatchLabel @{"Key1"="Value1"} -TargetResourceGroup "/subscriptions/$($env.SubscriptionId)/resourceGroups/$($env.resourceGroup)" + $config.Name | Should -Be $env.resourceSyncRuleName3 + } | Should -Not -Throw + } + + It 'List' { + { + $config = Get-AzCustomLocationResourceSyncRule -ResourceGroupName $env.resourceGroup -CustomLocationName $env.clusterLocationName + $config.Count | Should -BeGreaterThan 0 + } | Should -Not -Throw + } + + It 'Get' { + { + $config = Get-AzCustomLocationResourceSyncRule -ResourceGroupName $env.resourceGroup -CustomLocationName $env.clusterLocationName -Name $env.resourceSyncRuleName2 + $config.Name | Should -Be $env.resourceSyncRuleName2 + } | Should -Not -Throw + } + + It 'FindExpanded' { + { + $config = Find-AzCustomLocationTargetResourceGroup -ResourceGroupName $env.resourceGroup -CustomLocationName $env.clusterLocationName -Label @{"Key1"="Value1"} -PassThru + $config | Should -Be True + } | Should -Not -Throw + } + + It 'FindViaIdentityExpanded' { + { + $obj = Get-AzCustomLocation -ResourceGroupName $env.resourceGroup -Name $env.clusterLocationName + $config = Find-AzCustomLocationTargetResourceGroup -InputObject $obj -Label @{"Key1"="Value1"} -PassThru + $config | Should -Be True + } | Should -Not -Throw + } + + It 'UpdateExpanded' { + { + $MatchExpressions = New-AzCustomLocationMatchExpressionsObject -Key "key4" -Operator "In" -Value "value4" + $config = Update-AzCustomLocationResourceSyncRule -Name $env.resourceSyncRuleName1 -ResourceGroupName $env.resourceGroup -CustomLocationName $env.clusterLocationName -Priority 998 -SelectorMatchExpression $MatchExpressions -SelectorMatchLabel @{"Key1"="Value1"} -TargetResourceGroup "/subscriptions/$($env.SubscriptionId)/resourceGroups/$($env.resourceGroup)" -Tag @{"abc"="123"} + $config.Name | Should -Be $env.resourceSyncRuleName1 + } | Should -Not -Throw + } + + It 'UpdateViaIdentityCustomLocationExpanded' { + { + $MatchExpressions = New-AzCustomLocationMatchExpressionsObject -Key "key4" -Operator "In" -Value "value4" + $obj = Get-AzCustomLocation -ResourceGroupName $env.resourceGroup -Name $env.clusterLocationName + $config = Update-AzCustomLocationResourceSyncRule -CustomlocationInputObject $obj -Name $env.resourceSyncRuleName2 -Priority 997 -SelectorMatchExpression $MatchExpressions -SelectorMatchLabel @{"Key1"="Value1"} -TargetResourceGroup "/subscriptions/$($env.SubscriptionId)/resourceGroups/$($env.resourceGroup)" -Tag @{"abc"="123"} + $config.Name | Should -Be $env.resourceSyncRuleName2 + } | Should -Not -Throw + } + + It 'UpdateViaIdentityExpanded' { + { + $MatchExpressions = New-AzCustomLocationMatchExpressionsObject -Key "key4" -Operator "In" -Value "value4" + $obj = Get-AzCustomLocationResourceSyncRule -ResourceGroupName $env.resourceGroup -CustomLocationName $env.clusterLocationName -Name $env.resourceSyncRuleName3 + $config = Update-AzCustomLocationResourceSyncRule -InputObject $obj -Priority 996 -SelectorMatchExpression $MatchExpressions -SelectorMatchLabel @{"Key1"="Value1"} -TargetResourceGroup "/subscriptions/$($env.SubscriptionId)/resourceGroups/$($env.resourceGroup)" -Tag @{"abc"="123"} + $config.Name | Should -Be $env.resourceSyncRuleName3 + } | Should -Not -Throw + } + + It 'Delete' { + { + Remove-AzCustomLocationResourceSyncRule -CustomLocationName $env.clusterLocationName -Name $env.resourceSyncRuleName1 -ResourceGroupName $env.resourceGroup + } | Should -Not -Throw + } + + It 'DeleteViaIdentityCustomLocation' { + { + $obj = Get-AzCustomLocation -ResourceGroupName $env.resourceGroup -Name $env.clusterLocationName + Remove-AzCustomLocationResourceSyncRule -CustomlocationInputObject $obj -Name $env.resourceSyncRuleName2 + } | Should -Not -Throw + } + + It 'DeleteViaIdentity' { + { + $obj = Get-AzCustomLocationResourceSyncRule -ResourceGroupName $env.resourceGroup -CustomLocationName $env.clusterLocationName -Name $env.resourceSyncRuleName3 + Remove-AzCustomLocationResourceSyncRule -InputObject $obj + } | Should -Not -Throw + } +} diff --git a/src/CustomLocation/CustomLocation.Autorest/test/Find-AzCustomLocationTargetResourceGroup.Tests.ps1 b/src/CustomLocation/CustomLocation.Autorest/test/Find-AzCustomLocationTargetResourceGroup.Tests.ps1 new file mode 100644 index 000000000000..cdc84a1a0a70 --- /dev/null +++ b/src/CustomLocation/CustomLocation.Autorest/test/Find-AzCustomLocationTargetResourceGroup.Tests.ps1 @@ -0,0 +1,33 @@ +if(($null -eq $TestName) -or ($TestName -contains 'Find-AzCustomLocationTargetResourceGroup')) +{ + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'Find-AzCustomLocationTargetResourceGroup.Recording.json' + $currentPath = $PSScriptRoot + while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName +} + +Describe 'Find-AzCustomLocationTargetResourceGroup' { + It 'FindExpanded' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'FindViaJsonString' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'FindViaJsonFilePath' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'FindViaIdentityExpanded' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} diff --git a/src/CustomLocation/CustomLocation.Autorest/test/Get-AzCustomLocationResourceSyncRule.Tests.ps1 b/src/CustomLocation/CustomLocation.Autorest/test/Get-AzCustomLocationResourceSyncRule.Tests.ps1 new file mode 100644 index 000000000000..2bfb1635626b --- /dev/null +++ b/src/CustomLocation/CustomLocation.Autorest/test/Get-AzCustomLocationResourceSyncRule.Tests.ps1 @@ -0,0 +1,33 @@ +if(($null -eq $TestName) -or ($TestName -contains 'Get-AzCustomLocationResourceSyncRule')) +{ + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzCustomLocationResourceSyncRule.Recording.json' + $currentPath = $PSScriptRoot + while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName +} + +Describe 'Get-AzCustomLocationResourceSyncRule' { + It 'List' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'Get' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'GetViaIdentityCustomlocation' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'GetViaIdentity' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} diff --git a/src/CustomLocation/CustomLocation.Autorest/test/New-AzCustomLocation.Tests.ps1 b/src/CustomLocation/CustomLocation.Autorest/test/New-AzCustomLocation.Tests.ps1 index feab5b0e2370..4a9fd9e511bd 100644 --- a/src/CustomLocation/CustomLocation.Autorest/test/New-AzCustomLocation.Tests.ps1 +++ b/src/CustomLocation/CustomLocation.Autorest/test/New-AzCustomLocation.Tests.ps1 @@ -18,4 +18,16 @@ Describe 'New-AzCustomLocation' { It 'CreateExpanded' -skip { { throw [System.NotImplementedException] } | Should -Not -Throw } + + It 'CreateViaJsonFilePath' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'CreateViaJsonString' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'CreateViaIdentityExpanded' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } } diff --git a/src/CustomLocation/CustomLocation.Autorest/test/New-AzCustomLocationMatchExpressionsObject.Tests.ps1 b/src/CustomLocation/CustomLocation.Autorest/test/New-AzCustomLocationMatchExpressionsObject.Tests.ps1 new file mode 100644 index 000000000000..e307061a82ef --- /dev/null +++ b/src/CustomLocation/CustomLocation.Autorest/test/New-AzCustomLocationMatchExpressionsObject.Tests.ps1 @@ -0,0 +1,21 @@ +if(($null -eq $TestName) -or ($TestName -contains 'New-AzCustomLocationMatchExpressionsObject')) +{ + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'New-AzCustomLocationMatchExpressionsObject.Recording.json' + $currentPath = $PSScriptRoot + while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName +} + +Describe 'New-AzCustomLocationMatchExpressionsObject' { + It '__AllParameterSets' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} diff --git a/src/CustomLocation/CustomLocation.Autorest/test/New-AzCustomLocationResourceSyncRule.Tests.ps1 b/src/CustomLocation/CustomLocation.Autorest/test/New-AzCustomLocationResourceSyncRule.Tests.ps1 new file mode 100644 index 000000000000..5dff0e74c02b --- /dev/null +++ b/src/CustomLocation/CustomLocation.Autorest/test/New-AzCustomLocationResourceSyncRule.Tests.ps1 @@ -0,0 +1,37 @@ +if(($null -eq $TestName) -or ($TestName -contains 'New-AzCustomLocationResourceSyncRule')) +{ + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'New-AzCustomLocationResourceSyncRule.Recording.json' + $currentPath = $PSScriptRoot + while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName +} + +Describe 'New-AzCustomLocationResourceSyncRule' { + It 'CreateExpanded' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'CreateViaJsonString' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'CreateViaJsonFilePath' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'CreateViaIdentityCustomlocationExpanded' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'CreateViaIdentityExpanded' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} diff --git a/src/CustomLocation/CustomLocation.Autorest/test/Remove-AzCustomLocationResourceSyncRule.Tests.ps1 b/src/CustomLocation/CustomLocation.Autorest/test/Remove-AzCustomLocationResourceSyncRule.Tests.ps1 new file mode 100644 index 000000000000..d8e67a63439b --- /dev/null +++ b/src/CustomLocation/CustomLocation.Autorest/test/Remove-AzCustomLocationResourceSyncRule.Tests.ps1 @@ -0,0 +1,29 @@ +if(($null -eq $TestName) -or ($TestName -contains 'Remove-AzCustomLocationResourceSyncRule')) +{ + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'Remove-AzCustomLocationResourceSyncRule.Recording.json' + $currentPath = $PSScriptRoot + while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName +} + +Describe 'Remove-AzCustomLocationResourceSyncRule' { + It 'Delete' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'DeleteViaIdentityCustomlocation' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'DeleteViaIdentity' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} diff --git a/src/CustomLocation/CustomLocation.Autorest/test/Update-AzCustomLocation.Tests.ps1 b/src/CustomLocation/CustomLocation.Autorest/test/Update-AzCustomLocation.Tests.ps1 index 7717b419c4d9..dcf1b0d185f1 100644 --- a/src/CustomLocation/CustomLocation.Autorest/test/Update-AzCustomLocation.Tests.ps1 +++ b/src/CustomLocation/CustomLocation.Autorest/test/Update-AzCustomLocation.Tests.ps1 @@ -19,6 +19,14 @@ Describe 'Update-AzCustomLocation' { { throw [System.NotImplementedException] } | Should -Not -Throw } + It 'UpdateViaJsonFilePath' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'UpdateViaJsonString' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + It 'UpdateViaIdentityExpanded' -skip { { throw [System.NotImplementedException] } | Should -Not -Throw } diff --git a/src/CustomLocation/CustomLocation.Autorest/test/Update-AzCustomLocationResourceSyncRule.Tests.ps1 b/src/CustomLocation/CustomLocation.Autorest/test/Update-AzCustomLocationResourceSyncRule.Tests.ps1 new file mode 100644 index 000000000000..e1c8f3f23792 --- /dev/null +++ b/src/CustomLocation/CustomLocation.Autorest/test/Update-AzCustomLocationResourceSyncRule.Tests.ps1 @@ -0,0 +1,37 @@ +if(($null -eq $TestName) -or ($TestName -contains 'Update-AzCustomLocationResourceSyncRule')) +{ + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'Update-AzCustomLocationResourceSyncRule.Recording.json' + $currentPath = $PSScriptRoot + while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName +} + +Describe 'Update-AzCustomLocationResourceSyncRule' { + It 'UpdateExpanded' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'UpdateViaJsonString' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'UpdateViaJsonFilePath' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'UpdateViaIdentityCustomlocationExpanded' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'UpdateViaIdentityExpanded' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} diff --git a/src/CustomLocation/CustomLocation.Autorest/test/env.json b/src/CustomLocation/CustomLocation.Autorest/test/env.json index 7a749e7dd132..a72b7ee5af7d 100644 --- a/src/CustomLocation/CustomLocation.Autorest/test/env.json +++ b/src/CustomLocation/CustomLocation.Autorest/test/env.json @@ -1,13 +1,17 @@ { - "location": "eastus", - "clusterLocationName": "hbj7fz", - "HostResourceId": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgrouphbj7fz/providers/Microsoft.Kubernetes/connectedClusters/1o0vu3", - "ClusterExtensionId": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgrouphbj7fz/providers/Microsoft.Kubernetes/connectedClusters/1o0vu3/providers/Microsoft.KubernetesConfiguration/extensions/30auvc", - "clusterLocationName2": "eyfqx6", - "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "extensionName": "30auvc", - "clusterName": "1o0vu3", - "k8sName": "ojfrvw", + "ClusterExtensionId": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/ConnectedClusters/nd1qe0/providers/Microsoft.KubernetesConfiguration/extensions/8964io", + "resourceSyncRuleName3": "djw6g1", + "clusterName": "nd1qe0", + "HostResourceId": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup4hzlx6/providers/Microsoft.Kubernetes/connectedClusters/nd1qe0", + "extensionName": "8964io", "SubscriptionId": "9e223dbe-3399-4e19-88eb-0975f02ac87f", - "resourceGroup": "testgrouphbj7fz" + "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "resourceSyncRuleName2": "jy13zu", + "resourceSyncRuleName1": "zfhkro", + "location": "eastus", + "resourceGroup": "testgroup4hzlx6", + "clusterLocationName1": "0ovjr8", + "clusterLocationName": "4hzlx6", + "k8sName": "lnzpqg", + "clusterLocationName2": "bv0to3" } diff --git a/src/CustomLocation/CustomLocation.Autorest/test/utils.ps1 b/src/CustomLocation/CustomLocation.Autorest/test/utils.ps1 index dc3adaa5cac2..8e427e1cc9e5 100644 --- a/src/CustomLocation/CustomLocation.Autorest/test/utils.ps1 +++ b/src/CustomLocation/CustomLocation.Autorest/test/utils.ps1 @@ -23,13 +23,21 @@ function setupEnv() { $clusterName = RandomString -allChars $false -len 6 $extensionName = RandomString -allChars $false -len 6 $clusterLocationName = RandomString -allChars $false -len 6 + $clusterLocationName1 = RandomString -allChars $false -len 6 $clusterLocationName2 = RandomString -allChars $false -len 6 - + $resourceSyncRuleName1 = RandomString -allChars $false -len 6 + $resourceSyncRuleName2 = RandomString -allChars $false -len 6 + $resourceSyncRuleName3 = RandomString -allChars $false -len 6 + $env.Add("k8sName", $k8sName) $env.Add("clusterName", $clusterName) $env.Add("extensionName", $extensionName) $env.Add("clusterLocationName", $clusterLocationName) + $env.Add("clusterLocationName1", $clusterLocationName1) $env.Add("clusterLocationName2", $clusterLocationName2) + $env.Add("resourceSyncRuleName1", $resourceSyncRuleName1) + $env.Add("resourceSyncRuleName2", $resourceSyncRuleName2) + $env.Add("resourceSyncRuleName3", $resourceSyncRuleName3) $env.Add("location", "eastus") @@ -41,26 +49,26 @@ function setupEnv() { New-AzResourceGroup -Name $env.resourceGroup -Location $env.location write-host "1. az aks create..." - az aks create --name $env.k8sName --resource-group $env.resourceGroup --kubernetes-version 1.20.9 --vm-set-type AvailabilitySet + az aks create --name $env.k8sName --resource-group $env.resourceGroup --kubernetes-version 1.26.6 --vm-set-type AvailabilitySet write-host "1. az aks get-credentials..." az aks get-credentials --resource-group $env.resourceGroup --name $env.k8sName write-host "1. az connectedk8s connect..." az connectedk8s connect --name $env.clusterName --resource-group $env.resourceGroup --location $env.location + # New-AzConnectedKubernetes -Name $env.clusterName -ResourceGroupName $env.resourceGroup -Location $env.location write-host "1. az k8s-extension create..." az k8s-extension create -c $env.clusterName -g $env.resourceGroup --name $env.extensionName --cluster-type connectedClusters --extension-type microsoft.arcdataservices --auto-upgrade false --scope cluster --release-namespace arc --config Microsoft.CustomLocation.ServiceAccount=sa-bootstrapper - - az k8s-extension show -g $env.resourceGroup -c $env.clusterName --name $env.extensionName --cluster-type connectedclusters - - $HostResourceId = az connectedk8s show -n $env.clusterName -g $env.resourceGroup --query id -o tsv - - $ClusterExtensionId = az k8s-extension show --name $env.extensionName --cluster-type connectedClusters -c $env.clusterName -g $env.resourceGroup --query id -o tsv - + # New-AzKubernetesExtension -ClusterName $env.clusterName -ClusterType ConnectedClusters -Name $env.extensionName -ResourceGroupName $env.resourceGroup -ExtensionType microsoft.arcdataservices -AutoUpgradeMinorVersion:$false -ReleaseNamespace arc -IdentityType 'SystemAssigned' + + $HostResourceId = (Get-AzConnectedKubernetes -ClusterName $env.clusterName -ResourceGroupName $env.resourceGroup).Id + $ClusterExtensionId = (Get-AzKubernetesExtension -ClusterName $env.clusterName -ClusterType ConnectedClusters -ResourceGroupName $env.resourceGroup -Name $env.extensionName).Id + $env.Add("HostResourceId", $HostResourceId) $env.Add("ClusterExtensionId", $ClusterExtensionId) - + + New-AzCustomLocation -ResourceGroupName $env.resourceGroup -Name $env.clusterLocationName -Location $env.location -ClusterExtensionId $env.ClusterExtensionId -HostResourceId $env.HostResourceId -DisplayName $env.clusterLocationName -Namespace azps1 # Wait for extension creation to complete Start-Sleep –s 180 From bd4d1f6e872756183068fabb5bac035ed7429592 Mon Sep 17 00:00:00 2001 From: Jinpei Li Date: Tue, 28 Nov 2023 22:15:51 +0800 Subject: [PATCH 2/5] update ExampleIssues.csv --- .../Exceptions/Az.CustomLocation/ExampleIssues.csv | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 tools/StaticAnalysis/Exceptions/Az.CustomLocation/ExampleIssues.csv diff --git a/tools/StaticAnalysis/Exceptions/Az.CustomLocation/ExampleIssues.csv b/tools/StaticAnalysis/Exceptions/Az.CustomLocation/ExampleIssues.csv new file mode 100644 index 000000000000..2907a47511bb --- /dev/null +++ b/tools/StaticAnalysis/Exceptions/Az.CustomLocation/ExampleIssues.csv @@ -0,0 +1,12 @@ +"Module","Cmdlet","Example","Line","RuleName","ProblemId","Severity","Description","Extent","Remediation" +"Az.CustomLocation","New-AzCustomLocation","1","1","Invalid_Cmdlet","5000","1","Get-AzConnectedKubernetes is not a valid command name.","Get-AzConnectedKubernetes -ClusterName azps-connect -ResourceGroupName azps_test_cluster","Check the spell of Get-AzConnectedKubernetes." +"Az.CustomLocation","New-AzCustomLocation","1","2","Invalid_Cmdlet","5000","1","Get-AzKubernetesExtension is not a valid command name.","Get-AzKubernetesExtension -ClusterName azps-connect -ClusterType ConnectedClusters -ResourceGroupName azps_test_cluster -Name azps-extension","Check the spell of Get-AzKubernetesExtension." +"Az.CustomLocation","Update-AzCustomLocation","1","1","Invalid_Cmdlet","5000","1","Get-AzConnectedKubernetes is not a valid command name.","Get-AzConnectedKubernetes -ClusterName azps-connect -ResourceGroupName azps_test_cluster","Check the spell of Get-AzConnectedKubernetes." +"Az.CustomLocation","Update-AzCustomLocation","1","2","Invalid_Cmdlet","5000","1","Get-AzKubernetesExtension is not a valid command name.","Get-AzKubernetesExtension -ClusterName azps-connect -ClusterType ConnectedClusters -ResourceGroupName azps_test_cluster -Name azps-extension","Check the spell of Get-AzKubernetesExtension." +"Az.CustomLocation","Find-AzCustomLocationTargetResourceGroup","2","2","Mismatched_Parameter_Value_Type","5111","2","Find-AzCustomLocationTargetResourceGroup -InputObject $obj is not an expected parameter value type.","-InputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocationIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocation.(Command)." +"Az.CustomLocation","Remove-AzCustomLocation","2","2","Mismatched_Parameter_Value_Type","5111","2","Remove-AzCustomLocation -InputObject $obj is not an expected parameter value type.","-InputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocationIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocation.(Command)." +"Az.CustomLocation","Remove-AzCustomLocationResourceSyncRule","2","2","Mismatched_Parameter_Value_Type","5111","2","Remove-AzCustomLocationResourceSyncRule -InputObject $obj is not an expected parameter value type.","-InputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocationIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.IResourceSyncRule.(Command)." +"Az.CustomLocation","Remove-AzCustomLocationResourceSyncRule","3","2","Mismatched_Parameter_Value_Type","5111","2","Remove-AzCustomLocationResourceSyncRule -CustomlocationInputObject $obj is not an expected parameter value type.","-CustomlocationInputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocationIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocation.(Command)." +"Az.CustomLocation","Update-AzCustomLocation","2","2","Mismatched_Parameter_Value_Type","5111","2","Update-AzCustomLocation -InputObject $obj is not an expected parameter value type.","-InputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocationIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocation.(Command)." +"Az.CustomLocation","Update-AzCustomLocationResourceSyncRule","2","3","Mismatched_Parameter_Value_Type","5111","2","Update-AzCustomLocationResourceSyncRule -InputObject $obj is not an expected parameter value type.","-InputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocationIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.IResourceSyncRule.(Command)." +"Az.CustomLocation","Update-AzCustomLocationResourceSyncRule","3","3","Mismatched_Parameter_Value_Type","5111","2","Update-AzCustomLocationResourceSyncRule -CustomlocationInputObject $obj is not an expected parameter value type.","-CustomlocationInputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocationIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocation.(Command)." \ No newline at end of file From 8fbaa022abd9999fbd1b2c709c5dfebe38e639ea Mon Sep 17 00:00:00 2001 From: Jinpei Li Date: Wed, 29 Nov 2023 10:07:17 +0800 Subject: [PATCH 3/5] Change the parameter to required --- .../custom/New-AzCustomLocation.ps1 | 12 +++++------ .../docs/New-AzCustomLocation.md | 21 ++++++++++--------- 2 files changed, 17 insertions(+), 16 deletions(-) diff --git a/src/CustomLocation/CustomLocation.Autorest/custom/New-AzCustomLocation.ps1 b/src/CustomLocation/CustomLocation.Autorest/custom/New-AzCustomLocation.ps1 index d702a5532dbd..4280d70443fc 100644 --- a/src/CustomLocation/CustomLocation.Autorest/custom/New-AzCustomLocation.ps1 +++ b/src/CustomLocation/CustomLocation.Autorest/custom/New-AzCustomLocation.ps1 @@ -98,8 +98,8 @@ function New-AzCustomLocation { # The kubeconfig value. ${AuthenticationValue}, - [Parameter(ParameterSetName='CreateExpanded')] - [Parameter(ParameterSetName='CreateViaIdentityExpanded')] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] + [Parameter(ParameterSetName='CreateViaIdentityExpanded', Mandatory)] [AllowEmptyCollection()] [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Category('Body')] [System.String[]] @@ -113,8 +113,8 @@ function New-AzCustomLocation { # Display name for the Custom Locations location. ${DisplayName}, - [Parameter(ParameterSetName='CreateExpanded')] - [Parameter(ParameterSetName='CreateViaIdentityExpanded')] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] + [Parameter(ParameterSetName='CreateViaIdentityExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Category('Body')] [System.String] # Connected Cluster or AKS Cluster. @@ -129,8 +129,8 @@ function New-AzCustomLocation { # The identity type. ${IdentityType}, - [Parameter(ParameterSetName='CreateExpanded')] - [Parameter(ParameterSetName='CreateViaIdentityExpanded')] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] + [Parameter(ParameterSetName='CreateViaIdentityExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Category('Body')] [System.String] # Kubernetes namespace that will be created on the specified cluster. diff --git a/src/CustomLocation/CustomLocation.Autorest/docs/New-AzCustomLocation.md b/src/CustomLocation/CustomLocation.Autorest/docs/New-AzCustomLocation.md index 465da80471b2..5be75ceced69 100644 --- a/src/CustomLocation/CustomLocation.Autorest/docs/New-AzCustomLocation.md +++ b/src/CustomLocation/CustomLocation.Autorest/docs/New-AzCustomLocation.md @@ -14,17 +14,18 @@ Create a Custom Location in the specified Subscription and Resource Group ### CreateExpanded (Default) ``` -New-AzCustomLocation -Name -ResourceGroupName -Location [-SubscriptionId ] - [-AuthenticationType ] [-AuthenticationValue ] [-ClusterExtensionId ] - [-DisplayName ] [-HostResourceId ] [-IdentityType ] [-Namespace ] - [-Tag ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +New-AzCustomLocation -Name -ResourceGroupName -ClusterExtensionId + -HostResourceId -Location -Namespace [-SubscriptionId ] + [-AuthenticationType ] [-AuthenticationValue ] [-DisplayName ] + [-IdentityType ] [-Tag ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] + [-WhatIf] [] ``` ### CreateViaIdentityExpanded ``` -New-AzCustomLocation -InputObject -Location [-AuthenticationType ] - [-AuthenticationValue ] [-ClusterExtensionId ] [-DisplayName ] - [-HostResourceId ] [-IdentityType ] [-Namespace ] [-Tag ] +New-AzCustomLocation -InputObject -ClusterExtensionId + -HostResourceId -Location -Namespace [-AuthenticationType ] + [-AuthenticationValue ] [-DisplayName ] [-IdentityType ] [-Tag ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] ``` @@ -117,7 +118,7 @@ Type: System.String[] Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: -Required: False +Required: True Position: Named Default value: None Accept pipeline input: False @@ -164,7 +165,7 @@ Type: System.String Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: -Required: False +Required: True Position: Named Default value: None Accept pipeline input: False @@ -270,7 +271,7 @@ Type: System.String Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: -Required: False +Required: True Position: Named Default value: None Accept pipeline input: False From 366f27e9599de3811c16b63ea946e6da14ec2287 Mon Sep 17 00:00:00 2001 From: Jinpei Li Date: Fri, 8 Dec 2023 13:02:30 +0800 Subject: [PATCH 4/5] Remove syntax CreateViaIdentityExpanded in New-AzCustomLocation --- .../CustomLocation.Autorest/README.md | 4 ++ .../custom/New-AzCustomLocation.ps1 | 28 ++--------- .../docs/New-AzCustomLocation.md | 48 +++++-------------- 3 files changed, 19 insertions(+), 61 deletions(-) diff --git a/src/CustomLocation/CustomLocation.Autorest/README.md b/src/CustomLocation/CustomLocation.Autorest/README.md index 59f843fda2cc..11387f36ca16 100644 --- a/src/CustomLocation/CustomLocation.Autorest/README.md +++ b/src/CustomLocation/CustomLocation.Autorest/README.md @@ -98,6 +98,10 @@ directive: - where: variant: ^(Create|Update).*(? -ResourceGroupName -ClusterExtensio [-WhatIf] [] ``` -### CreateViaIdentityExpanded -``` -New-AzCustomLocation -InputObject -ClusterExtensionId - -HostResourceId -Location -Namespace [-AuthenticationType ] - [-AuthenticationValue ] [-DisplayName ] [-IdentityType ] [-Tag ] - [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] -``` - ### CreateViaJsonFilePath ``` New-AzCustomLocation -Name -ResourceGroupName -JsonFilePath @@ -85,7 +77,7 @@ The type of the Custom Locations authentication ```yaml Type: System.String -Parameter Sets: CreateExpanded, CreateViaIdentityExpanded +Parameter Sets: CreateExpanded Aliases: Required: False @@ -100,7 +92,7 @@ The kubeconfig value. ```yaml Type: System.String -Parameter Sets: CreateExpanded, CreateViaIdentityExpanded +Parameter Sets: CreateExpanded Aliases: Required: False @@ -115,7 +107,7 @@ Contains the reference to the add-on that contains charts to deploy CRDs and ope ```yaml Type: System.String[] -Parameter Sets: CreateExpanded, CreateViaIdentityExpanded +Parameter Sets: CreateExpanded Aliases: Required: True @@ -146,7 +138,7 @@ Display name for the Custom Locations location. ```yaml Type: System.String -Parameter Sets: CreateExpanded, CreateViaIdentityExpanded +Parameter Sets: CreateExpanded Aliases: Required: False @@ -162,7 +154,7 @@ The Custom Locations RP will perform a checkAccess API for listAdminCredentials ```yaml Type: System.String -Parameter Sets: CreateExpanded, CreateViaIdentityExpanded +Parameter Sets: CreateExpanded Aliases: Required: True @@ -177,7 +169,7 @@ The identity type. ```yaml Type: System.String -Parameter Sets: CreateExpanded, CreateViaIdentityExpanded +Parameter Sets: CreateExpanded Aliases: Required: False @@ -187,22 +179,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -InputObject -Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - -```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.CustomLocation.Models.ICustomLocationIdentity -Parameter Sets: CreateViaIdentityExpanded -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: True (ByValue) -Accept wildcard characters: False -``` - ### -JsonFilePath Path of Json file supplied to the Create operation @@ -238,7 +214,7 @@ The geo-location where the resource lives ```yaml Type: System.String -Parameter Sets: CreateExpanded, CreateViaIdentityExpanded +Parameter Sets: CreateExpanded Aliases: Required: True @@ -253,7 +229,7 @@ Custom Locations name. ```yaml Type: System.String -Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString +Parameter Sets: (All) Aliases: Required: True @@ -268,7 +244,7 @@ Kubernetes namespace that will be created on the specified cluster. ```yaml Type: System.String -Parameter Sets: CreateExpanded, CreateViaIdentityExpanded +Parameter Sets: CreateExpanded Aliases: Required: True @@ -299,7 +275,7 @@ The name is case insensitive. ```yaml Type: System.String -Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString +Parameter Sets: (All) Aliases: Required: True @@ -314,7 +290,7 @@ The ID of the target subscription. ```yaml Type: System.String -Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString +Parameter Sets: (All) Aliases: Required: False @@ -329,7 +305,7 @@ Resource tags. ```yaml Type: System.Collections.Hashtable -Parameter Sets: CreateExpanded, CreateViaIdentityExpanded +Parameter Sets: CreateExpanded Aliases: Required: False From 0187fe0093cc24a8a993137ebd74d7b860e458db Mon Sep 17 00:00:00 2001 From: Jinpei Li Date: Fri, 8 Dec 2023 15:56:18 +0800 Subject: [PATCH 5/5] update --- src/CustomLocation/CustomLocation.Autorest/README.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/CustomLocation/CustomLocation.Autorest/README.md b/src/CustomLocation/CustomLocation.Autorest/README.md index 11387f36ca16..9134009ca15d 100644 --- a/src/CustomLocation/CustomLocation.Autorest/README.md +++ b/src/CustomLocation/CustomLocation.Autorest/README.md @@ -41,12 +41,6 @@ title: CustomLocation subject-prefix: $(service-name) identity-correction-for-post: true -resourcegroup-append: true -nested-object-to-string: true -auto-switch-view: false - -use-extension: - "@autorest/powershell": "4.x" directive: - from: swagger-document